예제 #1
0
파일: SkipList.cs 프로젝트: ikvm/nesper
            public bool ContainsKey(TK key)
            {
                if (_lowerTest.Invoke(key) && _upperTest.Invoke(key))
                {
                    return(_subDictionary.ContainsKey(key));
                }

                return(false);
            }
예제 #2
0
파일: SkipList.cs 프로젝트: ikvm/nesper
 public bool Contains(TK item)
 {
     return(_parent.ContainsKey(item));
 }