ExpandPrime() public static method

public static ExpandPrime ( int oldSize ) : int
oldSize int
return int
コード例 #1
0
ファイル: HashTable.cs プロジェクト: ARLM-Attic/cs-native
        private void expand()
        {
            int rawsize = HashHelpers.ExpandPrime(buckets.Length);

            rehash(rawsize, false);
        }