BplusDotNet.xBplusTreeBytes.ContainsKey C# (CSharp) Method

ContainsKey() public method

public ContainsKey ( string key ) : bool
key string
return bool
        public bool ContainsKey(string key)
        {
            xBucket bucket;
            string prefix;
            bool found = FindBucketForPrefix(key, out bucket, out prefix, false);
            if (!found)
            {
                return false;
            }
            byte[] map;
            return bucket.Find(key, out map);
        }