Vuo  2.3.2
Functions
VuoList_VuoThresholdType.cc File Reference

Description

VuoList implementation.

Definition in file VuoList_VuoThresholdType.cc.

Go to the source code of this file.

Macros

#define RETAIN(element)
 Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted. More...
 
#define RELEASE(element)
 Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted. More...
 

Functions

void VuoListDestroy_VuoThresholdType (void *list)
 Destroys the list (a VuoList_VuoThresholdType). More...
 
VuoList_VuoThresholdType VuoList_VuoThresholdType_makeFromJson (json_object *js)
 Decodes the JSON object js to create a new value. More...
 
json_objectVuoList_VuoThresholdType_getJson (const VuoList_VuoThresholdType value)
 Encodes value as a JSON object. More...
 
char * VuoList_VuoThresholdType_getSummary (const VuoList_VuoThresholdType value)
 Produces a brief human-readable summary of value. More...
 
VuoList_VuoThresholdType VuoListCreate_VuoThresholdType (void)
 Creates a new list of VuoThresholdType elements. More...
 
VuoList_VuoThresholdType VuoListCreateWithCount_VuoThresholdType (const unsigned long count, const VuoThresholdType value)
 Creates a new list of count instances of value. More...
 
VuoList_VuoThresholdType VuoListCopy_VuoThresholdType (const VuoList_VuoThresholdType list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list. More...
 
VuoThresholdType VuoListGetValue_VuoThresholdType (const VuoList_VuoThresholdType list, const unsigned long index)
 Returns the VuoThresholdType at index. More...
 
VuoThresholdTypeVuoListGetData_VuoThresholdType (const VuoList_VuoThresholdType list)
 Returns a pointer to a C array containing the list items. More...
 
void VuoListForeach_VuoThresholdType (const VuoList_VuoThresholdType list, bool(^function)(const VuoThresholdType value))
 Applies function to each of list's items, serially in order of index. More...
 
void VuoListSetValue_VuoThresholdType (const VuoList_VuoThresholdType list, const VuoThresholdType value, const unsigned long index, bool expandListIfNeeded)
 Changes the VuoThresholdType at index. More...
 
void VuoListInsertValue_VuoThresholdType (const VuoList_VuoThresholdType list, const VuoThresholdType value, const unsigned long index)
 Inserts the VuoThresholdType immediately before index. More...
 
void VuoListPrependValue_VuoThresholdType (VuoList_VuoThresholdType list, const VuoThresholdType value)
 Prepends value to list. More...
 
void VuoListAppendValue_VuoThresholdType (VuoList_VuoThresholdType list, const VuoThresholdType value)
 Appends value to list. More...
 
void VuoListExchangeValues_VuoThresholdType (VuoList_VuoThresholdType list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB. More...
 
void VuoListShuffle_VuoThresholdType (VuoList_VuoThresholdType list, const double chaos)
 Generates a random permutation of list. More...
 
void VuoListReverse_VuoThresholdType (VuoList_VuoThresholdType list)
 Reverses the order of the items in list. More...
 
VuoList_VuoThresholdType VuoListSubset_VuoThresholdType (VuoList_VuoThresholdType list, const signed long startIndex, const unsigned long itemCount)
 Returns a new list containing items from the original list in the range specified by startIndex and itemCount. More...
 
void VuoListRemoveFirstValue_VuoThresholdType (VuoList_VuoThresholdType list)
 Removes the first value from list. More...
 
void VuoListRemoveLastValue_VuoThresholdType (VuoList_VuoThresholdType list)
 Removes the last value from list. More...
 
void VuoListRemoveAll_VuoThresholdType (VuoList_VuoThresholdType list)
 Removes all values from list. More...
 
void VuoListRemoveValue_VuoThresholdType (VuoList_VuoThresholdType list, const unsigned long index)
 Removes the VuoThresholdType at index. More...
 
unsigned long VuoListGetCount_VuoThresholdType (const VuoList_VuoThresholdType list)
 Returns the number of elements in list. More...
 

Macro Definition Documentation

◆ RELEASE

#define RELEASE (   element)

Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted.

Definition at line 31 of file VuoList_VuoThresholdType.cc.

◆ RETAIN

#define RETAIN (   element)

Ignore calls to VuoRetain and VuoRelease if the element type is not reference-counted.

Definition at line 30 of file VuoList_VuoThresholdType.cc.

Function Documentation

◆ VuoListDestroy_VuoThresholdType()

void VuoListDestroy_VuoThresholdType ( void *  list)

Destroys the list (a VuoList_VuoThresholdType).

Definition at line 190 of file VuoList_VuoThresholdType.cc.