parseJSON

Parses a serialized string and returns a tree of JSON values.

  1. JSONValue parseJSON(T json, int maxDepth, JSONOptions options)
  2. JSONValue parseJSON(T json, JSONOptions options)
    parseJSON
    (
    T
    )
    if (
    isInputRange!T &&
    !isInfinite!T
    &&
    isSomeChar!(ElementEncodingType!T)
    )

Parameters

json T

json-formatted string to parse

options JSONOptions

enable decoding string representations of NaN/Inf as float values

Throws

JSONException if the depth exceeds the max depth.

Meta