Pchp.Library.CharMap.Contains C# (CSharp) Method

Contains() public method

Retrieves whether a character belongs to the set.
is not mapped by this instance.
public Contains ( char c ) : bool
c char The character to be tested.
return bool
        public bool Contains(char c)
        {
            int div = c >> 5;
            return div <= lastDirty && (flags[div] & (0x80000000U >> (c & 0x1f))) != 0;
        }