# do **Repository Path**: mirrors_gitpan/do ## Basic Information - **Project Name**: do - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-10-20 - **Last Updated**: 2023-08-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # NAME do - Objectify Perl 5 Native Data Types # VERSION version 0.03 # STATUS # 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](https://metacpan.org/pod/Data::Object::Autobox), a Perl 5 autobox implementation based upon the [Data::Object](https://metacpan.org/pod/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.** # AUTHOR Al Newkirk # COPYRIGHT AND LICENSE This software is copyright (c) 2014 by Al Newkirk. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.