The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Bio::Gonzales::Util::Cerial - convenience functions for yaml storage

SYNOPSIS

use Bio::Gonzales::Util::YAML;

my $yaml_string = freeze \%data;
my $data = thaw $yaml_string;

freeze_file $filename, \%data ;
my $data = thaw_file $filename;

DESCRIPTION

Bio::Gonzales::Util::YAML provides some handy functions to work with yaml data

EXPORT

$yaml_string = freeze($data,...);

$data = thaw($yaml_string);

freeze_file($filename, $data, ...);

$data = thaw_file($filename);