Searched refs:onlyOneOf (Results 1 – 2 of 2) sorted by relevance
2315 auto onlyOneOf = lower ~ ascii; variable2316 assert(!onlyOneOf['Δ']); // not ASCII and not lowercase2317 assert(onlyOneOf['$']); // ASCII and not lowercase2318 assert(!onlyOneOf['a']); // ASCII and lowercase2319 assert(onlyOneOf['я']); // not ASCII but lowercase
2298 auto onlyOneOf = lower ~ ascii;2299 assert(!onlyOneOf['Δ']); // not ASCII and not lowercase2300 assert(onlyOneOf['$']); // ASCII and not lowercase2301 assert(!onlyOneOf['a']); // ASCII and lowercase2302 assert(onlyOneOf['я']); // not ASCII but lowercase