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

ClearAll() public method

Clears all bits in the map.
Doesn't necessarily lead to clearing the whole map. Clears the map up to the last bit ever set.
public ClearAll ( ) : void
return void
        public void ClearAll()
        {
            Array.Clear(flags, 0, lastDirty + 1);
        }