Deprecated: use NotInDelta instead.
(value, delta float64)
| 300 | |
| 301 | // Deprecated: use NotInDelta instead. |
| 302 | func (n *Number) NotEqualDelta(value, delta float64) *Number { |
| 303 | return n.NotInDelta(value, delta) |
| 304 | } |
| 305 | |
| 306 | // InDeltaRelative succeeds if two numbers are within relative delta of each other. |
| 307 | // |
nothing calls this directly
no test coverage detected