May 16, 2020
On Wednesday, 14 October 2015 at 07:35:49 UTC, Marco Leise wrote:
> fast.json usage:
>
>     auto json = parseTrustedJSON(`{"x":123}`);
>
> Work with a single key from an object:
>
>     json.singleKey!"someKey"
>     json.someKey


Newbie Q: how to get the value?

---------------------------
import std.stdio;
import fast.json;

void main() {
    auto json = parseTrustedJSON(`{"x":123}`);
    writeln(json.x);  // shall I get 123 here?
}
---------------------------

core.exception.AssertError@/home/xxx/.dub/packages/fast-0.3.5/fast/source/fast/json.d(1208): Assertion failure


dmd v2.092.0

2 3 4 5 6 7 8 9 10 11 12
Next ›   Last »