NAME
Data::Encoder::Custom - Data::Encoder gateway for customizable
SYNOPSIS
use Data::Encoder;
my $encoder = Data::Encoder->load('Custom', {
encoder => sub { ... },
decoder => sub { ... },
});
my $encoded = $encoder->encode($data);
my $decoded = $encoder->deocde($encoded);
AUTHOR
xaicron <xaicron {at} cpan.org>
COPYRIGHT
Copyright 2010 - xaicron
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.