Extract an array from a JSONValue.
Convert a json array into an array.
auto a = [ 1, 2, 3 ]; assert(JSONValue(a).fromJSON!(int[]) == a);
See Implementation
Extract an array from a JSONValue.