Vuo  0.4.7
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Typedefs | Functions
VuoInteger

Description

A signed 64-bit integer.

Typedefs

typedef signed long VuoInteger
 A signed 64-bit integer.
 

Functions

VuoInteger VuoInteger_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoInteger_stringFromValue (const VuoInteger value)
 Serializes value as a C string.
 
VuoInteger VuoInteger_valueFromJson (json_object *js)
 Decodes the JSON object js, expected to contain a 64-bit integer, to create a new value.
 
json_object * VuoInteger_jsonFromValue (const VuoInteger value)
 Encodes value as a JSON object.
 
char * VuoInteger_summaryFromValue (const VuoInteger value)
 Same as VuoInteger_stringFromValue() — always shows the full value, since it's guaranteed to be pretty short.
 

Function Documentation

char * VuoInteger_stringFromValue ( const VuoInteger  value)

Serializes value as a C string.

Todo:
This function body will be generated by vuo-compile (https://b33p.net/kosada/node/5521)
VuoInteger VuoInteger_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)