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

Description

A floating-point number.

Typedefs

typedef double VuoReal
 A floating-point number.
 

Functions

VuoReal VuoReal_valueFromString (const char *initializer)
 Parses the C string initializer to create a new value.
 
char * VuoReal_stringFromValue (const VuoReal value)
 Serializes value as a C string.
 
json_object * VuoReal_jsonFromValue (const VuoReal value)
 Encodes value as a JSON object.
 
char * VuoReal_summaryFromValue (const VuoReal value)
 Returns a string representation of value (either decimal or scientific notation, whichever is shorter).
 
VuoReal VuoReal_valueFromJson (struct json_object *js)
 Decodes the JSON object js, expected to contain a double, to create a new value.
 

Function Documentation

char * VuoReal_stringFromValue ( const VuoReal  value)

Serializes value as a C string.

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