assertTrue(is(TypesOf!("foo", 42U, 24, 123.0, float) == AliasSeq!(string, uint, int, double, float))); assertTrue(is(TypesOf!(null) == AliasSeq!(typeof(null)))); assertTrue(is(TypesOf!("foobar") == AliasSeq!(string))); // check for static eval static assert(is(TypesOf!("foobar") == AliasSeq!(string)));
Get's an AliasSeq of types from the given arguments