NAME

List::Objects::WithUtils::Role::WithJunctions - Arrays with junctions

SYNOPSIS

use List::Objects::WithUtils 'array';

my $array = array(qw/ a b c /);

if ( $array->any_items eq 'b' ) {
  ...
}

if ( $array->all_items eq 'a' ) {
  ...
}

DESCRIPTION

Used by List::Objects::WithUtils::Array to provide access to Syntax::Keyword::Junction.

any_items

Returns the overloaded "any" in Syntax::Keyword::Junction object for the current array.

all_items

Returns the overloaded "all" in Syntax::Keyword::Junction object for the current array.

AUTHOR

Jon Portnoy <avenj@cobaltirc.org>