# Functions

InheritAnyValueMap creates a new instance of the map and assigns base methods from interface.
NewAnyValue creates a new instance of the object and assigns its value.
NewAnyValueArray creates a new instance of the array and assigns its value.
NewAnyValueArrayFromString splits specified string into elements using a separator and assigns the elements to a newly created AnyValueArray.
NewAnyValueArrayFromValue converts specified value into AnyValueArray.
NewAnyValueArrayFromValues creates a new AnyValueArray from a list of values Parameters: values ...values any a list of values to initialize the created AnyValueArray Returns: *AnyValueArray a newly created AnyValueArray.
NewAnyValueMap creates a new instance of the map and assigns its value.
NewAnyValueMapFromMaps creates a new AnyValueMap by merging two or more maps.
NewAnyValueMapFromTuples Creates a new AnyValueMap from a list of key-value pairs called tuples.
NewAnyValueMapFromTuplesArray creates a new AnyValueMap from a list of key-value pairs called tuples.
NewAnyValueMapFromValue Converts specified value into AnyValueMap.
NewEmptyAnyValue creates a new empty instance of the object Returns: new empty object.
NewEmptyAnyValueArray creates a new instance of the empty array.
NewEmptyAnyValueMap creates a new empty instance of the map.
NewEmptyStringValueMap creates a new instance of the map.
NewStringValueMap creates a new instance of the map and assigns its value.
NewStringValueMapFromMaps creates a new AnyValueMap by merging two or more maps.
NewStringValueMapFromString parses semicolon-separated key-value pairs and returns them as a StringValueMap.
NewStringValueMapFromTuples creates a new StringValueMap from a list of key-value pairs called tuples.
NewStringValueMapFromTuplesArray creates a new StringValueMap from a list of key-value pairs called tuples.
NewStringValueMapFromValue converts specified value into StringValueMap.

# Structs

AnyValue Cross-language implementation of dynamic object what can hold value of any type.
AnyValueArray Cross-language implementation of dynamic object array what can hold values of any type.
AnyValueMap is a Cross-language implementation of dynamic object map (dictionary) what can hold values of any type.
StringValueMap Cross-language implementation of a map (dictionary) where all keys and values are strings.

# Interfaces

ICloneable Interface for data objects that are able to create their full binary copy.
No description provided by the author
No description provided by the author