Path::Resolver::CustomConverter - a one-off converter between any two types using a coderef


Path-Resolver documentation  | view source Contained in the Path-Resolver distribution.

Index


NAME

Top

Path::Resolver::CustomConverter - a one-off converter between any two types using a coderef

VERSION

Top

version 3.100451

SYNOPSIS

Top

  my $converter = Path::Resolver::CustomConverter->new({
    input_type  => SomeType,
    output_type => AnotherType,
    converter   => sub { ...return an AnotherType value... },
  });

  my $resolver = Path::Resolver::Resolver::Whatever->new({
    converter => $converter,
    ...
  });

  my $another = $resolver->entity_at('/foo/bar/baz.txt');

This class lets you produce one-off converters between any two types using an arbitrary hunk of code.

ATTRIBUTES

Top

input_type

This is the Moose::Meta::TypeConstraint for objects that the converter expects to be handed as input.

output_type

This is the Moose::Meta::TypeConstraint for objects that the converter promises to return as output.

converter

This is the coderef that will perform the conversion. It will be called like a method: the first argument will be the converter object, followed by the value to convert.

METHODS

Top

convert

This method accepts an input value, passes it to the converter coderef, and returns the result.

AUTHOR

Top

Ricardo Signes <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Path-Resolver documentation  | view source Contained in the Path-Resolver distribution.