Vuo  0.6.0
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Typedefs | Functions
VuoList_VuoLeapPointableType

Description

A list of VuoLeapPointableType elements.

Typedefs

typedef void * VuoList_VuoLeapPointableType
 A list of VuoLeapPointableType elements.
 

Functions

VuoList_VuoLeapPointableType VuoListCreate_VuoLeapPointableType (void)
 Creates a new list of VuoLeapPointableType elements.
 
VuoLeapPointableType VuoListGetValueAtIndex_VuoLeapPointableType (const VuoList_VuoLeapPointableType list, const unsigned long index)
 Returns the VuoLeapPointableType at index.
 
void VuoListAppendValue_VuoLeapPointableType (VuoList_VuoLeapPointableType list, const VuoLeapPointableType value)
 Appends value to list.
 
void VuoListRemoveLastValue_VuoLeapPointableType (VuoList_VuoLeapPointableType list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoLeapPointableType (VuoList_VuoLeapPointableType list)
 Removes all values from list.
 
unsigned long VuoListGetCount_VuoLeapPointableType (const VuoList_VuoLeapPointableType list)
 Returns the number of elements in list.
 
VuoList_VuoLeapPointableType VuoList_VuoLeapPointableType_valueFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoList_VuoLeapPointableType_jsonFromValue (const VuoList_VuoLeapPointableType value)
 Encodes value as a JSON object.
 
char * VuoList_VuoLeapPointableType_summaryFromValue (const VuoList_VuoLeapPointableType value)
 Produces a brief human-readable summary of value.
 
VuoList_VuoLeapPointableType VuoList_VuoLeapPointableType_valueFromString (const char *str)
 Automatically generated function.
 
char * VuoList_VuoLeapPointableType_stringFromValue (const VuoList_VuoLeapPointableType value)
 Automatically generated function.
 

Typedef Documentation

A list of VuoLeapPointableType elements.

Function Documentation

struct json_object* VuoList_VuoLeapPointableType_jsonFromValue ( const VuoList_VuoLeapPointableType  value)
read

Encodes value as a JSON object.

char* VuoList_VuoLeapPointableType_stringFromValue ( const VuoList_VuoLeapPointableType  value)

Automatically generated function.

char* VuoList_VuoLeapPointableType_summaryFromValue ( const VuoList_VuoLeapPointableType  value)

Produces a brief human-readable summary of value.

VuoList_VuoLeapPointableType VuoList_VuoLeapPointableType_valueFromJson ( struct json_object *  js)

Decodes the JSON object js to create a new value.

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

Automatically generated function.

void VuoListAppendValue_VuoLeapPointableType ( VuoList_VuoLeapPointableType  list,
const VuoLeapPointableType  value 
)

Appends value to list.

VuoList_VuoLeapPointableType VuoListCreate_VuoLeapPointableType ( void  )

Creates a new list of VuoLeapPointableType elements.

unsigned long VuoListGetCount_VuoLeapPointableType ( const VuoList_VuoLeapPointableType  list)

Returns the number of elements in list.

VuoLeapPointableType VuoListGetValueAtIndex_VuoLeapPointableType ( const VuoList_VuoLeapPointableType  list,
const unsigned long  index 
)

Returns the VuoLeapPointableType 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_VuoLeapPointableType ( VuoList_VuoLeapPointableType  list)

Removes all values from list.

void VuoListRemoveLastValue_VuoLeapPointableType ( VuoList_VuoLeapPointableType  list)

Removes the last value from list.