pub struct Posit16(/* private fields */);Implementations§
Source§impl Posit16
impl Posit16
pub const ZERO: Posit16
pub const NAR: Posit16
pub const fn to_u16(&self) -> u16
👎Deprecated since 1.5.3:
use into
pub const fn into_u16(self) -> u16
pub fn is_nar(&self) -> bool
pub fn is_zero(&self) -> bool
pub fn is_negative(&self) -> bool
pub fn is_positive(&self) -> bool
pub fn abs(self) -> Self
pub fn from_bits(bits: u16) -> Self
pub fn decode(&self) -> Result<(bool, i16, u16, u16), PositDecodeError>
pub fn encode(sign: bool, regime: i16, exp: u16, mantissa: u16) -> Self
Trait Implementations§
Source§impl AddAssign for Posit16
impl AddAssign for Posit16
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+= operation. Read moreSource§impl DivAssign for Posit16
impl DivAssign for Posit16
Source§fn div_assign(&mut self, other: Self)
fn div_assign(&mut self, other: Self)
Performs the
/= operation. Read moreSource§impl MulAssign for Posit16
impl MulAssign for Posit16
Source§fn mul_assign(&mut self, other: Self)
fn mul_assign(&mut self, other: Self)
Performs the
*= operation. Read moreSource§impl Ord for Posit16
impl Ord for Posit16
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for Posit16
impl PartialOrd for Posit16
Source§impl SubAssign for Posit16
impl SubAssign for Posit16
Source§fn sub_assign(&mut self, other: Self)
fn sub_assign(&mut self, other: Self)
Performs the
-= operation. Read moreimpl Copy for Posit16
impl Eq for Posit16
impl StructuralPartialEq for Posit16
Auto Trait Implementations§
impl Freeze for Posit16
impl RefUnwindSafe for Posit16
impl Send for Posit16
impl Sync for Posit16
impl Unpin for Posit16
impl UnsafeUnpin for Posit16
impl UnwindSafe for Posit16
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