Loading...
Searching...
No Matches
utils.h File Reference
+ Include dependency graph for utils.h:

Go to the source code of this file.

Typedefs

typedef std::optional< JsValueJsOptionalValue
 

Functions

JS_API JsOptionalValue JsFindValue (const JsObject &object, const std::string &key, const JsOptionalValue &defaultValue=std::nullopt)
 Returns the value associated with key in the given object.
 

Typedef Documentation

◆ JsOptionalValue

typedef std::optional<JsValue> JsOptionalValue

Definition at line 38 of file utils.h.

Function Documentation

◆ JsFindValue()

JS_API JsOptionalValue JsFindValue ( const JsObject &  object,
const std::string &  key,
const JsOptionalValue &  defaultValue = std::nullopt 
)

Returns the value associated with key in the given object.

If no such key exists, and the supplied default is not supplied, this method returns an uninitialized optional JsValue. Otherwise, the defaultValue is returned.