NAME
Data::Object::Func::Scalar::Ge
ABSTRACT
Data-Object Scalar Function (Ge) Class
SYNOPSIS
use Data::Object::Func::Scalar::Ge;
my $func = Data::Object::Func::Scalar::Ge->new(@args);
$func->execute;
DESCRIPTION
Data::Object::Func::Scalar::Ge is a function object for Data::Object::Scalar.
METHODS
This package implements the following methods.
execute
execute() : Object
Executes the function logic and returns the result.
- execute example
-
my $data = Data::Object::Scalar->new(\*main); my $func = Data::Object::Func::Scalar::Ge->new( arg1 => $data, arg2 => '' ); my $result = $func->execute;
mapping
mapping() : (Str)
Returns the ordered list of named function object arguments.