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

Description

VuoList_VuoBoolean C type definition.

Classes

struct  VuoList_VuoBoolean_struct
 A list of VuoBoolean elements. More...
 

Typedefs

typedef struct
VuoList_VuoBoolean_struct
VuoList_VuoBoolean
 A list of VuoBoolean elements.
 

Functions

VuoList_VuoBoolean VuoListCreate_VuoBoolean (void)
 Creates a new list of VuoBoolean elements.
 
VuoList_VuoBoolean VuoListCreateWithCount_VuoBoolean (const unsigned long count, const VuoBoolean value)
 Creates a new list of count instances of value.
 
VuoList_VuoBoolean VuoListCopy_VuoBoolean (const VuoList_VuoBoolean list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list.
 
VuoBoolean VuoListGetValue_VuoBoolean (const VuoList_VuoBoolean list, const unsigned long index)
 Returns the VuoBoolean at index.
 
VuoBooleanVuoListGetData_VuoBoolean (const VuoList_VuoBoolean list)
 Returns a pointer to a C array containing the list items.
 
void VuoListSetValue_VuoBoolean (const VuoList_VuoBoolean list, const VuoBoolean value, const unsigned long index, bool expandListIfNeeded)
 Changes the VuoBoolean at index.
 
void VuoListInsertValue_VuoBoolean (const VuoList_VuoBoolean list, const VuoBoolean value, const unsigned long index)
 Inserts the VuoBoolean immediately before index.
 
void VuoListPrependValue_VuoBoolean (VuoList_VuoBoolean list, const VuoBoolean value)
 Prepends value to list.
 
void VuoListAppendValue_VuoBoolean (VuoList_VuoBoolean list, const VuoBoolean value)
 Appends value to list.
 
void VuoListExchangeValues_VuoBoolean (VuoList_VuoBoolean list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB.
 
void VuoListShuffle_VuoBoolean (VuoList_VuoBoolean list, const double chaos)
 Generates a random permutation of list.
 
void VuoListReverse_VuoBoolean (VuoList_VuoBoolean list)
 Reverses the order of the items in list.
 
VuoList_VuoBoolean VuoListSubset_VuoBoolean (VuoList_VuoBoolean 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_VuoBoolean (VuoList_VuoBoolean list)
 Removes the first value from list.
 
void VuoListRemoveLastValue_VuoBoolean (VuoList_VuoBoolean list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoBoolean (VuoList_VuoBoolean list)
 Removes all values from list.
 
void VuoListRemoveValue_VuoBoolean (VuoList_VuoBoolean list, const unsigned long index)
 Removes the VuoBoolean at index.
 
unsigned long VuoListGetCount_VuoBoolean (const VuoList_VuoBoolean list)
 Returns the number of elements in list.
 
VuoList_VuoBoolean VuoList_VuoBoolean_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_objectVuoList_VuoBoolean_getJson (const VuoList_VuoBoolean value)
 Encodes value as a JSON object.
 
char * VuoList_VuoBoolean_getSummary (const VuoList_VuoBoolean value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoBoolean VuoList_VuoBoolean_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoBoolean_getString (const VuoList_VuoBoolean value)
 Automatically generated function.