Joel Parker Henderson
Joel Parker Henderson
Completed these: * assert_ok etc. * assert_err etc. * assert_some etc. * assert_none * assert_ready etc. * assert_pending I have assert_len on the roadmap. Thanks!
Are you saying something like this? ```rust assert_lt_by!(a, b, c) => (b - a) < c ``` If so, what do you think of the word "delta" because it can...
Yes you're right. There will need to be a checked delta and it will need to returns a flow error. I'll do it. E.t.a. 1-2 weeks.
Update for you... The new macros `assert_diff` are ready on the main branch if you want to see them: https://github.com/SixArm/assertables-rust-crate/tree/main/src/assert_diff The macros `assert_abs_diff` are now updated with overflow detection: https://github.com/SixArm/assertables-rust-crate/tree/main/src/assert_abs_diff...
Released. When convenient, can you upgrade to version 9.5.0, and try the new macros `assert_diff_eq_x` and `assert_abs_diff_eq_x` and let me know if they work the way you want?