(&self, other: &Self)
| 496 | |
| 497 | impl PartialEq for HigherOrderFunction { |
| 498 | fn eq(&self, other: &Self) -> bool { |
| 499 | self.func.as_ref() == other.func.as_ref() && self.args == other.args |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | /// A named reference to a lambda parameter which includes it's own [`FieldRef`], |
nothing calls this directly
no test coverage detected