ISerializable
verb.core.ISerializable
INTERFACE
An interface describing a type that can be serialized as a string. Use verb.core.Deserializer to construct an instance of the the type from the resultant string. The string is the serialized representation of a haxe object and is strongly typed. For details, see http://haxe.org/manual/std-serialization.html for details.
serialize
METHOD
serialize() : String
SerializableBase
verb.core.SerializableBase
CLASS
Forms a base class for serializable data types
serialize
METHOD
serialize() : String
Deserializer
verb.core.Deserializer
CLASS
Deserializes strings for types implementing ISerializable
deserialize
STATIC METHOD
deserialize<T>(s : String) : T
Construct an ISerializable from its string representation, given a parameter T. You can use this to deserialize almost any type in verb.geom or verb.core.*Data types.
params
- A string representing something implementing ISerializable
returns
- A new T from the string