Operators |
deserialize_handle — Deserialize a serialized item.
deserialize_handle( : : SerializedItem : Handle)
deserialize_handle deserializes the content of SerializedItem and returns the deserialized item in Handle (see fwrite_serialized_item for an introduction of the basic principle of serialization).
The serialized item must have been created by serialize_handle, or by the type specific serialization operators, such as serialize_matrix or serialize_shape_model.
Handle containing the serialized item to be deserialized.
Handle containing the deserialized item.
create_matrix (3, 3, 0, MatrixID) serialize_handle (MatrixID, SerializedMatrix) deserialize_handle (SerializedMatrix, MatrixID2)
If the parameters are valid, the operator deserialize_handle returns the value 2 (H_MSG_TRUE). Otherwise, an exception is raised.
serialize_handle, fread_serialized_item, receive_serialized_item
Foundation
Operators |