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