Пример #1
0
 public void RemoveIndex(string key, IndexValue indexValue)
 {
     Index.RemoveIndex(key, indexValue);
 }
Пример #2
0
 public void AddIndex(string key, IndexValue indexValue)
 {
     Index.AddIndex(key, indexValue);
 }
Пример #3
0
 public bool Filter(IndexValue indexValue)
 {
     return(true);
 }
Пример #4
0
 public IEnumerable <string> FindKeys(IndexValue indexValue)
 {
     return(Index.FindKeys(indexValue));
 }
Пример #5
0
 public bool Filter(IndexValue indexValue)
 {
     return(_values.Contains(indexValue.Value));
 }