std_data_json
std_data_json copied to clipboard
<= doesn't work
trafficstars
This is embarrassing. Dlang should have a highly performant, yet extremely easy to use (no type casting) JSON library.
It shouldn't be that hard, just opXXX + templates.
unittest {
JSONValue data = toJSONValue(`{"key": 5}`);
assert(data["key"] >= 4 && data["key"] <= 6)
}
Alias this could also be used.