pub trait ValidateJustArgs: Send + Sync {
// Required method
fn validate(&self, arg_values: &[Term]) -> Result<(), SignatureError>;
}
Expand description
Trait for validating type arguments to a PolyFuncTypeRV
beyond conformation to
declared type parameter (which should have been checked beforehand), given just the arguments.