We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The std::cmp::FuzzyEq trait should have a function that accepts a user defined epsilon value. I'm thinking something like:
std::cmp::FuzzyEq
pub trait FuzzyEq { pure fn fuzzy_eq(other: &self) -> bool; pure fn fuzzy_eq_eps(other: &self, epsilon: &self) -> bool; }