Struct unin::i1[][src]

pub struct i1(_);

The 1-bit signed integer type.

Implementations

impl i1[src]

The 1-bit signed integer type.

pub const MAX: Self[src]

pub const MIN: Self[src]

impl i1[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: i8) -> 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<i1> for i1[src]

type Output = i1

The resulting type after applying the + operator.

impl Binary for i1[src]

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

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

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAnd<i1> for i1[src]

type Output = i1

The resulting type after applying the & operator.

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

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

The resulting type after applying the & operator.

impl BitAndAssign<i1> for i1[src]

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

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

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOr<i1> for i1[src]

type Output = i1

The resulting type after applying the | operator.

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

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

The resulting type after applying the | operator.

impl BitOrAssign<i1> for i1[src]

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

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

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXor<i1> for i1[src]

type Output = i1

The resulting type after applying the ^ operator.

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

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

The resulting type after applying the ^ operator.

impl BitXorAssign<i1> for i1[src]

impl Clone for i1[src]

impl Copy for i1[src]

impl Debug for i1[src]

impl Default for i1[src]

impl Display for i1[src]

impl Eq for i1[src]

impl Hash for i1[src]

impl LowerHex for i1[src]

impl Not for i1[src]

type Output = i1

The resulting type after applying the ! operator.

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

type Output = <i1 as Not>::Output

The resulting type after applying the ! operator.

impl Octal for i1[src]

impl Ord for i1[src]

impl PartialEq<i1> for i1[src]

impl PartialOrd<i1> for i1[src]

impl<T> Shl<T> for i1 where
    i8: Shl<T, Output = i8>, 
[src]

type Output = i1

The resulting type after applying the << operator.

impl<T> ShlAssign<T> for i1 where
    i8: ShlAssign<T>, 
[src]

impl<T> Shr<T> for i1 where
    i8: Shr<T, Output = i8>, 
[src]

type Output = i1

The resulting type after applying the >> operator.

impl<T> ShrAssign<T> for i1 where
    i8: ShrAssign<T>, 
[src]

impl Sub<i1> for i1[src]

type Output = i1

The resulting type after applying the - operator.

impl UpperHex for i1[src]

Auto Trait Implementations

impl RefUnwindSafe for i1

impl Send for i1

impl Sync for i1

impl Unpin for i1

impl UnwindSafe for i1

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.