Vuo  0.4.5
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Typedefs | Functions
VuoList_VuoMIDIDevice

Description

A list of VuoMIDIDevice elements.

Typedefs

typedef void * VuoList_VuoMIDIDevice
 A list of VuoMIDIDevice elements.
 

Functions

VuoList_VuoMIDIDevice VuoListCreate_VuoMIDIDevice (void)
 Creates a new list of VuoMIDIDevice elements.
 
VuoMIDIDevice VuoListGetValueAtIndex_VuoMIDIDevice (const VuoList_VuoMIDIDevice list, const unsigned long index)
 Returns the VuoMIDIDevice at index.
 
void VuoListAppendValue_VuoMIDIDevice (VuoList_VuoMIDIDevice list, const VuoMIDIDevice value)
 Appends value to list.
 
void VuoListRemoveLastValue_VuoMIDIDevice (VuoList_VuoMIDIDevice list)
 Removes the last value from list.
 
void VuoListRemoveAll_VuoMIDIDevice (VuoList_VuoMIDIDevice list)
 Removes all values from list.
 
unsigned long VuoListGetCount_VuoMIDIDevice (const VuoList_VuoMIDIDevice list)
 Returns the number of elements in list.
 
VuoList_VuoMIDIDevice VuoList_VuoMIDIDevice_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoList_VuoMIDIDevice_stringFromValue (const VuoList_VuoMIDIDevice value)
 Serializes value as a C string.
 
VuoList_VuoMIDIDevice VuoList_VuoMIDIDevice_valueFromJson (struct json_object *js)
 Decodes the JSON object js to create a new value.
 
struct json_object * VuoList_VuoMIDIDevice_jsonFromValue (const VuoList_VuoMIDIDevice value)
 Encodes value as a JSON object.
 
char * VuoList_VuoMIDIDevice_summaryFromValue (const VuoList_VuoMIDIDevice value)
 Produces a brief human-readable summary of value.
 

Function Documentation

char* VuoList_VuoMIDIDevice_stringFromValue ( const VuoList_VuoMIDIDevice  value)

Serializes value as a C string.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)
VuoList_VuoMIDIDevice VuoList_VuoMIDIDevice_valueFromJson ( struct json_object *  js)

Decodes the JSON object js to create a new value.

Example:
["uno", "dos", "tres", "catorce"]
VuoList_VuoMIDIDevice VuoList_VuoMIDIDevice_valueFromString ( const char *  initializer)

Parses the C string initializer to create a new value.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)
VuoMIDIDevice VuoListGetValueAtIndex_VuoMIDIDevice ( const VuoList_VuoMIDIDevice  list,
const unsigned long  index 
)

Returns the VuoMIDIDevice at index.

If the list has no items, returns a default value. Attempting to access an out-of-bounds index returns the last item in the list.