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

Add() public method

Adds character to the set.
is not mapped by this instance.
public Add ( char c ) : void
c char The character to be added.
return void
        public void Add(char c)
        {
            int div = c >> 5;
            flags[div] |= 0x80000000U >> (c & 0x1f);
            if (div > lastDirty)
                lastDirty = div;
        }

Same methods

CharMap::Add ( string str ) : void