Aliases itself to T[0] if cond is $(D_KEYWORD true), to T[1] if $(D_KEYWORD false).
Template predicate.
Two arguments.
T[0] if cond is $(D_KEYWORD true), T[1] otherwise.
static assert(is(Select!(true, int, float) == int)); static assert(is(Select!(false, int, float) == float));
See Implementation
Aliases itself to T[0] if cond is $(D_KEYWORD true), to T[1] if $(D_KEYWORD false).