pub struct NonZero<T: Zero>(/* private fields */);
Expand description
Wrapper type for non-zero integers.
Implementations§
Source§impl<T> NonZero<T>
impl<T> NonZero<T>
Sourcepub fn from_be_bytes(bytes: T::Repr) -> CtOption<Self>
pub fn from_be_bytes(bytes: T::Repr) -> CtOption<Self>
Decode from big endian bytes.
Sourcepub fn from_le_bytes(bytes: T::Repr) -> CtOption<Self>
pub fn from_le_bytes(bytes: T::Repr) -> CtOption<Self>
Decode from little endian bytes.
Source§impl<T> NonZero<T>where
T: ArrayEncoding + Zero,
impl<T> NonZero<T>where
T: ArrayEncoding + Zero,
Sourcepub fn from_be_byte_array(bytes: ByteArray<T>) -> CtOption<Self>
pub fn from_be_byte_array(bytes: ByteArray<T>) -> CtOption<Self>
Decode a non-zero integer from big endian bytes.
Sourcepub fn from_le_byte_array(bytes: ByteArray<T>) -> CtOption<Self>
pub fn from_le_byte_array(bytes: ByteArray<T>) -> CtOption<Self>
Decode a non-zero integer from big endian bytes.
Source§impl NonZero<Limb>
impl NonZero<Limb>
Sourcepub const fn from_u8(n: NonZeroU8) -> Self
pub const fn from_u8(n: NonZeroU8) -> Self
Create a NonZero<Limb>
from a NonZeroU8
(const-friendly)
Sourcepub const fn from_u16(n: NonZeroU16) -> Self
pub const fn from_u16(n: NonZeroU16) -> Self
Create a NonZero<Limb>
from a NonZeroU16
(const-friendly)
Sourcepub const fn from_u32(n: NonZeroU32) -> Self
pub const fn from_u32(n: NonZeroU32) -> Self
Create a NonZero<Limb>
from a NonZeroU32
(const-friendly)
Sourcepub const fn from_u64(n: NonZeroU64) -> Self
pub const fn from_u64(n: NonZeroU64) -> Self
Create a NonZero<Limb>
from a NonZeroU64
(const-friendly)
Source§impl<const LIMBS: usize> NonZero<UInt<LIMBS>>
impl<const LIMBS: usize> NonZero<UInt<LIMBS>>
Sourcepub const fn from_uint(n: UInt<LIMBS>) -> Self
pub const fn from_uint(n: UInt<LIMBS>) -> Self
Create a NonZero<UInt>
from a UInt
(const-friendly)
Sourcepub const fn from_u8(n: NonZeroU8) -> Self
pub const fn from_u8(n: NonZeroU8) -> Self
Create a NonZero<UInt>
from a NonZeroU8
(const-friendly)
Sourcepub const fn from_u16(n: NonZeroU16) -> Self
pub const fn from_u16(n: NonZeroU16) -> Self
Create a NonZero<UInt>
from a NonZeroU16
(const-friendly)
Sourcepub const fn from_u32(n: NonZeroU32) -> Self
pub const fn from_u32(n: NonZeroU32) -> Self
Create a NonZero<UInt>
from a NonZeroU32
(const-friendly)
Sourcepub const fn from_u64(n: NonZeroU64) -> Self
pub const fn from_u64(n: NonZeroU64) -> Self
Create a NonZero<UInt>
from a NonZeroU64
(const-friendly)
Sourcepub const fn from_u128(n: NonZeroU128) -> Self
pub const fn from_u128(n: NonZeroU128) -> Self
Create a NonZero<UInt>
from a NonZeroU128
(const-friendly)
Trait Implementations§
Source§impl<T> ConditionallySelectable for NonZero<T>where
T: ConditionallySelectable + Zero,
impl<T> ConditionallySelectable for NonZero<T>where
T: ConditionallySelectable + Zero,
Source§fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self
Source§fn conditional_assign(&mut self, other: &Self, choice: Choice)
fn conditional_assign(&mut self, other: &Self, choice: Choice)
Source§fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)
self
and other
if choice == 1
; otherwise,
reassign both unto themselves. Read more