compound

Returns a Compound consisting of args

compound
(
T...
)
()

Examples

auto c = compound(true, 0.5f, "hello");
assert(c[0] == true);
assert(c[1] == 0.5f);
assert(c[2] == "hello");

Meta