PDL::IO::Storable (3)
Leading comments
Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) Standard preamble: ========================================================================
NAME
PDL::IO::Storable - helper functions to make PDL usable with StorableSYNOPSIS
use Storable; use PDL::IO::Storable; $hash = { 'foo' => 42, 'bar' => zeroes(23,45), }; store $hash, 'perlhash.dat';
DESCRIPTION
"Storable" implements object persistence for Perl data structures that can contain arbitrary Perl objects. This module implements the relevant methods to be able to store and retrieve piddles via Storable.FUNCTIONS
store
store a piddle using Storable
$a = random 12,10; $a->store('myfile');
freeze
freeze a piddle using Storable
$a = random 12,10; $frozen = $a->freeze;
AUTHOR
Copyright (C) 2013 Dima Kogan <dima@secretsauce.net> Copyright (C) 2002 Christian Soeller <c.soeller@auckland.ac.nz> All rights reserved. There is no warranty. You are allowed to redistribute this software / documentation under certain conditions. For details, see the fileCOPYING
in the PDL
distribution. If this file is separated from the PDL
distribution,
the copyright notice should be included in the file.