[][src]Struct core_ux::i67

pub struct i67(_);

The 67-bit signed integer type.

Implementations

impl i67[src]

The 67-bit signed integer type.

pub const MAX: Self[src]

pub const MIN: Self[src]

impl i67[src]

pub fn min_value() -> i67[src]

Returns the smallest value that can be represented by this integer type.

pub fn max_value() -> i67[src]

Returns the largest value that can be represented by this integer type.

pub fn new(value: i128) -> i67[src]

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

pub fn wrapping_sub(self, rhs: Self) -> Self[src]

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));

pub fn wrapping_add(self, rhs: Self) -> Self[src]

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

impl Add<i67> for i67[src]

type Output = i67

The resulting type after applying the + operator.

impl Binary for i67[src]

impl<'a> BitAnd<&'a i67> for i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the & operator.

impl<'a> BitAnd<&'a i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the & operator.

impl BitAnd<i67> for i67[src]

type Output = i67

The resulting type after applying the & operator.

impl<'a> BitAnd<i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the & operator.

impl BitAndAssign<i67> for i67[src]

impl<'a> BitOr<&'a i67> for i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the | operator.

impl<'a> BitOr<&'a i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the | operator.

impl BitOr<i67> for i67[src]

type Output = i67

The resulting type after applying the | operator.

impl<'a> BitOr<i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the | operator.

impl BitOrAssign<i67> for i67[src]

impl<'a> BitXor<&'a i67> for i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the ^ operator.

impl<'a> BitXor<&'a i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the ^ operator.

impl BitXor<i67> for i67[src]

type Output = i67

The resulting type after applying the ^ operator.

impl<'a> BitXor<i67> for &'a i67[src]

type Output = <i67 as BitOr<i67>>::Output

The resulting type after applying the ^ operator.

impl BitXorAssign<i67> for i67[src]

impl Clone for i67[src]

impl Copy for i67[src]

impl Debug for i67[src]

impl Default for i67[src]

impl Display for i67[src]

impl Eq for i67[src]

impl Hash for i67[src]

impl LowerHex for i67[src]

impl Not for i67[src]

type Output = i67

The resulting type after applying the ! operator.

impl<'a> Not for &'a i67[src]

type Output = <i67 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for i67[src]

impl Ord for i67[src]

impl PartialEq<i67> for i67[src]

impl PartialOrd<i67> for i67[src]

impl<T> Shl<T> for i67 where
    i128: Shl<T, Output = i128>, 
[src]

type Output = i67

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for i67 where
    i128: ShlAssign<T>, 
[src]

impl<T> Shr<T> for i67 where
    i128: Shr<T, Output = i128>, 
[src]

type Output = i67

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for i67 where
    i128: ShrAssign<T>, 
[src]

impl Sub<i67> for i67[src]

type Output = i67

The resulting type after applying the - operator.

impl UpperHex for i67[src]

Auto Trait Implementations

impl Send for i67[src]

impl Sync for i67[src]

impl Unpin for i67[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.