Data::Perl(3) User Contributed Perl Documentation Data::Perl(3)

Data::Perl - Base classes wrapping fundamental Perl data types.

version 0.002011

  use Data::Perl;
  my $array = array(1,2,3, qw/a b c/);
  $array->count; # 6
  my @elements = $array->grep(sub {/b/}); # (b)
  my $hash = hash(a => 1, b => 2);
  $hash->keys; # ('a', 'b');
  my $number = number(5);
  $number->add(10); # 15
  my $string = string("foo\n");
  $string->chomp; # return 1, chomps string
  my $counter = counter();
  $counter->inc; # counter is now 1
  my $sub = code(sub { 'foo' });
  $sub->execute; # returns 'foo'
  $foo

Data::Perl is a collection of classes that wrap fundamental data types that exist in Perl. These classes and methods as they exist today are an attempt to mirror functionality provided by Moose's Native Traits. One important thing to note is all classes currently do no validation on constructor input.

Data::Perl is a container class for the following classes:

The API provided by these modules is as of now considered alpha and undecided. The API WILL change. If you are writing code that you will not touch again for years, do not use this until this warning is removed.

Data::Perl exports helper constructor functions to interface with the above classes:

Much thanks to the Moose team for their work with native traits, for which much of this work is based.

MooX::HandlesVia

Matthew Phillips <mattp@cpan.org>

Toby Inkster <tobyink@cpan.org> since version 0.002010.

This software is copyright (c) 2020 by Matthew Phillips <mattp@cpan.org>.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2020-01-22 perl v5.34.0