Returns true if the string contains any of the specified characters, whether given individually or as a string.
import mir.test: should; assert(" hello world ".containsAny('w')); assert(!" hello world ".containsAny('W')); assert(" hello world ".containsAny('W', 'e')); assert(" hello world ".containsAny("We"));
Returns true if the string contains any of the specified characters, whether given individually or as a string.