pub trait NegLogic { type Output; // Required method fn neg(self) -> Self::Output; }
Trait for negation (unary -) in logic code.
-
logic