Vuo  0.5.5
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions
VuoList_VuoLeapFrame

Description

A list of VuoLeapFrame elements.

Typedefs

typedef void * VuoList_VuoLeapFrame
 A list of VuoLeapFrame elements.
 

Functions

VuoList_VuoLeapFrame VuoListCreate_VuoLeapFrame (void)
 Creates a new list of VuoLeapFrame elements.
 
VuoLeapFrame VuoListGetValueAtIndex_VuoLeapFrame (const VuoList_VuoLeapFrame list, const unsigned long index)
 Returns the VuoLeapFrame at index.
 
void VuoListAppendValue_VuoLeapFrame (VuoList_VuoLeapFrame list, const VuoLeapFrame value)
 Appends value to list.
 
void VuoListRemoveLastValue_VuoLeapFrame (VuoList_VuoLeapFrame list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoLeapFrame (VuoList_VuoLeapFrame list)
 Removes all values from list.
 
unsigned long VuoListGetCount_VuoLeapFrame (const VuoList_VuoLeapFrame list)
 Returns the number of elements in list.
 
VuoList_VuoLeapFrame VuoList_VuoLeapFrame_valueFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoList_VuoLeapFrame_jsonFromValue (const VuoList_VuoLeapFrame value)
 Encodes value as a JSON object.
 
char * VuoList_VuoLeapFrame_summaryFromValue (const VuoList_VuoLeapFrame value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoLeapFrame VuoList_VuoLeapFrame_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoLeapFrame_stringFromValue (const VuoList_VuoLeapFrame value)
 Automatically generated function.
 

Typedef Documentation

A list of VuoLeapFrame elements.

Function Documentation

struct json_object* VuoList_VuoLeapFrame_jsonFromValue ( const VuoList_VuoLeapFrame  value)
read

Encodes value as a JSON object.

char* VuoList_VuoLeapFrame_stringFromValue ( const VuoList_VuoLeapFrame  value)

Automatically generated function.

char* VuoList_VuoLeapFrame_summaryFromValue ( const VuoList_VuoLeapFrame  value)

Produces a brief human-readable summary of value.

VuoList_VuoLeapFrame VuoList_VuoLeapFrame_valueFromJson ( struct json_object *  js)

Decodes the JSON object js to create a new value.

Example:
["uno", "dos", "tres", "catorce"]
VuoList_VuoLeapFrame VuoList_VuoLeapFrame_valueFromString ( const char *  str)

Automatically generated function.

void VuoListAppendValue_VuoLeapFrame ( VuoList_VuoLeapFrame  list,
const VuoLeapFrame  value 
)

Appends value to list.

VuoList_VuoLeapFrame VuoListCreate_VuoLeapFrame ( void  )

Creates a new list of VuoLeapFrame elements.

unsigned long VuoListGetCount_VuoLeapFrame ( const VuoList_VuoLeapFrame  list)

Returns the number of elements in list.

VuoLeapFrame VuoListGetValueAtIndex_VuoLeapFrame ( const VuoList_VuoLeapFrame  list,
const unsigned long  index 
)

Returns the VuoLeapFrame at index.

Index values start at 1. If the list has no items, returns a default value. Attempting to access an out-of-bounds index returns the first item in the list (if the index is 0), or last item in the list (if the index is greater than the list size).

void VuoListRemoveAll_VuoLeapFrame ( VuoList_VuoLeapFrame  list)

Removes all values from list.

void VuoListRemoveLastValue_VuoLeapFrame ( VuoList_VuoLeapFrame  list)

Removes the last value from list.