public sealed class CTX
FromBase64 | Deserialize base64 encoded string to context array. |
FromBytes | Deserialize bytes to context array. |
ListIndex |
Lookup list by index offset.
If the index is negative, the resolved index starts backwards from end of list. If an index is out of bounds, a parameter error will be returned. Examples:
|
ListIndexCreate | Lookup list by base list's index offset. If the list at index offset is not found, create it with the given sort order at that index offset. If pad is true and the index offset is greater than the bounds of the base list, nil entries will be inserted before the newly created list. |
ListRank |
Lookup list by rank.
|
ListValue | Lookup list by value. |
MapIndex |
Lookup map by index offset.
If the index is negative, the resolved index starts backwards from end of list. If an index is out of bounds, a parameter error will be returned. Examples:
|
MapKey | Lookup map by key. |
MapKeyCreate | Lookup map by base map's key. If the map at key is not found, create it with the given sort order at that key. |
MapRank |
Lookup map by rank.
|
MapValue | Lookup map by value. |
ToBase64 | Serialize context array to base64 encoded string. |
ToBytes | Serialize context array to bytes. |