Vuo  2.0.0
Classes | Typedefs | Functions
VuoList_VuoCurveEasing.h File Reference

Description

VuoList_VuoCurveEasing C type definition.

Definition in file VuoList_VuoCurveEasing.h.

Go to the source code of this file.

Classes

struct  VuoList_VuoCurveEasing_struct
 List type. More...
 

Typedefs

typedef const struct VuoList_VuoCurveEasing_structVuoList_VuoCurveEasing
 A list of VuoCurveEasing elements. More...
 

Functions

VuoList_VuoCurveEasing VuoListCreate_VuoCurveEasing (void)
 Creates a new list of VuoCurveEasing elements. More...
 
VuoList_VuoCurveEasing VuoListCreateWithCount_VuoCurveEasing (const unsigned long count, const VuoCurveEasing value)
 Creates a new list of count instances of value. More...
 
VuoList_VuoCurveEasing VuoListCopy_VuoCurveEasing (const VuoList_VuoCurveEasing list)
 Makes a shallow copy of list — its items are retained (not copied) by the new list. More...
 
VuoCurveEasing VuoListGetValue_VuoCurveEasing (const VuoList_VuoCurveEasing list, const unsigned long index)
 Returns the VuoCurveEasing at index. More...
 
VuoCurveEasingVuoListGetData_VuoCurveEasing (const VuoList_VuoCurveEasing list)
 Returns a pointer to a C array containing the list items. More...
 
void VuoListForeach_VuoCurveEasing (const VuoList_VuoCurveEasing list, bool(^function)(const VuoCurveEasing value))
 Applies function to each of list's items, serially in order of index. More...
 
void VuoListSetValue_VuoCurveEasing (const VuoList_VuoCurveEasing list, const VuoCurveEasing value, const unsigned long index, bool expandListIfNeeded)
 Changes the VuoCurveEasing at index. More...
 
void VuoListInsertValue_VuoCurveEasing (const VuoList_VuoCurveEasing list, const VuoCurveEasing value, const unsigned long index)
 Inserts the VuoCurveEasing immediately before index. More...
 
void VuoListPrependValue_VuoCurveEasing (VuoList_VuoCurveEasing list, const VuoCurveEasing value)
 Prepends value to list. More...
 
void VuoListAppendValue_VuoCurveEasing (VuoList_VuoCurveEasing list, const VuoCurveEasing value)
 Appends value to list. More...
 
void VuoListExchangeValues_VuoCurveEasing (VuoList_VuoCurveEasing list, const unsigned long indexA, const unsigned long indexB)
 Swaps the value at indexA with the value at indexB. More...
 
void VuoListShuffle_VuoCurveEasing (VuoList_VuoCurveEasing list, const double chaos)
 Generates a random permutation of list. More...
 
void VuoListReverse_VuoCurveEasing (VuoList_VuoCurveEasing list)
 Reverses the order of the items in list. More...
 
VuoList_VuoCurveEasing VuoListSubset_VuoCurveEasing (VuoList_VuoCurveEasing 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_VuoCurveEasing (VuoList_VuoCurveEasing list)
 Removes the first value from list. More...
 
void VuoListRemoveLastValue_VuoCurveEasing (VuoList_VuoCurveEasing list)
 Removes the last value from list. More...
 
void VuoListRemoveAll_VuoCurveEasing (VuoList_VuoCurveEasing list)
 Removes all values from list. More...
 
void VuoListRemoveValue_VuoCurveEasing (VuoList_VuoCurveEasing list, const unsigned long index)
 Removes the VuoCurveEasing at index. More...
 
unsigned long VuoListGetCount_VuoCurveEasing (const VuoList_VuoCurveEasing list)
 Returns the number of elements in list. More...
 
VuoList_VuoCurveEasing VuoList_VuoCurveEasing_makeFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value. More...
 
struct json_objectVuoList_VuoCurveEasing_getJson (const VuoList_VuoCurveEasing value)
 Encodes value as a JSON object. More...
 
char * VuoList_VuoCurveEasing_getSummary (const VuoList_VuoCurveEasing value)
 Produces a brief human-readable summary of value. More...
 
VuoList_VuoCurveEasing VuoList_VuoCurveEasing_makeFromString (const char *str)
 Automatically generated function. More...
 
char * VuoList_VuoCurveEasing_getString (const VuoList_VuoCurveEasing value)
 Automatically generated function. More...