Badger::Codec::YAML
use Badger::Codec::YAML;
my $codec = Badger::Codec::YAML->new();
my $encoded = $codec->encode("Hello World");
my $decoded = $codec->decode($encoded);
This module implements a subclass of Badger::Codec which uses the YAML module to encode and decode data to and from YAML.
Decodes $data from YAML.
$decoded = Badger::Codec::YAML->decode($encoded);
This method returns a reference to the real subroutine that's doing all
the encoding work, i.e. the Dump() subroutine in YAML.
Andy Wardley http://wardley.org/