Data::Object::Autobox
Data-Object Autoboxing
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');
This package implements autoboxing via autobox to provide boxing for native Perl 5 data types.
4 POD Errors
The following errors were encountered while parsing the POD:
- Around line 8:
Unknown directive: =name
- Around line 12:
Unknown directive: =abstract
- Around line 16:
Unknown directive: =synopsis
- Around line 27:
Unknown directive: =description