MIST serializeWithCycles

From DCS World Wiki - Hoggitworld.com
Revision as of 23:11, 13 April 2018 by Grimes (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


mist.utils.serializeWithCycles

Added with: Mist 1.0
Description
Returns the string name = <serialized value> where <serialized value> is the value t serialized to a string. Typically, t will be a table. Unlike mist.utils.serialize, t can contain cycles, however, the resulting serialized table is a little less readable (to human eyes).
Syntax
string mist.utils.serializeWithCycles(value val ,value t )
Valid Input Values:
anything
Return value:
string
Return example:
Usage Examples:

do

local result = mist.utils.serializeWithCycles('string', INeedToMakeAnExampleForThis)

end

Notes:
Related Functions
deepCopy, dostring, basicSerialize, serialize, serializeWithCycles, oneLineSerialize, tableShow

Scripting Engine

MIST Root Page