コード例 #1
0
 void StandardChars<char16>::SetNonNewline(ArenaAllocator* setAllocator, CharSet<Char> &set)
 {
     set.SetNotRanges(setAllocator, numNewlinePairs, newlineStr);
 }
コード例 #2
0
 void StandardChars<char16>::SetNonWhitespace(ArenaAllocator* setAllocator, CharSet<Char> &set)
 {
     set.SetNotRanges(setAllocator, numWhitespacePairs, whitespaceStr);
 }
コード例 #3
0
 void StandardChars<char16>::SetNonWordChars(ArenaAllocator* setAllocator, CharSet<Char> &set)
 {
     set.SetNotRanges(setAllocator, numWordPairs, wordStr);
 }
コード例 #4
0
 void StandardChars<char16>::SetNonDigits(ArenaAllocator* setAllocator, CharSet<Char> &set)
 {
     set.SetNotRanges(setAllocator, numDigitPairs, digitStr);
 }