NAME
Path::Resolver::CustomConverter - a one-off converter between any two types using a coderef
VERSION
version 3.100455
SYNOPSIS
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.
PERL VERSION
This library should run on perls released even a long time ago. It should work on any version of perl released in the last five years.
Although it may work on older versions of perl, no guarantee is made that the minimum required version will not be increased. The version may be increased for any reason, and there is no promise that patches will be accepted to lower the minimum required perl.
ATTRIBUTES
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
convert
This method accepts an input value, passes it to the converter coderef, and returns the result.
AUTHOR
Ricardo Signes <cpan@semiotic.systems>
COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Ricardo Signes.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.