The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Data::Object::Role::Functable

ABSTRACT

Data-Object Functable Role

SYNOPSIS

  use Data::Object::Class;

  with 'Data::Object::Role::Functable';

DESCRIPTION

This package provides mechanisms for dispatching to functors, i.e. data object function classes.

INTEGRATIONS

This package integrates behaviors from:

Data::Object::Role::Proxyable

LIBRARIES

This package uses type constraints defined by:

Data::Object::Library

METHODS

This package implements the following methods.

functor

  functor(Str $name) : Maybe[Str]

The functor method return a functor, i.e. a function class, whose namespace is based on the calling class and the argument provided. If the functor can be loaded this method will return its fully-qualified name, otherwise it will return empty.

functor example
  # given "delete"

  my $func = $self->functor('delete'); # bless('...', '...Func::Delete')

CREDITS

Al Newkirk, +309

Anthony Brummett, +10

Adam Hopkins, +2

José Joaquín Atria, +1

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

Wiki

Project

Initiatives

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