Vuo  2.3.2
Classes | Typedefs | Functions
VuoList_VuoThresholdType.h File Reference

Description

VuoList_VuoThresholdType C type definition.

Definition in file VuoList_VuoThresholdType.h.

Go to the source code of this file.

Classes

struct  VuoList_VuoThresholdType_struct
 List type. More...
 

Typedefs

typedef const struct VuoList_VuoThresholdType_structVuoList_VuoThresholdType
 A list of VuoThresholdType elements. More...
 

Functions

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...
 
VuoList_VuoThresholdType VuoList_VuoThresholdType_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value. More...
 
struct 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 VuoList_VuoThresholdType_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoList_VuoThresholdType_getString (const VuoList_VuoThresholdType value)
 Automatically generated function. More...