Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsCharBitSet()

static unsafe bool System.String.IsCharBitSet ( uint * charMap,
byte value )
inlinestaticprivate

Definition at line 3372 of file String.cs.

3373 {
3374 return (charMap[(uint)(value & 7)] & (uint)(1 << (value >> 3))) != 0;
3375 }

References System.value.

Referenced by System.String.IndexOfCharArray(), System.String.LastIndexOfCharArray(), and System.String.MakeSeparatorList().