luaur_analysis/methods/
and_predicate_and_predicate.rs1use crate::records::and_predicate::AndPredicate;
3use crate::type_aliases::predicate_vec::PredicateVec;
4
5impl AndPredicate {
6 pub fn new(lhs: PredicateVec, rhs: PredicateVec) -> Self {
7 AndPredicate { lhs, rhs }
8 }
9}