This function should remain private since it may corrupt the an interval if used without caution.
(value: ScalarValue)
| 1233 | // This function should remain private since it may corrupt the an interval if |
| 1234 | // used without caution. |
| 1235 | fn prev_value(value: ScalarValue) -> ScalarValue { |
| 1236 | use ScalarValue::*; |
| 1237 | value_transition!(MIN, false, value) |
| 1238 | } |
| 1239 | |
| 1240 | trait OneTrait: Sized + std::ops::Add + std::ops::Sub { |
| 1241 | fn one() -> Self; |
no outgoing calls
no test coverage detected
searching dependent graphs…