pub struct u53(/* private fields */);
Expand description
The 53-bit unsigned integer type.
Implementations§
Source§impl u53
impl u53
Sourcepub fn min_value() -> u53
pub fn min_value() -> u53
Returns the smallest value that can be represented by this integer type.
Sourcepub fn max_value() -> u53
pub fn max_value() -> u53
Returns the largest value that can be represented by this integer type.
Sourcepub const fn new(value: u64) -> u53
pub const fn new(value: u64) -> u53
Crates a new variable
This function mainly exists as there is currently not a better way to construct these types. May be deprecated or removed if a better way to construct these types becomes available.
§Examples
Basic usage:
use ux::*;
assert_eq!(u31::new(64), u31::from(64u8));
§Panic
This function will panic if value
is not representable by this type
Sourcepub fn wrapping_sub(self, rhs: Self) -> Self
pub fn wrapping_sub(self, rhs: Self) -> Self
Wrapping (modular) subtraction. Computes self - other
,
wrapping around at the boundary of the type.
§Examples
Basic usage:
use ux::*;
assert_eq!(i5::MIN.wrapping_sub(i5::new(1)), i5::MAX);
assert_eq!(i5::new(-10).wrapping_sub(i5::new(5)), i5::new(-15));
assert_eq!(i5::new(-15).wrapping_sub(i5::new(5)), i5::new(12));
Sourcepub fn wrapping_add(self, rhs: Self) -> Self
pub fn wrapping_add(self, rhs: Self) -> Self
Wrapping (modular) addition. Computes self + other
,
wrapping around at the boundary of the type.
§Examples
Basic usage:
use ux::*;
assert_eq!(i5::MAX.wrapping_add(i5::new(1)), i5::MIN);
assert_eq!(i5::new(10).wrapping_add(i5::new(5)), i5::new(15));
assert_eq!(i5::new(15).wrapping_add(i5::new(5)), i5::new(-12));
Trait Implementations§
Source§impl BitAndAssign for u53
impl BitAndAssign for u53
Source§fn bitand_assign(&mut self, other: u53)
fn bitand_assign(&mut self, other: u53)
Performs the
&=
operation. Read moreSource§impl BitOrAssign for u53
impl BitOrAssign for u53
Source§fn bitor_assign(&mut self, other: u53)
fn bitor_assign(&mut self, other: u53)
Performs the
|=
operation. Read moreSource§impl BitXorAssign for u53
impl BitXorAssign for u53
Source§fn bitxor_assign(&mut self, other: u53)
fn bitxor_assign(&mut self, other: u53)
Performs the
^=
operation. Read moreSource§impl Ord for u53
impl Ord for u53
Source§impl PartialOrd for u53
impl PartialOrd for u53
Source§impl<T> ShlAssign<T> for u53
impl<T> ShlAssign<T> for u53
Source§fn shl_assign(&mut self, rhs: T)
fn shl_assign(&mut self, rhs: T)
Performs the
<<=
operation. Read moreSource§impl<T> ShrAssign<T> for u53
impl<T> ShrAssign<T> for u53
Source§fn shr_assign(&mut self, rhs: T)
fn shr_assign(&mut self, rhs: T)
Performs the
>>=
operation. Read moreimpl Copy for u53
impl Eq for u53
Auto Trait Implementations§
impl Freeze for u53
impl RefUnwindSafe for u53
impl Send for u53
impl Sync for u53
impl Unpin for u53
impl UnwindSafe for u53
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more