1pub trait IsIn<A> { 2 type ReturnOperand; 3 4 fn is_in(&self, argument: A) -> Self::ReturnOperand; 5}