Lucene.Net.Analysis.AR.ArabicNormalizer.Delete C# (CSharp) Method

Delete() protected method

protected Delete ( char s, int pos, int len ) : int
s char Input Buffer
pos int Position of character to delete
len int length of input buffer
return int
        protected int Delete(char[] s, int pos, int len)
        {
            if (pos < len)
                Array.Copy(s, pos + 1, s, pos, len - pos - 1); 

            return len - 1;
        }
ArabicNormalizer