ISerializable

verb.core.ISerializable

INTERFACE

Source code

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

Source code

serialize() : String

SerializableBase

verb.core.SerializableBase

CLASS

Source code

Forms a base class for serializable data types

serialize

METHOD

Source code

serialize() : String

Deserializer

verb.core.Deserializer

CLASS

Source code

Deserializes strings for types implementing ISerializable

deserialize

STATIC METHOD

Source code

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

returns