Class::MakeMethods::Utility::ArraySplicer - Common array ops |
Class::MakeMethods::Utility::ArraySplicer - Common array ops
use Class::MakeMethods::Utility::ArraySplicer;
# Get one or more values $value = array_splicer( $array_ref, $index ); @values = array_splicer( $array_ref, $index_array_ref );
# Set one or more values array_splicer( $array_ref, $index => $new_value, ... );
# Splice selected values in or out array_splicer( $array_ref, [ $start_index, $end_index], [ @values ]);
This module provides a utility function and several associated constants which support a general purpose array-splicer interface, used by several of the Standard and Composite method generators.
This is a general-purpose array accessor function. Depending on the arguments passed to it, it will get, set, slice, splice, or otherwise modify your array.
# Get all values $value_ref = array_splicer( $array_ref ); @values = array_splicer( $array_ref );
# Get one value $value = array_splicer( $array_ref, $index );
# Set contents of array array_splicer( $array_ref, [ $value1, $value2, ... ] );
# Reset the array contents to empty array_splicer( $array_ref, [] );
# Get slice of values @values = array_splicer( $array_ref, undef, [ $index1, $index2, ... ] );
# Set one or more values by index array_splicer( $array_ref, $index1 => $value1, $index2 => $value2, ... );
# Splice selected values in or out array_splicer( $array_ref, [ $start_index, $count], [ @values ]);
The first controlling number is the position at which the splice will begin. Zero will start before the first item in the list. Negative numbers count backwards from the end of the array.
The second number is the number of items to be removed from the list. If it is omitted, or undefined, or zero, no items are removed. If it is a positive integer, that many items will be returned.
If both numbers are omitted, or are both undefined, they default to containing the entire value array.
If the second argument is undef, no values will be inserted; if it is a non-reference value, that one value will be inserted; if it is an array-ref, its values will be copied.
The method returns the items that removed from the array, if any.
Here are some examples of common splicing operations.
# Insert an item at position in the array $obj->bar([3], 'Potatoes' );
# Remove 1 item from position 3 in the array $obj->bar([3, 1], undef );
# Set a new value at position 2, and return the old value print $obj->bar([2, 1], 'Froth' );
# Unshift an item onto the front of the list array_splicer( $array_ref, [0], 'Bubbles' );
# Shift the first item off of the front of the list print array_splicer( $array_ref, [0, 1], undef );
# Push an item onto the end of the list array_splicer( $array_ref, [undef], 'Bubbles' );
# Pop the last item off of the end of the list print array_splicer( $array_ref, [undef, 1], undef );
There are also constants symbols to facilitate some common combinations of splicing arguments:
# Reset the array contents to empty array_splicer( $array_ref, array_clear );
# Set the array contents to provided values array_splicer( $array_ref, array_splice, [ 2, 3 ] );
# Unshift an item onto the front of the list array_splicer( $array_ref, array_unshift, 'Bubbles' );
# Shift it back off again print array_splicer( $array_ref, array_shift );
# Push an item onto the end of the list array_splicer( $array_ref, array_push, 'Bubbles' );
# Pop it back off again print array_splicer( $array_ref, array_pop );
See the Class::MakeMethods manpage for general information about this distribution.
See the Class::MakeMethods::Standard::Hash manpage and numerous other classes for examples of usage.
Class::MakeMethods::Utility::ArraySplicer - Common array ops |