NAME

Data::Object::Regexp::Func::Search

ABSTRACT

Data-Object Regexp Function (Search) Class

SYNOPSIS

use Data::Object::Regexp::Func::Search;

my $func = Data::Object::Regexp::Func::Search->new(@args);

$func->execute;

DESCRIPTION

Data::Object::Regexp::Func::Search is a function object for Data::Object::Regexp.

INHERITANCE

This package inherits behaviors from:

Data::Object::Regexp::Func

LIBRARIES

This package uses type constraints defined by:

Data::Object::Library

ATTRIBUTES

This package has the following attributes.

arg1

arg1(Object)

The attribute is read-only, accepts (Object) values, and is optional.

arg2

arg2(Str)

The attribute is read-only, accepts (Str) values, and is optional.

METHODS

This package implements the following methods.

execute

execute() : Object

Executes the function logic and returns the result.

execute example
my $data = Data::Object::Regexp->new(qr/test/);

my $func = Data::Object::Regexp::Func::Search->new(
  arg1 => $data,
  arg2 => 'test case'
);

my $result = $func->execute;

mapping

mapping() : (Str)

Returns the ordered list of named function object arguments.

mapping example
my @data = $self->mapping;

CREDITS

Al Newkirk, awncorp@cpan.org, +284

Anthony Brummett, abrummet@genome.wustl.edu, +10

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 same terms as the Perl 5 programming language system itself.

PROJECT

GitHub

Projects

Milestones

Contributing

Issues

SEE ALSO

To get the most out of this distribution, consider reading the following:

Do

Data::Object

Data::Object::Class

Data::Object::ClassHas

Data::Object::Role

Data::Object::RoleHas

Data::Object::Library