[][src]Module aerospike::operations::cdt_context

Operation Context for nested Operations

Structs

CdtContext

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

ctx_list_index

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.

ctx_list_index_create

list with given type at index offset, given an order and pad.

ctx_list_rank

Defines Lookup list by rank. 0 = smallest value N = Nth smallest value -1 = largest value

ctx_list_value

Defines Lookup list by value.

ctx_map_index

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.

ctx_map_key

Defines Lookup map by key.

ctx_map_key_create

Create map with given type at map key.

ctx_map_rank

Defines Lookup map by rank. 0 = smallest value N = Nth smallest value -1 = largest value

ctx_map_value

Defines Lookup map by value.