Acme-Pointer

 view release on metacpan or  search on metacpan

README.md  view on Meta::CPAN

Acme::Pointer - We can access to data using address as the string

# SYNOPSIS

    #!/usr/bin/env perl

    use strict;
    use warnings;
    use utf8;
    use feature qw/say/;
    use Data::Dumper;
    use Acme::Pointer;

    my $a = {
        a => 20,
        b => [1,2]
    };
    my $b = "$a";
    say $b;
    print Dumper deref($b);
    say "-" x 10;

lib/Acme/Pointer.pm  view on Meta::CPAN

Acme::Pointer - We can access to data using address as the string

=head1 SYNOPSIS

    #!/usr/bin/env perl

    use strict;
    use warnings;
    use utf8;
    use feature qw/say/;
    use Data::Dumper;
    use Acme::Pointer;

    my $a = {
        a => 20,
        b => [1,2]
    };
    my $b = "$a";
    say $b;
    print Dumper deref($b);
    say "-" x 10;

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.573 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )