Exemple #1
0
 public bool matches(ItemToMatch item)
 {
     return(!to_negate.matches(item));
 }
Exemple #2
0
 public bool matches(ItemToMatch item)
 {
     return(left_side.matches(item) || right_side.matches(item));
 }
Exemple #3
0
        public bool matches(ItemToMatch item)
        {
            var value = get_the_value(item);

            return(value_criteria.matches(value));
        }