tibasTupleList_Get()

Returns the tuple stored at position index in the list.

Declaration

tibas_status tibasTupleList_Get(
    tibasTupleList tupleList,
    tibasTuple*    tuple,
    tibas_int      index) )

Parameters

Parameter Description
tupleList Specify the tuple list form which you want to return a tuple.
tuple The tuple returned by the operation.
index The position index of the tuple to be returned by the operation.

Remarks

Use the tibasTupleList_Get() function to return a tuple that is at a specified index position in a specified tuple list.

Before you call tibasTupleList_Get(), call tibasTupleList_Size() to determine the size of the list. The value that you specify with the index parameter should not be larger than the size of the list.