Skip to main content

luaur_analysis/methods/
and_predicate_and_predicate.rs

1//! @interface-stub
2use 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}