Pickle module
The Pickle module allows any value (other than closures) that can be marshalled to be converted to a String. Unlike Builtins::marshal, however, pickled data may be transferred between any two Kaya applications (although for meaningful transfer naturally both applications must be aware of all data types contained in the pickled data).
Exceptions
- CantPickleClosures - Closures may not be pickled.
- PickleFormatError - Format incompatibility
- PickleParseError - Parse error
Functions
- String pickle(a val) - Convert a value to a string
- val unpickle(String dat) - Convert a pickled string to a value