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. This package inherits all behavior from autobox.
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: