Skip to content
Ilya Kapitonau edited this page Aug 5, 2021 · 2 revisions

Env::DocAddNum64

void DocAddNum64(const char* szID, uint64_t val);

Emits 64-bit integer JSON field with name szID and value val

Parameters

  • szID : 0-terminated string, the name of the field
  • val : the value

Return value

  • none

Notes

  • none

Example

DocAddNum64("int_field", 42);

result

 "int_field" : 42
Clone this wiki locally