// SPDX-License-Identifier: MIT
// Copyright 2024 IROX Contributors
//
///
/// Wrapping (modular) addition. Computes `self + rhs`, wrapping around at the boundary of the type.
///
/// Wrapping (modular) subtraction. Computes `self - rhs`, wrapping around at the boundary of the type.
///
/// Wrapping (modular) multiplication. Computes `self * rhs`, wrapping around at the boundary of the type.