예제 #1
0
    def _add(self, other):
        """ """
        required_not_finalized(self)
        self.terms.append(ITerm(other))

        return self.clone()
예제 #2
0
def exact_(path, value=EMPTY_VALUE):
    """ """
    term = _prepare_term_or_group(path, value=value)
    ITerm(term).set_match_type(TermMatchType.EXACT)
    return term