- loadClassOrStruct
void loadClassOrStruct(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- saveClassOrStruct
void saveClassOrStruct(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serialize
void serialize(T var, ContainerOrSlice con)
Function loads and saves data depending on compile time variable load
If useMalloc is true pointers, arrays, classes will be saved and loaded using Mallocator
T is the serialized variable
ContainerOrSlice is string when load==Load.yes
ContainerOrSlice container supplied by user in which data is stored when load==Load.no(save)
- serialize
void serialize(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeBasicVar
void serializeBasicVar(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeClass
void serializeClass(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeCustomMap
void serializeCustomMap(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeCustomVector
void serializeCustomVector(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeDynamicArray
void serializeDynamicArray(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeImpl
void serializeImpl(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeKeyValue
void serializeKeyValue(Key key, Value value, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeName
void serializeName(string name, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeName
void serializeName(string name, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializePointer
void serializePointer(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeStaticArray
void serializeStaticArray(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
- serializeStruct
void serializeStruct(T var, ContainerOrSlice con)
Undocumented in source. Be warned that the author may not have intended to support it.
Serializer to save data in json|lua tokens format If serialized data have to be allocated it is not saved/loaded unless it has "malloc" UDA (@("malloc"))