Struct unin::i18[][src]

pub struct i18(_);

The 18-bit signed integer type.

Implementations

impl i18[src]

The 18-bit signed integer type.

pub const MAX: Self[src]

pub const MIN: Self[src]

impl i18[src]

pub const fn min_value() -> Self[src]

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

pub const fn max_value() -> Self[src]

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

pub fn new(value: i32) -> Self[src]

pub const 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 num_x::*;

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 const 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 num_x::*;

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

pub const fn capacity(self) -> u32[src]

pub const fn rotate_left(self, n: u32) -> Self[src]

pub const fn rotate_right(self, n: u32) -> Self[src]

pub const fn count_ones(self) -> u32[src]

pub const fn count_zeros(self) -> u32[src]

pub const fn leading_zeros(self) -> u32[src]

pub const fn trailing_zeros(self) -> u32[src]

pub const fn reverse_bits(self) -> Self[src]

pub const fn is_power_of_two(self) -> bool[src]

Trait Implementations

impl Add<i18> for i18[src]

type Output = i18

The resulting type after applying the + operator.

impl Binary for i18[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<i18> for i18[src]

type Output = i18

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<i18> for i18[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<i18> for i18[src]

type Output = i18

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<i18> for i18[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<i18> for i18[src]

type Output = i18

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<i18> for i18[src]

impl Clone for i18[src]

impl Copy for i18[src]

impl Debug for i18[src]

impl Default for i18[src]

impl Display for i18[src]

impl Eq for i18[src]

impl From<i10> for i18[src]

impl From<i11> for i18[src]

impl From<i12> for i18[src]

impl From<i13> for i18[src]

impl From<i14> for i18[src]

impl From<i15> for i18[src]

impl From<i16> for i18[src]

impl From<i17> for i18[src]

impl From<i18> for i32[src]

impl From<i18> for i64[src]

impl From<i18> for i26[src]

impl From<i18> for i27[src]

impl From<i18> for i28[src]

impl From<i18> for i29[src]

impl From<i18> for i30[src]

impl From<i18> for i31[src]

impl From<i18> for i33[src]

impl From<i18> for i34[src]

impl From<i18> for i35[src]

impl From<i18> for i36[src]

impl From<i18> for isize[src]

impl From<i18> for i37[src]

impl From<i18> for i38[src]

impl From<i18> for i39[src]

impl From<i18> for i40[src]

impl From<i18> for i41[src]

impl From<i18> for i42[src]

impl From<i18> for i43[src]

impl From<i18> for i44[src]

impl From<i18> for i45[src]

impl From<i18> for i46[src]

impl From<i18> for i19[src]

impl From<i18> for i47[src]

impl From<i18> for i48[src]

impl From<i18> for i49[src]

impl From<i18> for i50[src]

impl From<i18> for i51[src]

impl From<i18> for i52[src]

impl From<i18> for i53[src]

impl From<i18> for i54[src]

impl From<i18> for i55[src]

impl From<i18> for i56[src]

impl From<i18> for i20[src]

impl From<i18> for i57[src]

impl From<i18> for i58[src]

impl From<i18> for i59[src]

impl From<i18> for i60[src]

impl From<i18> for i61[src]

impl From<i18> for i62[src]

impl From<i18> for i63[src]

impl From<i18> for i21[src]

impl From<i18> for i22[src]

impl From<i18> for i23[src]

impl From<i18> for i24[src]

impl From<i18> for i25[src]

impl From<i2> for i18[src]

impl From<i3> for i18[src]

impl From<i4> for i18[src]

impl From<i5> for i18[src]

impl From<i6> for i18[src]

impl From<i7> for i18[src]

impl From<i8> for i18[src]

impl From<i9> for i18[src]

impl Hash for i18[src]

impl LowerHex for i18[src]

impl Not for i18[src]

type Output = i18

The resulting type after applying the ! operator.

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

type Output = <i18 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for i18[src]

impl Ord for i18[src]

impl PartialEq<i18> for i18[src]

impl PartialOrd<i18> for i18[src]

impl<T> Shl<T> for i18 where
    i32: Shl<T, Output = i32>, 
[src]

type Output = i18

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for i18 where
    i32: ShlAssign<T>, 
[src]

impl<T> Shr<T> for i18 where
    i32: Shr<T, Output = i32>, 
[src]

type Output = i18

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for i18 where
    i32: ShrAssign<T>, 
[src]

impl Sub<i18> for i18[src]

type Output = i18

The resulting type after applying the - operator.

impl UpperHex for i18[src]

Auto Trait Implementations

impl RefUnwindSafe for i18

impl Send for i18

impl Sync for i18

impl Unpin for i18

impl UnwindSafe for i18

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.