예제 #1
0
 public bool IsSubsetOf(LokiFilter other)
 {
     return(this.set.IsSubsetOf(other.set));
 }
예제 #2
0
 public LokiFilter(LokiFilter other)
 {
     this.set.UnionWith(other.set);
 }