Skip to main content

fastnum/decimal/udec/impls/ops/
add.rs

1use core::ops::{Add, AddAssign};
2
3use crate::decimal::{impls::ops::ops_impl, UnsignedDecimal};
4
5ops_impl!(UnsignedDecimal, U, Add, add, AddAssign, add_assign);