Looks for T in L and returns $(D_KEYWORD true) if it could be found and $(D_KEYWORD false) otherwise.
$(D_KEYWORD true) if T can be found in L, $(D_KEYWORD false) otherwise.
static assert(!canFind!(int)); static assert(canFind!(int, int)); static assert(canFind!(int, float, double, int, real)); static assert(canFind!(3, () {}, uint, 5, 3));
See Implementation
Looks for T in L and returns $(D_KEYWORD true) if it could be found and $(D_KEYWORD false) otherwise.