[][src]Macro ijson::ijson

macro_rules! ijson {
    ($($json:tt)+) => { ... };
}

Construct an IValue using familiar JSON syntax.

For example:

use ijson::{ijson, IValue};

let _: IValue = ijson!({ "foo": null, "bar": [1, 2, 3, 4] });