public void RemoveIndex(string key, IndexValue indexValue) { Index.RemoveIndex(key, indexValue); }
public void AddIndex(string key, IndexValue indexValue) { Index.AddIndex(key, indexValue); }
public bool Filter(IndexValue indexValue) { return(true); }
public IEnumerable <string> FindKeys(IndexValue indexValue) { return(Index.FindKeys(indexValue)); }
public bool Filter(IndexValue indexValue) { return(_values.Contains(indexValue.Value)); }