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

Remove() public method

Removes character from the set.
is not mapped by this instance.
public Remove ( char c ) : void
c char The character to be removed.
return void
        public void Remove(char c)
        {
            flags[c >> 5] &= ~(0x80000000U >> (c & 0x1f));
        }