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