Expand description

Operation Context for nested Operations

Structs

  • CdtContext defines Nested CDT context. Identifies the location of nested list/map to apply the operation. for the current level. An array of CTX identifies location of the list/map on multiple levels on nesting.

Functions

  • Defines 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: 0: First item. 4: Fifth item. -1: Last item. -3: Third to last item.
  • list with given type at index offset, given an order and pad.
  • Defines Lookup list by rank. 0 = smallest value N = Nth smallest value -1 = largest value
  • Defines Lookup list by value.
  • Defines 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: 0: First item. 4: Fifth item. -1: Last item. -3: Third to last item.
  • Defines Lookup map by key.
  • Create map with given type at map key.
  • Defines Lookup map by rank. 0 = smallest value N = Nth smallest value -1 = largest value
  • Defines Lookup map by value.