Vuo  1.0.1
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Typedefs | Functions
VuoList_VuoFileType.h File Reference

Description

VuoList_VuoFileType C type definition.

Classes

struct  VuoList_VuoFileType_struct
 A list of VuoFileType elements. More...
 

Typedefs

typedef struct
VuoList_VuoFileType_struct
VuoList_VuoFileType
 A list of VuoFileType elements.
 

Functions

VuoList_VuoFileType VuoListCreate_VuoFileType (void)
 Creates a new list of VuoFileType elements.
 
VuoList_VuoFileType VuoListCopy_VuoFileType (const VuoList_VuoFileType list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list.
 
VuoFileType VuoListGetValue_VuoFileType (const VuoList_VuoFileType list, const unsigned long index)
 Returns the VuoFileType at index.
 
void VuoListSetValue_VuoFileType (const VuoList_VuoFileType list, const VuoFileType value, const unsigned long index)
 Changes the VuoFileType at index.
 
void VuoListInsertValue_VuoFileType (const VuoList_VuoFileType list, const VuoFileType value, const unsigned long index)
 Inserts the VuoFileType immediately before index.
 
void VuoListPrependValue_VuoFileType (VuoList_VuoFileType list, const VuoFileType value)
 Prepends value to list.
 
void VuoListAppendValue_VuoFileType (VuoList_VuoFileType list, const VuoFileType value)
 Appends value to list.
 
void VuoListExchangeValues_VuoFileType (VuoList_VuoFileType list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB.
 
void VuoListShuffle_VuoFileType (VuoList_VuoFileType list, const double chaos)
 Generates a random permutation of list.
 
void VuoListReverse_VuoFileType (VuoList_VuoFileType list)
 Reverses the order of the items in list.
 
void VuoListCut_VuoFileType (VuoList_VuoFileType list, const signed long startIndex, const unsigned long itemCount)
 Removes items from the list except those in the range specified by startIndex and itemCount.
 
void VuoListRemoveFirstValue_VuoFileType (VuoList_VuoFileType list)
 Removes the first value from list.
 
void VuoListRemoveLastValue_VuoFileType (VuoList_VuoFileType list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoFileType (VuoList_VuoFileType list)
 Removes all values from list.
 
void VuoListRemoveValue_VuoFileType (VuoList_VuoFileType list, const unsigned long index)
 Removes the VuoFileType at index.
 
unsigned long VuoListGetCount_VuoFileType (const VuoList_VuoFileType list)
 Returns the number of elements in list.
 
VuoList_VuoFileType VuoList_VuoFileType_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoList_VuoFileType_getJson (const VuoList_VuoFileType value)
 Encodes value as a JSON object.
 
char * VuoList_VuoFileType_getSummary (const VuoList_VuoFileType value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoFileType VuoList_VuoFileType_makeFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoFileType_getString (const VuoList_VuoFileType value)
 Automatically generated function.