From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Catmandu::Fix::Condition::SimpleAllTest - Base class to ease the construction of all match conditionals

SYNOPSIS

use Moo;
has path => (fix_arg => 1);
sub emit_test {
my ($self, $var) = @_;
"is_value(${var}) && ${var} % 2 == 0";
}
1;
# Now you can write in your fixes
is_even('my_field') # True when my_field is 0,2,4,6,...
is_even('my_field.*') # True when all my_field's are 0,2,4,6,...

DESCRIPTION

The is a base class to ease the construction of Catmandu::Fix::Conditional-s. An 'all' test matches when all node on a path match a condition. E.g.

all_match('title','abc') # true when the title field contains 'abc'
all_match('title.*','abc') # true when all title fields contain 'abc'

SEE ALSO

Catmandu::Fix::Condition::all_match, Catmandu::Fix::Condition::greater_than, Catmandu::Fix::Condition::less_than