YYJSON_READ_NOFLAG

Constant YYJSON_READ_NOFLAG 

Source
pub const YYJSON_READ_NOFLAG: yyjson_read_flag = 0;
Expand description

Default option (RFC 8259 compliant):

  • Read positive integer as uint64_t.
  • Read negative integer as int64_t.
  • Read floating-point number as double with round-to-nearest mode.
  • Read integer which cannot fit in uint64_t or int64_t as double.
  • Report error if double number is infinity.
  • Report error if string contains invalid UTF-8 character or BOM.
  • Report error on trailing commas, comments, inf and nan literals.