Files

56 lines
1.4 KiB
Plaintext
Raw Permalink Normal View History

2015-02-05 16:12:15 +01:00
NAME
Data::Interactive::Inspect - Inspect and manipulate perl data structures interactively
SYNOPSIS
use Data::Interactive::Inspect;
my $data = foo(); # get a hash ref from somewhere
# new shell object, the simple way
my $shell = Data::Interactive::Inspect->new($data);
# or
my $shell = Data::Interactive::Inspect->new(
struct => $data,
name => 'verkehrswege',
begin => sub { .. },
commit => sub { .. },
rollback => sub { .. },
editor => 'emacs',
more => 'less'
);
$data = $shell->inspect(); # opens a shell and returns modified hash ref on quit
DESCRIPTION
This module provides an interactive shell which can be used to inspect
and modify a perl data structure.
INSTALLATION
to install, type:
perl Makefile.PL
make
make test
make install
to read the complete documentation, type:
perldoc Data::Interactive::Inspect
AUTHOR
T.v.Dein <tlinden@cpan.org>
BUGS
Report bugs to
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Data::Interactive::Inspect
COPYRIGHT
2017-04-04 23:26:57 +02:00
Copyright (c) 2015-2017 by T.v.Dein <tlinden@cpan.org>. All rights
2015-02-05 16:12:15 +01:00
reserved.
LICENSE
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
VERSION
2017-04-05 23:29:40 +02:00
This is the manual page for Data::Interactive::Inspect Version 0.07.