NAME

Data::Object::Func::Code::Compose

ABSTRACT

Data-Object Code Function (Compose) Class

SYNOPSIS

use Data::Object::Func::Code::Compose;

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

$func->execute;

DESCRIPTION

Data::Object::Func::Code::Compose is a function object for Data::Object::Code.

METHODS

This package implements the following methods.

execute

execute() : Object

Executes the function logic and returns the result.

execute example
my $data = Data::Object::Code->new(sub { [@_] });

my $func = Data::Object::Func::Code::Compose->new(
  arg1 => $data,
  arg2 => sub { [@_] },
  args => [1,2,3]
);

my $result = $func->execute;

mapping

mapping() : (Str)

Returns the ordered list of named function object arguments.

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