Exemple #1
0
        public bool Contains(string value)
        {
            var hash = HashFunction.Hash(value);

            return(_table[hash] != null && _table[hash].Contains(value));
        }