Vuo  1.2.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Typedefs | Functions
VuoList_VuoRange.h File Reference

Description

VuoList_VuoRange C type definition.

Classes

struct  VuoList_VuoRange_struct
 A list of VuoRange elements. More...
 

Typedefs

typedef struct
VuoList_VuoRange_struct
VuoList_VuoRange
 A list of VuoRange elements.
 

Functions

VuoList_VuoRange VuoListCreate_VuoRange (void)
 Creates a new list of VuoRange elements.
 
VuoList_VuoRange VuoListCreateWithCount_VuoRange (const unsigned long count, const VuoRange value)
 Creates a new list of count instances of value.
 
VuoList_VuoRange VuoListCopy_VuoRange (const VuoList_VuoRange list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list.
 
VuoRange VuoListGetValue_VuoRange (const VuoList_VuoRange list, const unsigned long index)
 Returns the VuoRange at index.
 
VuoRangeVuoListGetData_VuoRange (const VuoList_VuoRange list)
 Returns a pointer to a C array containing the list items.
 
void VuoListSetValue_VuoRange (const VuoList_VuoRange list, const VuoRange value, const unsigned long index, bool expandListIfNeeded)
 Changes the VuoRange at index.
 
void VuoListInsertValue_VuoRange (const VuoList_VuoRange list, const VuoRange value, const unsigned long index)
 Inserts the VuoRange immediately before index.
 
void VuoListPrependValue_VuoRange (VuoList_VuoRange list, const VuoRange value)
 Prepends value to list.
 
void VuoListAppendValue_VuoRange (VuoList_VuoRange list, const VuoRange value)
 Appends value to list.
 
void VuoListExchangeValues_VuoRange (VuoList_VuoRange list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB.
 
void VuoListShuffle_VuoRange (VuoList_VuoRange list, const double chaos)
 Generates a random permutation of list.
 
void VuoListReverse_VuoRange (VuoList_VuoRange list)
 Reverses the order of the items in list.
 
VuoList_VuoRange VuoListSubset_VuoRange (VuoList_VuoRange 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.
 
void VuoListRemoveFirstValue_VuoRange (VuoList_VuoRange list)
 Removes the first value from list.
 
void VuoListRemoveLastValue_VuoRange (VuoList_VuoRange list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoRange (VuoList_VuoRange list)
 Removes all values from list.
 
void VuoListRemoveValue_VuoRange (VuoList_VuoRange list, const unsigned long index)
 Removes the VuoRange at index.
 
unsigned long VuoListGetCount_VuoRange (const VuoList_VuoRange list)
 Returns the number of elements in list.
 
VuoList_VuoRange VuoList_VuoRange_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_objectVuoList_VuoRange_getJson (const VuoList_VuoRange value)
 Encodes value as a JSON object.
 
char * VuoList_VuoRange_getSummary (const VuoList_VuoRange value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoRange VuoList_VuoRange_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoRange_getString (const VuoList_VuoRange value)
 Automatically generated function.