View source code
Display the source code in std/json.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function std.json.JSONValue.boolean

Value getter/setter for boolean stored in JSON.

bool boolean() pure @property @safe const;

bool boolean (
  bool v
) pure nothrow @property @nogc @safe;

Throws

JSONException for read access if this.type is not JSONType.true_ or JSONType.false_.

Example

JSONValue j = true;
writeln(j.boolean); // true

j.boolean = false;
writeln(j.boolean); // false

j.integer = 12;
import std.exception : assertThrown;
assertThrown!JSONException(j.boolean);

Authors

Jeremie Pelletier, David Herberth

License

Boost License 1.0.