SYNOPSIS

        use do;
    
        my $input  = [1,1,1,1,3,3,2,1,5,6,7,8,9];
        my $output = $input->grep('$a < 5')->unique->sort; # [1,2,3]
    
        $output->isa('Data::Object::Array');
        $output->join(',')->print; # 1,2,3

DESCRIPTION

    This module is a shoehorn for Data::Object::Autobox, a Perl 5 autobox
    implementation based upon the Data::Object data type object system.
    This pragma merely serves as a convenient means of loading and
    configuring Data::Object and autoboxing. Note: This is an early release
    available for testing and feedback and as such is subject to change.

