JSONValue.opIndexAssign

Undocumented in source. Be warned that the author may not have intended to support it.
  1. void opIndexAssign(T value, string key)
  2. void opIndexAssign(T arg, size_t i)
    struct JSONValue
    void
    opIndexAssign
    (
    T
    )
    (
    T arg
    ,
    size_t i
    )

Examples

JSONValue j = JSONValue( ["Perl", "C"] );
j[1].str = "D";
assert( j[1].str == "D" );

Meta