pub trait TwoSum<F>: Clone {
// Required method
fn two_sum(a: F, b: F) -> (F, F);
}Expand description
Error-free transformations of two term sums
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.