GitSharp.Core.DirectoryCache.DirCache.nextEntry C# (CSharp) Method

nextEntry() public method

public nextEntry ( byte p, int pLen, int nextIdx ) : int
p byte
pLen int
nextIdx int
return int
		public int nextEntry(byte[] p, int pLen, int nextIdx)
		{
			while (nextIdx < _entryCnt)
			{
				DirCacheEntry next = _sortedEntries[nextIdx];
				if (!DirCacheTree.peq(p, next.Path, pLen)) break;
				nextIdx++;
			}
			return nextIdx;
		}

Same methods

DirCache::nextEntry ( int position ) : int