ext-ops
Copyright (c) 2023 Martin Mills [daggerbot@gmail.com]
General purpose arithmetic operator traits for Rust which are missing from the standard library.
The name ext-ops is short for "extension operators."
This crate is intended to address shortcomings in parts of the num-traits crate:
- The
Try*traits provided byext-opsreturn aResultinstead of anOption, so arithmetic errors can be propagated with the?operator. ext-opstraits do not require operands to be references. This allows for optimizations that may not be possible usingnum-traits, such as consuming aBigIntoperand instead of constructing a new one.ext-opstraits do not have trait constraints. For example,TryAddcan be implemented for a type that does not implementAdd.
At the time of writing, some expected traits may not be implemented for some types or even defined at all. This is because it has not yet been decided which of multiple possible behaviors is best. Feel free to open an issue if something you desire is missing.