NAME
Data::Object::Autobox
ABSTRACT
Data-Object Autoboxing
SYNOPSIS
use Data::Object::Autobox;
my $input = [1,1,1,1,3,3,2,1,5,6,7,8,9];
my $output = $input->grep(sub{$_[0] < 5})->unique->sort; # [1,2,3]
$output->join(',')->print; # 1,2,3
$object->isa('Data::Object::Array');
DESCRIPTION
This package implements autoboxing via autobox to provide boxing for native Perl 5 data types.
INHERITANCE
This package inherits behaviors from:
LIBRARIES
This package uses type constraints defined by:
CREDITS
Al Newkirk, +296
Anthony Brummett, +10
José Joaquín Atria, +1
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
PROJECT
SEE ALSO
To get the most out of this distribution, consider reading the following: