! See http://factorcode.org/license.txt for BSD license.
USING:help.syntaxhelp.markup;
IN:serialize
HELP:(serialize)
{ $values { "obj""object to serialize" }
}
{ $description "Serializes the object to the current output stream. Object references within the structure being serialized are maintained. It must be called from within the scope of a " { $link with-serialized } " call." }
{ $description "Deserializes an object by reading from the current input stream. Object references within the structure that was originally serialized are maintained. It must be called from within the scope of a " { $link with-serialized } " call." }
{ $description "Creates a scope for serialization and deserialization operations. The quotation is called within this scope. The scope is used for maintaining the structure and object references of serialized objects." }
{ $description "Deserializes an object by reading from the current input stream. Object references within the structure that was originally serialized are maintained." }