unmarshal abstract method

T unmarshal(
  1. S data
)

Deserialize a representation of type S back to the original data of type T. unmarshal(marshal(data)) must produce an instance of T that is equivalent to original instance data.

Implementation

T unmarshal(S data);