Array-specialization of any with element needle.
assert(!"".any('a')); // matches behaviour of `std.algorithm.searching.any` assert("aaa".any('a')); assert("aa_".any('a')); assert(!"_".any('a'));
See Implementation
Array-specialization of any with element needle.