NAME
Data::Object::Array
ABSTRACT
Array Class for Perl 5
SYNOPSIS
package main;
use Data::Object::Array;
my $array = Data::Object::Array->new([1..9]);
DESCRIPTION
This package provides methods for manipulating array data.
INHERITS
This package inherits behaviors from:
INTEGRATES
This package integrates behaviors from:
LIBRARIES
This package uses type constraints from:
METHODS
This package implements the following methods:
all
all(CodeRef $arg1, Any @args) : Num
The all method returns true if the callback returns true for all of the elements.
- all example #1
-
my $array = Data::Object::Array->new([2..5]); $array->all(sub { my ($value, @args) = @_; $value > 1; });
any
any(CodeRef $arg1, Any @args) : Num
The any method returns true if the callback returns true for any of the elements.
- any example #1
-
my $array = Data::Object::Array->new([2..5]); $array->any(sub { my ($value) = @_; $value > 5; });
clear
clear() : ArrayLike
The clear method is an alias to the empty method.
count
count() : Num
The count method returns the number of elements within the array.
defined
defined() : Num
The defined method returns true if the element at the array index is defined.
delete
delete(Int $arg1) : Any
The delete method returns the value of the element at the index specified after removing it from the array.
each
each(CodeRef $arg1, Any @args) : ArrayLike
The each method executes a callback for each element in the array passing the index and value as arguments.
- each example #1
-
my $array = Data::Object::Array->new(['a'..'g']); $array->each(sub { my ($index, $value) = @_; [$index, $value] });
each_key
each_key(CodeRef $arg1, Any @args) : ArrayRef
The each_key method executes a callback for each element in the array passing the index as an argument.
- each_key example #1
-
my $array = Data::Object::Array->new(['a'..'g']); $array->each_key(sub { my ($index) = @_; [$index] });
each_n_values
each_n_values(Num $arg1, CodeRef $arg2, Any @args) : ArrayRef
The each_n_values method executes a callback for each element in the array passing the routine the next n values until all values have been handled.
- each_n_values example #1
-
my $array = Data::Object::Array->new(['a'..'g']); $array->each_n_values(4, sub { my (@values) = @_; # $values[1] # a # $values[2] # b # $values[3] # c # $values[4] # d [@values] });
each_value
each_value(CodeRef $arg1, Any @args) : ArrayRef
The each_value method executes a callback for each element in the array passing the routine the value as an argument.
- each_value example #1
-
my $array = Data::Object::Array->new(['a'..'g']); $array->each_value(sub { my ($value, @args) = @_; [$value, @args] });
empty
empty() : ArrayLike
The empty method drops all elements from the array.
eq
eq(Any $arg1) : Num
The eq method will throw an exception if called.
exists
exists(Int $arg1) : Num
The exists method returns true if the element at the index specified exists, otherwise it returns false.
first
first() : Any
The first method returns the value of the first element.
ge
ge(Any $arg1) : Num
The ge method will throw an exception if called.
get
get(Int $arg1) : Any
The get method returns the value of the element at the index specified.
grep
grep(CodeRef $arg1, Any @args) : ArrayRef
The grep method executes a callback for each element in the array passing the value as an argument, returning a new array reference containing the elements for which the returned true.
- grep example #1
-
my $array = Data::Object::Array->new([1..5]); $array->grep(sub { my ($value) = @_; $value >= 3 });
gt
gt(Any $arg1) : Num
The gt method will throw an exception if called.
hash
hash() : HashRef
The hash method returns a hash reference where each key and value pairs corresponds to the index and value of each element in the array.
- hash example #1
-
my $array = Data::Object::Array->new([1..5]); $array->hash; # {0=>1,1=>2,2=>3,3=>4,4=>5}
hashify
hashify(CodeRef $arg1, Any $arg2) : HashRef
The hashify method returns a hash reference where the elements of array become the hash keys and the corresponding values are assigned a value of 1.
- hashify example #2
-
my $array = Data::Object::Array->new([1..5]); $array->hashify(sub { my ($value) = @_; $value % 2 });
head
head() : Any
The head method returns the value of the first element in the array.
invert
invert() : Any
The invert method returns an array reference containing the elements in the array in reverse order.
iterator
iterator() : CodeRef
The iterator method returns a code reference which can be used to iterate over the array. Each time the iterator is executed it will return the next element in the array until all elements have been seen, at which point the iterator will return an undefined value.
- iterator example #1
-
my $array = Data::Object::Array->new([1..5]); my $iterator = $array->iterator; # while (my $value = $iterator->next) { # say $value; # 1 # }
join
join(Str $arg1) : Str
The join method returns a string consisting of all the elements in the array joined by the join-string specified by the argument. Note: If the argument is omitted, an empty string will be used as the join-string.
keyed
keyed(Str $arg1) : HashRef
The keyed method returns a hash reference where the arguments become the keys, and the elements of the array become the values.
- keyed example #1
-
my $array = Data::Object::Array->new([1..5]); $array->keyed('a'..'d'); # {a=>1,b=>2,c=>3,d=>4}
keys
keys() : ArrayRef
The keys method returns an array reference consisting of the indicies of the array.
last
last() : Any
The last method returns the value of the last element in the array.
le
le(Any $arg1) : Num
The le method will throw an exception if called.
length
length() : Num
The length method returns the number of elements in the array.
list
list() : (Any)
The list method returns a shallow copy of the underlying array reference as an array reference.
lt
lt(Any $arg1) : Num
The lt method will throw an exception if called.
map
map(CodeRef $arg1, Any $arg2) : ArrayRef
The map method iterates over each element in the array, executing the code reference supplied in the argument, passing the routine the value at the current position in the loop and returning a new array reference containing the elements for which the argument returns a value or non-empty list.
- map example #1
-
my $array = Data::Object::Array->new([1..5]); $array->map(sub { $_[0] + 1 }); # [2,3,4,5,6]
max
max() : Any
The max method returns the element in the array with the highest numerical value. All non-numerical element are skipped during the evaluation process.
min
min() : Any
The min method returns the element in the array with the lowest numerical value. All non-numerical element are skipped during the evaluation process.
ne
ne(Any $arg1) : Num
The ne method will throw an exception if called.
none
none(CodeRef $arg1, Any $arg2) : Num
The none method returns true if none of the elements in the array meet the criteria set by the operand and rvalue.
- none example #1
-
my $array = Data::Object::Array->new([2..5]); $array->none(sub { my ($value) = @_; $value <= 1; # 1; true });
- none example #2
-
my $array = Data::Object::Array->new([2..5]); $array->none(sub { my ($value) = @_; $value <= 1; # 1; true });
nsort
nsort() : ArrayRef
The nsort method returns an array reference containing the values in the array sorted numerically.
one
one(CodeRef $arg1, Any $arg2) : Num
The one method returns true if only one of the elements in the array meet the criteria set by the operand and rvalue.
- one example #1
-
my $array = Data::Object::Array->new([2..5]); $array->one(sub { my ($value) = @_; $value == 5; # 1; true });
- one example #2
-
my $array = Data::Object::Array->new([2..5]); $array->one(sub { my ($value) = @_; $value == 6; # 0; false });
pairs
pairs() : ArrayRef
The pairs method is an alias to the pairs_array method.
- pairs example #1
-
my $array = Data::Object::Array->new([1..5]); $array->pairs; # [[0,1],[1,2],[2,3],[3,4],[4,5]]
pairs_array
pairs_array() : ArrayRef
The pairs_array method returns an array reference consisting of array references where each sub-array reference has two elements corresponding to the index and value of each element in the array.
- pairs_array example #1
-
my $array = Data::Object::Array->new([1..5]); $array->pairs_array; # [[0,1],[1,2],[2,3],[3,4],[4,5]]
pairs_hash
pairs_hash() : HashRef
The pairs_hash method returns a hash reference where each key and value pairs corresponds to the index and value of each element in the array.
- pairs_hash example #1
-
my $array = Data::Object::Array->new([1..5]); $array->pairs_hash; # {0=>1,1=>2,2=>3,3=>4,4=>5}
part
part(CodeRef $arg1, Any $arg2) : Tuple[ArrayRef, ArrayRef]
The part method iterates over each element in the array, executing the code reference supplied in the argument, using the result of the code reference to partition to array into two distinct array references.
- part example #1
-
my $array = Data::Object::Array->new([1..10]); $array->part(sub { my ($value) = @_; $value > 5 }); # [[6, 7, 8, 9, 10], [1, 2, 3, 4, 5]]
pop
pop() : Any
The pop method returns the last element of the array shortening it by one. Note, this method modifies the array.
push
push(Any $arg1) : Any
The push method appends the array by pushing the agruments onto it and returns itself.
- push example #1
-
my $array = Data::Object::Array->new([1..5]); $array->push(6,7,8); # [1,2,3,4,5,6,7,8]
random
random() : Any
The random method returns a random element from the array.
reverse
reverse() : ArrayRef
The reverse method returns an array reference containing the elements in the array in reverse order.
rnsort
rnsort() : ArrayRef
The rnsort method returns an array reference containing the values in the array sorted numerically in reverse.
rotate
rotate() : ArrayLike
The rotate method rotates the elements in the array such that first elements becomes the last element and the second element becomes the first element each time this method is called.
rsort
rsort() : ArrayRef
The rsort method returns an array reference containing the values in the array sorted alphanumerically in reverse.
- rsort example #1
-
my $array = Data::Object::Array->new(['a'..'d']); $array->rsort; # ['d','c','b','a']
set
set(Str $arg1, Any $arg2) : Any
The set method returns the value of the element in the array at the index specified by the argument after updating it to the value of the second argument.
shift
shift() : Any
The shift method returns the first element of the array shortening it by one.
size
size() : Num
The size method is an alias to the length method.
slice
slice(Any @args) : HashRef
The slice method returns a hash reference containing the elements in the array at the index(es) specified in the arguments.
sort
sort() : ArrayRef
The sort method returns an array reference containing the values in the array sorted alphanumerically.
- sort example #1
-
my $array = Data::Object::Array->new(['d','c','b','a']); $array->sort; # ['a','b','c','d']
sum
sum() : Num
The sum method returns the sum of all values for all numerical elements in the array. All non-numerical element are skipped during the evaluation process.
tail
tail() : Any
The tail method returns an array reference containing the second through the last elements in the array omitting the first.
unique
unique() : ArrayRef
The unique method returns an array reference consisting of the unique elements in the array.
unshift
unshift() : Any
The unshift method prepends the array by pushing the agruments onto it and returns itself.
- unshift example #1
-
my $array = Data::Object::Array->new([1..5]); $array->unshift(-2,-1,0); # [-2,-1,0,1,2,3,4,5]
values
values() : ArrayRef
The values method returns an array reference consisting of the elements in the array. This method essentially copies the content of the array into a new container.
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 terms of the The Apache License, Version 2.0, as elucidated in the "license file".