Value.remove

Has key

  1. void remove(in string key)
  2. void remove(Value key)
    struct Value
    @safe
    void
    remove
    nothrow

Examples

ditto

auto v1 = Value(["a":1, "b":2]);
v1.remove("b");
assert(v1 == Value(["a":1]));

Meta