Box Space
static assert(isSpace!Box); auto s = `{ "name": "Box", "shape": [2], "high": [1.0, 2.0], "low": [0.0, 0.0] }`; auto j = s.parseJSON; assert(Box.from(j) == Box([2], [1.0, 2.0], [0.0, 0.0]));
See Implementation
Box Space