Storable
view release on metacpan or search on metacpan
Storable.xs view on Meta::CPAN
#
# Same as pstore(), but network order is used for integers and doubles are
# emitted as strings.
SV *
pstore(f,obj)
OutputStream f
SV* obj
ALIAS:
net_pstore = 1
PPCODE:
RETVAL = do_store(aTHX_ f, obj, 0, ix, (SV **)0) ? &PL_sv_yes : &PL_sv_undef;
/* do_store() can reallocate the stack, so need a sequence point to ensure
that ST(0) knows about it. Hence using two statements. */
ST(0) = RETVAL;
XSRETURN(1);
# mstore
#
# Store the transitive data closure of given object to memory.
# Returns undef on error, a scalar value containing the data otherwise.
( run in 0.329 second using v1.01-cache-2.11-cpan-5511b514fd6 )