-
-
07 Feb 2011 15:24:05 UTC
- Distribution: Data-Zipper
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (1)
- Testers (694 / 0 / 0)
- Kwalitee
Bus factor: 0- 97.73% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (11.66KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
Data::Zipper - Easily traverse and transform immutable data
SYNOPSIS
package Person; use Moose; has name => ( is => 'ro' ); package MyApp; use Data::Zipper 'zipper'; my $person = Person->new( name => 'John' ) my $sally = zipper($person) ->traverse('name')->set('Sally') ->up ->focus;
FUNCTIONS
zipper
Create a zipper of the correct type, depending on the data given
AUTHOR
Oliver Charles
COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Oliver Charles <oliver.g.charles@googlemail.com>.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install Data::Zipper, copy and paste the appropriate command in to your terminal.
cpanm Data::Zipper
perl -MCPAN -e shell install Data::Zipper
For more information on module installation, please visit the detailed CPAN module installation guide.