Returns a Compound consisting of args
auto c = compound(true, 0.5f, "hello"); assert(c[0] == true); assert(c[1] == 0.5f); assert(c[2] == "hello");
See Implementation
Returns a Compound consisting of args