Vuo  0.4.4
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Typedefs | Functions
VuoBoolean.h File Reference

Description

vuo.boolean C type definition.

Typedefs

typedef signed long VuoBoolean
 A Boolean.
 

Functions

VuoBoolean VuoBoolean_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoBoolean_stringFromValue (const VuoBoolean value)
 Serializes value as a C string.
 
VuoBoolean VuoBoolean_valueFromJson (json_object *js)
 Decodes the JSON object js, expected to contain a boolean, to create a new VuoBoolean.
 
json_object * VuoBoolean_jsonFromValue (const VuoBoolean value)
 Encodes value as a JSON object.
 
char * VuoBoolean_summaryFromValue (const VuoBoolean value)
 Same as VuoBoolean_stringFromValue() — always shows the full value, since it's guaranteed to be pretty short.