Struct half::f16

source ·
pub struct f16(/* private fields */);
Expand description

A 16-bit floating point type implementing the IEEE 754-2008 standard binary16 a.k.a “half” format.

This 16-bit floating point type is intended for efficient storage where the full range and precision of a larger floating point value is not required.

Implementations§

source§

impl f16

source

pub const fn from_bits(bits: u16) -> f16

Constructs a 16-bit floating point value from the raw bits.

source

pub fn from_f32(value: f32) -> f16

Constructs a 16-bit floating point value from a 32-bit floating point value.

This operation is lossy. If the 32-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 32-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

source

pub const fn from_f32_const(value: f32) -> f16

Constructs a 16-bit floating point value from a 32-bit floating point value.

This function is identical to from_f32 except it never uses hardware intrinsics, which allows it to be const. from_f32 should be preferred in any non-const context.

This operation is lossy. If the 32-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 32-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

source

pub fn from_f64(value: f64) -> f16

Constructs a 16-bit floating point value from a 64-bit floating point value.

This operation is lossy. If the 64-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

source

pub const fn from_f64_const(value: f64) -> f16

Constructs a 16-bit floating point value from a 64-bit floating point value.

This function is identical to from_f64 except it never uses hardware intrinsics, which allows it to be const. from_f64 should be preferred in any non-const context.

This operation is lossy. If the 64-bit value is to large to fit in 16-bits, ±∞ will result. NaN values are preserved. 64-bit subnormal values are too tiny to be represented in 16-bits and result in ±0. Exponents that underflow the minimum 16-bit exponent will result in 16-bit subnormals or ±0. All other values are truncated and rounded to the nearest representable 16-bit value.

source

pub const fn to_bits(self) -> u16

Converts a f16 into the underlying bit representation.

source

pub const fn to_le_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in little-endian byte order.

§Examples
let bytes = f16::from_f32(12.5).to_le_bytes();
assert_eq!(bytes, [0x40, 0x4A]);
source

pub const fn to_be_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in big-endian (network) byte order.

§Examples
let bytes = f16::from_f32(12.5).to_be_bytes();
assert_eq!(bytes, [0x4A, 0x40]);
source

pub const fn to_ne_bytes(self) -> [u8; 2]

Returns the memory representation of the underlying bit representation as a byte array in native byte order.

As the target platform’s native endianness is used, portable code should use to_be_bytes or to_le_bytes, as appropriate, instead.

§Examples
let bytes = f16::from_f32(12.5).to_ne_bytes();
assert_eq!(bytes, if cfg!(target_endian = "big") {
    [0x4A, 0x40]
} else {
    [0x40, 0x4A]
});
source

pub const fn from_le_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in little endian.

§Examples
let value = f16::from_le_bytes([0x40, 0x4A]);
assert_eq!(value, f16::from_f32(12.5));
source

pub const fn from_be_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in big endian.

§Examples
let value = f16::from_be_bytes([0x4A, 0x40]);
assert_eq!(value, f16::from_f32(12.5));
source

pub const fn from_ne_bytes(bytes: [u8; 2]) -> f16

Creates a floating point value from its representation as a byte array in native endian.

As the target platform’s native endianness is used, portable code likely wants to use from_be_bytes or from_le_bytes, as appropriate instead.

§Examples
let value = f16::from_ne_bytes(if cfg!(target_endian = "big") {
    [0x4A, 0x40]
} else {
    [0x40, 0x4A]
});
assert_eq!(value, f16::from_f32(12.5));
source

pub fn to_f32(self) -> f32

Converts a f16 value into a f32 value.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 32-bit floating point.

source

pub const fn to_f32_const(self) -> f32

Converts a f16 value into a f32 value.

This function is identical to to_f32 except it never uses hardware intrinsics, which allows it to be const. to_f32 should be preferred in any non-const context.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 32-bit floating point.

source

pub fn to_f64(self) -> f64

Converts a f16 value into a f64 value.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 64-bit floating point.

source

pub const fn to_f64_const(self) -> f64

Converts a f16 value into a f64 value.

This function is identical to to_f64 except it never uses hardware intrinsics, which allows it to be const. to_f64 should be preferred in any non-const context.

This conversion is lossless as all 16-bit floating point values can be represented exactly in 64-bit floating point.

source

pub const fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0_f32);

assert!(nan.is_nan());
assert!(!f.is_nan());
source

pub const fn is_infinite(self) -> bool

Returns true if this value is ±∞ and false. otherwise.

§Examples

let f = f16::from_f32(7.0f32);
let inf = f16::INFINITY;
let neg_inf = f16::NEG_INFINITY;
let nan = f16::NAN;

assert!(!f.is_infinite());
assert!(!nan.is_infinite());

assert!(inf.is_infinite());
assert!(neg_inf.is_infinite());
source

pub const fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN.

§Examples

let f = f16::from_f32(7.0f32);
let inf = f16::INFINITY;
let neg_inf = f16::NEG_INFINITY;
let nan = f16::NAN;

assert!(f.is_finite());

assert!(!nan.is_finite());
assert!(!inf.is_finite());
assert!(!neg_inf.is_finite());
source

pub const fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN.

§Examples

let min = f16::MIN_POSITIVE;
let max = f16::MAX;
let lower_than_min = f16::from_f32(1.0e-10_f32);
let zero = f16::from_f32(0.0_f32);

assert!(min.is_normal());
assert!(max.is_normal());

assert!(!zero.is_normal());
assert!(!f16::NAN.is_normal());
assert!(!f16::INFINITY.is_normal());
// Values between `0` and `min` are Subnormal.
assert!(!lower_than_min.is_normal());
source

pub const fn classify(self) -> FpCategory

Returns the floating point category of the number.

If only one property is going to be tested, it is generally faster to use the specific predicate instead.

§Examples
use std::num::FpCategory;

let num = f16::from_f32(12.4_f32);
let inf = f16::INFINITY;

assert_eq!(num.classify(), FpCategory::Normal);
assert_eq!(inf.classify(), FpCategory::Infinite);
source

pub const fn signum(self) -> f16

Returns a number that represents the sign of self.

  • 1.0 if the number is positive, +0.0 or INFINITY
  • -1.0 if the number is negative, -0.0 or NEG_INFINITY
  • NAN if the number is NaN
§Examples

let f = f16::from_f32(3.5_f32);

assert_eq!(f.signum(), f16::from_f32(1.0));
assert_eq!(f16::NEG_INFINITY.signum(), f16::from_f32(-1.0));

assert!(f16::NAN.signum().is_nan());
source

pub const fn is_sign_positive(self) -> bool

Returns true if and only if self has a positive sign, including +0.0, NaNs with a positive sign bit and +∞.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0_f32);
let g = f16::from_f32(-7.0_f32);

assert!(f.is_sign_positive());
assert!(!g.is_sign_positive());
// `NaN` can be either positive or negative
assert!(nan.is_sign_positive() != nan.is_sign_negative());
source

pub const fn is_sign_negative(self) -> bool

Returns true if and only if self has a negative sign, including -0.0, NaNs with a negative sign bit and −∞.

§Examples

let nan = f16::NAN;
let f = f16::from_f32(7.0f32);
let g = f16::from_f32(-7.0f32);

assert!(!f.is_sign_negative());
assert!(g.is_sign_negative());
// `NaN` can be either positive or negative
assert!(nan.is_sign_positive() != nan.is_sign_negative());
source

pub const fn copysign(self, sign: f16) -> f16

Returns a number composed of the magnitude of self and the sign of sign.

Equal to self if the sign of self and sign are the same, otherwise equal to -self. If self is NaN, then NaN with the sign of sign is returned.

§Examples
let f = f16::from_f32(3.5);

assert_eq!(f.copysign(f16::from_f32(0.42)), f16::from_f32(3.5));
assert_eq!(f.copysign(f16::from_f32(-0.42)), f16::from_f32(-3.5));
assert_eq!((-f).copysign(f16::from_f32(0.42)), f16::from_f32(3.5));
assert_eq!((-f).copysign(f16::from_f32(-0.42)), f16::from_f32(-3.5));

assert!(f16::NAN.copysign(f16::from_f32(1.0)).is_nan());
source

pub fn max(self, other: f16) -> f16

Returns the maximum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

§Examples
let x = f16::from_f32(1.0);
let y = f16::from_f32(2.0);

assert_eq!(x.max(y), y);
source

pub fn min(self, other: f16) -> f16

Returns the minimum of the two numbers.

If one of the arguments is NaN, then the other argument is returned.

§Examples
let x = f16::from_f32(1.0);
let y = f16::from_f32(2.0);

assert_eq!(x.min(y), x);
source

pub fn clamp(self, min: f16, max: f16) -> f16

Restrict a value to a certain interval unless it is NaN.

Returns max if self is greater than max, and min if self is less than min. Otherwise this returns self.

Note that this function returns NaN if the initial value was NaN as well.

§Panics

Panics if min > max, min is NaN, or max is NaN.

§Examples
assert!(f16::from_f32(-3.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(-2.0));
assert!(f16::from_f32(0.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(0.0));
assert!(f16::from_f32(2.0).clamp(f16::from_f32(-2.0), f16::from_f32(1.0)) == f16::from_f32(1.0));
assert!(f16::NAN.clamp(f16::from_f32(-2.0), f16::from_f32(1.0)).is_nan());
source

pub fn total_cmp(&self, other: &Self) -> Ordering

Returns the ordering between self and other.

Unlike the standard partial comparison between floating point numbers, this comparison always produces an ordering in accordance to the totalOrder predicate as defined in the IEEE 754 (2008 revision) floating point standard. The values are ordered in the following sequence:

  • negative quiet NaN
  • negative signaling NaN
  • negative infinity
  • negative numbers
  • negative subnormal numbers
  • negative zero
  • positive zero
  • positive subnormal numbers
  • positive numbers
  • positive infinity
  • positive signaling NaN
  • positive quiet NaN.

The ordering established by this function does not always agree with the PartialOrd and PartialEq implementations of f16. For example, they consider negative and positive zero equal, while total_cmp doesn’t.

The interpretation of the signaling NaN bit follows the definition in the IEEE 754 standard, which may not match the interpretation by some of the older, non-conformant (e.g. MIPS) hardware implementations.

§Examples
let mut v: Vec<f16> = vec![];
v.push(f16::ONE);
v.push(f16::INFINITY);
v.push(f16::NEG_INFINITY);
v.push(f16::NAN);
v.push(f16::MAX_SUBNORMAL);
v.push(-f16::MAX_SUBNORMAL);
v.push(f16::ZERO);
v.push(f16::NEG_ZERO);
v.push(f16::NEG_ONE);
v.push(f16::MIN_POSITIVE);

v.sort_by(|a, b| a.total_cmp(&b));

assert!(v
    .into_iter()
    .zip(
        [
            f16::NEG_INFINITY,
            f16::NEG_ONE,
            -f16::MAX_SUBNORMAL,
            f16::NEG_ZERO,
            f16::ZERO,
            f16::MAX_SUBNORMAL,
            f16::MIN_POSITIVE,
            f16::ONE,
            f16::INFINITY,
            f16::NAN
        ]
        .iter()
    )
    .all(|(a, b)| a.to_bits() == b.to_bits()));
source

pub fn serialize_as_f32<S: Serializer>( &self, serializer: S ) -> Result<S::Ok, S::Error>

Available on crate feature serde only.

Alternate serialize adapter for serializing as a float.

By default, f16 serializes as a newtype of u16. This is an alternate serialize implementation that serializes as an f32 value. It is designed for use with serialize_with serde attributes. Deserialization from f32 values is already supported by the default deserialize implementation.

§Examples

A demonstration on how to use this adapater:

use serde::{Serialize, Deserialize};
use half::f16;

#[derive(Serialize, Deserialize)]
struct MyStruct {
    #[serde(serialize_with = "f16::serialize_as_f32")]
    value: f16 // Will be serialized as f32 instead of u16
}
source

pub fn serialize_as_string<S: Serializer>( &self, serializer: S ) -> Result<S::Ok, S::Error>

Available on crate features serde and alloc only.

Alternate serialize adapter for serializing as a string.

By default, f16 serializes as a newtype of u16. This is an alternate serialize implementation that serializes as a string value. It is designed for use with serialize_with serde attributes. Deserialization from string values is already supported by the default deserialize implementation.

§Examples

A demonstration on how to use this adapater:

use serde::{Serialize, Deserialize};
use half::f16;

#[derive(Serialize, Deserialize)]
struct MyStruct {
    #[serde(serialize_with = "f16::serialize_as_string")]
    value: f16 // Will be serialized as a string instead of u16
}
source

pub const DIGITS: u32 = 3u32

Approximate number of f16 significant digits in base 10

source

pub const EPSILON: f16 = _

f16 machine epsilon value

This is the difference between 1.0 and the next largest representable number.

source

pub const INFINITY: f16 = _

f16 positive Infinity (+∞)

source

pub const MANTISSA_DIGITS: u32 = 11u32

Number of f16 significant digits in base 2

source

pub const MAX: f16 = _

Largest finite f16 value

source

pub const MAX_10_EXP: i32 = 4i32

Maximum possible f16 power of 10 exponent

source

pub const MAX_EXP: i32 = 16i32

Maximum possible f16 power of 2 exponent

source

pub const MIN: f16 = _

Smallest finite f16 value

source

pub const MIN_10_EXP: i32 = -4i32

Minimum possible normal f16 power of 10 exponent

source

pub const MIN_EXP: i32 = -13i32

One greater than the minimum possible normal f16 power of 2 exponent

source

pub const MIN_POSITIVE: f16 = _

Smallest positive normal f16 value

source

pub const NAN: f16 = _

f16 Not a Number (NaN)

source

pub const NEG_INFINITY: f16 = _

f16 negative infinity (-∞)

source

pub const RADIX: u32 = 2u32

The radix or base of the internal representation of f16

source

pub const MIN_POSITIVE_SUBNORMAL: f16 = _

Minimum positive subnormal f16 value

source

pub const MAX_SUBNORMAL: f16 = _

Maximum subnormal f16 value

source

pub const ONE: f16 = _

f16 1

source

pub const ZERO: f16 = _

f16 0

source

pub const NEG_ZERO: f16 = _

f16 -0

source

pub const NEG_ONE: f16 = _

f16 -1

source

pub const E: f16 = _

f16 Euler’s number (ℯ)

source

pub const PI: f16 = _

f16 Archimedes’ constant (π)

source

pub const FRAC_1_PI: f16 = _

f16 1/π

source

pub const FRAC_1_SQRT_2: f16 = _

f16 1/√2

source

pub const FRAC_2_PI: f16 = _

f16 2/π

source

pub const FRAC_2_SQRT_PI: f16 = _

f16 2/√π

source

pub const FRAC_PI_2: f16 = _

f16 π/2

source

pub const FRAC_PI_3: f16 = _

f16 π/3

source

pub const FRAC_PI_4: f16 = _

f16 π/4

source

pub const FRAC_PI_6: f16 = _

f16 π/6

source

pub const FRAC_PI_8: f16 = _

f16 π/8

source

pub const LN_10: f16 = _

f16 𝗅𝗇 10

source

pub const LN_2: f16 = _

f16 𝗅𝗇 2

source

pub const LOG10_E: f16 = _

f16 𝗅𝗈𝗀₁₀ℯ

source

pub const LOG10_2: f16 = _

f16 𝗅𝗈𝗀₁₀2

source

pub const LOG2_E: f16 = _

f16 𝗅𝗈𝗀₂ℯ

source

pub const LOG2_10: f16 = _

f16 𝗅𝗈𝗀₂10

source

pub const SQRT_2: f16 = _

f16 √2

Trait Implementations§

source§

impl Add<&f16> for &f16

§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, rhs: &f16) -> Self::Output

Performs the + operation. Read more
source§

impl Add<&f16> for f16

§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, rhs: &f16) -> Self::Output

Performs the + operation. Read more
source§

impl Add<f16> for &f16

§

type Output = <f16 as Add>::Output

The resulting type after applying the + operator.
source§

fn add(self, rhs: f16) -> Self::Output

Performs the + operation. Read more
source§

impl Add for f16

§

type Output = f16

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<&f16> for f16

source§

fn add_assign(&mut self, rhs: &f16)

Performs the += operation. Read more
source§

impl AddAssign for f16

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Archive for f16
where u16: Archive,

§

type Archived = Archivedf16

The archived representation of this type. Read more
§

type Resolver = F16Resolver

The resolver for this type. It must contain all the additional information from serializing needed to make the archived type from the normal type.
source§

unsafe fn resolve( &self, pos: usize, resolver: Self::Resolver, out: *mut Self::Archived )

Creates the archived version of this value at the given position and writes it to the given output. Read more
source§

impl AsBytes for f16
where u16: AsBytes,

source§

fn as_bytes(&self) -> &[u8]

Gets the bytes of this value. Read more
source§

fn as_bytes_mut(&mut self) -> &mut [u8]
where Self: FromBytes,

Gets the bytes of this value mutably. Read more
source§

fn write_to<B>(&self, bytes: B) -> Option<()>
where B: ByteSliceMut,

Writes a copy of self to bytes. Read more
source§

fn write_to_prefix<B>(&self, bytes: B) -> Option<()>
where B: ByteSliceMut,

Writes a copy of self to the prefix of bytes. Read more
source§

fn write_to_suffix<B>(&self, bytes: B) -> Option<()>
where B: ByteSliceMut,

Writes a copy of self to the suffix of bytes. Read more
source§

impl AsPrimitive<bf16> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> bf16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for bf16

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for f32

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for f64

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for i16

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for i32

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for i64

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for i8

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for isize

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for u16

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for u32

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for u64

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for u8

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f16> for usize

Available on crate feature num-traits only.
source§

fn as_(self) -> f16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f32> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> f32

Convert a value to another, using the as operator.
source§

impl AsPrimitive<f64> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> f64

Convert a value to another, using the as operator.
source§

impl AsPrimitive<i16> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> i16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<i32> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> i32

Convert a value to another, using the as operator.
source§

impl AsPrimitive<i64> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> i64

Convert a value to another, using the as operator.
source§

impl AsPrimitive<i8> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> i8

Convert a value to another, using the as operator.
source§

impl AsPrimitive<isize> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> isize

Convert a value to another, using the as operator.
source§

impl AsPrimitive<u16> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> u16

Convert a value to another, using the as operator.
source§

impl AsPrimitive<u32> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> u32

Convert a value to another, using the as operator.
source§

impl AsPrimitive<u64> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> u64

Convert a value to another, using the as operator.
source§

impl AsPrimitive<u8> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> u8

Convert a value to another, using the as operator.
source§

impl AsPrimitive<usize> for f16

Available on crate feature num-traits only.
source§

fn as_(self) -> usize

Convert a value to another, using the as operator.
source§

impl Binary for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl Bounded for f16

Available on crate feature num-traits only.
source§

fn min_value() -> Self

Returns the smallest finite number this type can represent
source§

fn max_value() -> Self

Returns the largest finite number this type can represent
source§

impl Clone for f16

source§

fn clone(&self) -> f16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for f16

source§

fn default() -> f16

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for f16

Available on crate feature serde only.
source§

fn deserialize<D>(deserializer: D) -> Result<f16, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<__D: Fallible + ?Sized> Deserialize<f16, __D> for Archived<f16>

source§

fn deserialize(&self, deserializer: &mut __D) -> Result<f16, __D::Error>

Deserializes using the given deserializer
source§

impl Display for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Distribution<f16> for Exp1

Available on crate feature rand_distr only.
source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f16

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<f16> for Open01

Available on crate feature rand_distr only.
source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f16

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<f16> for OpenClosed01

Available on crate feature rand_distr only.
source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f16

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<f16> for Standard

Available on crate feature rand_distr only.
source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f16

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Distribution<f16> for StandardNormal

Available on crate feature rand_distr only.
source§

fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f16

Generate a random value of T, using rng as the source of randomness.
source§

fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
source§

fn map<F, S>(self, func: F) -> DistMap<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Create a distribution of values of ‘S’ by mapping the output of Self through the closure F Read more
source§

impl Div<&f16> for &f16

§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: &f16) -> Self::Output

Performs the / operation. Read more
source§

impl Div<&f16> for f16

§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: &f16) -> Self::Output

Performs the / operation. Read more
source§

impl Div<f16> for &f16

§

type Output = <f16 as Div>::Output

The resulting type after applying the / operator.
source§

fn div(self, rhs: f16) -> Self::Output

Performs the / operation. Read more
source§

impl Div for f16

§

type Output = f16

The resulting type after applying the / operator.
source§

fn div(self, rhs: Self) -> Self::Output

Performs the / operation. Read more
source§

impl DivAssign<&f16> for f16

source§

fn div_assign(&mut self, rhs: &f16)

Performs the /= operation. Read more
source§

impl DivAssign for f16

source§

fn div_assign(&mut self, rhs: Self)

Performs the /= operation. Read more
source§

impl Float for f16

Available on crate feature num-traits only.
source§

fn nan() -> Self

Returns the NaN value. Read more
source§

fn infinity() -> Self

Returns the infinite value. Read more
source§

fn neg_infinity() -> Self

Returns the negative infinite value. Read more
source§

fn neg_zero() -> Self

Returns -0.0. Read more
source§

fn min_value() -> Self

Returns the smallest finite value that this type can represent. Read more
source§

fn min_positive_value() -> Self

Returns the smallest positive, normalized value that this type can represent. Read more
source§

fn epsilon() -> Self

Returns epsilon, a small positive value. Read more
source§

fn max_value() -> Self

Returns the largest finite value that this type can represent. Read more
source§

fn is_nan(self) -> bool

Returns true if this value is NaN and false otherwise. Read more
source§

fn is_infinite(self) -> bool

Returns true if this value is positive infinity or negative infinity and false otherwise. Read more
source§

fn is_finite(self) -> bool

Returns true if this number is neither infinite nor NaN. Read more
source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal, or NaN. Read more
source§

fn classify(self) -> FpCategory

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more
source§

fn floor(self) -> Self

Returns the largest integer less than or equal to a number. Read more
source§

fn ceil(self) -> Self

Returns the smallest integer greater than or equal to a number. Read more
source§

fn round(self) -> Self

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
source§

fn trunc(self) -> Self

Return the integer part of a number. Read more
source§

fn fract(self) -> Self

Returns the fractional part of a number. Read more
source§

fn abs(self) -> Self

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more
source§

fn signum(self) -> Self

Returns a number that represents the sign of self. Read more
source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0, Float::infinity(), and Float::nan(). Read more
source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0, Float::neg_infinity(), and -Float::nan(). Read more
source§

fn mul_add(self, a: Self, b: Self) -> Self

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more
source§

fn recip(self) -> Self

Take the reciprocal (inverse) of a number, 1/x. Read more
source§

fn powi(self, n: i32) -> Self

Raise a number to an integer power. Read more
source§

fn powf(self, n: Self) -> Self

Raise a number to a floating point power. Read more
source§

fn sqrt(self) -> Self

Take the square root of a number. Read more
source§

fn exp(self) -> Self

Returns e^(self), (the exponential function). Read more
source§

fn exp2(self) -> Self

Returns 2^(self). Read more
source§

fn ln(self) -> Self

Returns the natural logarithm of the number. Read more
source§

fn log(self, base: Self) -> Self

Returns the logarithm of the number with respect to an arbitrary base. Read more
source§

fn log2(self) -> Self

Returns the base 2 logarithm of the number. Read more
source§

fn log10(self) -> Self

Returns the base 10 logarithm of the number. Read more
source§

fn to_degrees(self) -> Self

Converts radians to degrees. Read more
source§

fn to_radians(self) -> Self

Converts degrees to radians. Read more
source§

fn max(self, other: Self) -> Self

Returns the maximum of the two numbers. Read more
source§

fn min(self, other: Self) -> Self

Returns the minimum of the two numbers. Read more
source§

fn abs_sub(self, other: Self) -> Self

The positive difference of two numbers. Read more
source§

fn cbrt(self) -> Self

Take the cubic root of a number. Read more
source§

fn hypot(self, other: Self) -> Self

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more
source§

fn sin(self) -> Self

Computes the sine of a number (in radians). Read more
source§

fn cos(self) -> Self

Computes the cosine of a number (in radians). Read more
source§

fn tan(self) -> Self

Computes the tangent of a number (in radians). Read more
source§

fn asin(self) -> Self

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more
source§

fn acos(self) -> Self

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more
source§

fn atan(self) -> Self

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more
source§

fn atan2(self, other: Self) -> Self

Computes the four quadrant arctangent of self (y) and other (x). Read more
source§

fn sin_cos(self) -> (Self, Self)

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more
source§

fn exp_m1(self) -> Self

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more
source§

fn ln_1p(self) -> Self

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more
source§

fn sinh(self) -> Self

Hyperbolic sine function. Read more
source§

fn cosh(self) -> Self

Hyperbolic cosine function. Read more
source§

fn tanh(self) -> Self

Hyperbolic tangent function. Read more
source§

fn asinh(self) -> Self

Inverse hyperbolic sine function. Read more
source§

fn acosh(self) -> Self

Inverse hyperbolic cosine function. Read more
source§

fn atanh(self) -> Self

Inverse hyperbolic tangent function. Read more
source§

fn integer_decode(self) -> (u64, i16, i8)

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more
source§

fn is_subnormal(self) -> bool

Returns true if the number is subnormal. Read more
source§

fn copysign(self, sign: Self) -> Self

Returns a number composed of the magnitude of self and the sign of sign. Read more
source§

impl FloatConst for f16

Available on crate feature num-traits only.
source§

fn E() -> Self

Return Euler’s number.
source§

fn FRAC_1_PI() -> Self

Return 1.0 / π.
source§

fn FRAC_1_SQRT_2() -> Self

Return 1.0 / sqrt(2.0).
source§

fn FRAC_2_PI() -> Self

Return 2.0 / π.
source§

fn FRAC_2_SQRT_PI() -> Self

Return 2.0 / sqrt(π).
source§

fn FRAC_PI_2() -> Self

Return π / 2.0.
source§

fn FRAC_PI_3() -> Self

Return π / 3.0.
source§

fn FRAC_PI_4() -> Self

Return π / 4.0.
source§

fn FRAC_PI_6() -> Self

Return π / 6.0.
source§

fn FRAC_PI_8() -> Self

Return π / 8.0.
source§

fn LN_10() -> Self

Return ln(10.0).
source§

fn LN_2() -> Self

Return ln(2.0).
source§

fn LOG10_E() -> Self

Return log10(e).
source§

fn LOG2_E() -> Self

Return log2(e).
source§

fn PI() -> Self

Return Archimedes’ constant π.
source§

fn SQRT_2() -> Self

Return sqrt(2.0).
source§

fn LOG10_2() -> Self
where Self: Sized + Div<Self, Output = Self>,

Return log10(2.0).
source§

fn LOG2_10() -> Self
where Self: Sized + Div<Self, Output = Self>,

Return log2(10.0).
source§

fn TAU() -> Self
where Self: Sized + Add<Output = Self>,

Return the full circle constant τ.
source§

impl FloatCore for f16

Available on crate feature num-traits only.
source§

fn infinity() -> Self

Returns positive infinity. Read more
source§

fn neg_infinity() -> Self

Returns negative infinity. Read more
source§

fn nan() -> Self

Returns NaN. Read more
source§

fn neg_zero() -> Self

Returns -0.0. Read more
source§

fn min_value() -> Self

Returns the smallest finite value that this type can represent. Read more
source§

fn min_positive_value() -> Self

Returns the smallest positive, normalized value that this type can represent. Read more
source§

fn epsilon() -> Self

Returns epsilon, a small positive value. Read more
source§

fn max_value() -> Self

Returns the largest finite value that this type can represent. Read more
source§

fn is_nan(self) -> bool

Returns true if the number is NaN. Read more
source§

fn is_infinite(self) -> bool

Returns true if the number is infinite. Read more
source§

fn is_finite(self) -> bool

Returns true if the number is neither infinite or NaN. Read more
source§

fn is_normal(self) -> bool

Returns true if the number is neither zero, infinite, subnormal or NaN. Read more
source§

fn classify(self) -> FpCategory

Returns the floating point category of the number. If only one property is going to be tested, it is generally faster to use the specific predicate instead. Read more
source§

fn floor(self) -> Self

Returns the largest integer less than or equal to a number. Read more
source§

fn ceil(self) -> Self

Returns the smallest integer greater than or equal to a number. Read more
source§

fn round(self) -> Self

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
source§

fn trunc(self) -> Self

Return the integer part of a number. Read more
source§

fn fract(self) -> Self

Returns the fractional part of a number. Read more
source§

fn abs(self) -> Self

Computes the absolute value of self. Returns FloatCore::nan() if the number is FloatCore::nan(). Read more
source§

fn signum(self) -> Self

Returns a number that represents the sign of self. Read more
source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0 and FloatCore::infinity(), and FloatCore::nan(). Read more
source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0 and FloatCore::neg_infinity(), and -FloatCore::nan(). Read more
source§

fn min(self, other: Self) -> Self

Returns the minimum of the two numbers. Read more
source§

fn max(self, other: Self) -> Self

Returns the maximum of the two numbers. Read more
source§

fn recip(self) -> Self

Returns the reciprocal (multiplicative inverse) of the number. Read more
source§

fn powi(self, exp: i32) -> Self

Raise a number to an integer power. Read more
source§

fn to_degrees(self) -> Self

Converts to degrees, assuming the number is in radians. Read more
source§

fn to_radians(self) -> Self

Converts to radians, assuming the number is in degrees. Read more
source§

fn integer_decode(self) -> (u64, i16, i8)

Returns the mantissa, base 2 exponent, and sign as integers, respectively. The original number can be recovered by sign * mantissa * 2 ^ exponent. Read more
source§

fn is_subnormal(self) -> bool

Returns true if the number is subnormal. Read more
source§

impl From<f16> for f32

source§

fn from(x: f16) -> f32

Converts to this type from the input type.
source§

impl From<f16> for f64

source§

fn from(x: f16) -> f64

Converts to this type from the input type.
source§

impl From<i8> for f16

source§

fn from(x: i8) -> f16

Converts to this type from the input type.
source§

impl From<u8> for f16

source§

fn from(x: u8) -> f16

Converts to this type from the input type.
source§

impl FromBytes for f16
where u16: FromBytes,

source§

fn read_from<B>(bytes: B) -> Option<Self>
where B: ByteSlice, Self: Sized,

Reads a copy of Self from bytes. Read more
source§

fn read_from_prefix<B>(bytes: B) -> Option<Self>
where B: ByteSlice, Self: Sized,

Reads a copy of Self from the prefix of bytes. Read more
source§

fn read_from_suffix<B>(bytes: B) -> Option<Self>
where B: ByteSlice, Self: Sized,

Reads a copy of Self from the suffix of bytes. Read more
source§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes.
source§

impl FromPrimitive for f16

Available on crate feature num-traits only.
source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl FromStr for f16

Available on non-target_arch="spirv" only.
§

type Err = ParseFloatError

The associated error which can be returned from parsing.
source§

fn from_str(src: &str) -> Result<f16, ParseFloatError>

Parses a string s to return a value of this type. Read more
source§

impl LowerExp for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl LowerHex for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl Mul<&f16> for &f16

§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &f16) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<&f16> for f16

§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, rhs: &f16) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<f16> for &f16

§

type Output = <f16 as Mul>::Output

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f16) -> Self::Output

Performs the * operation. Read more
source§

impl Mul for f16

§

type Output = f16

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Self) -> Self::Output

Performs the * operation. Read more
source§

impl MulAssign<&f16> for f16

source§

fn mul_assign(&mut self, rhs: &f16)

Performs the *= operation. Read more
source§

impl MulAssign for f16

source§

fn mul_assign(&mut self, rhs: Self)

Performs the *= operation. Read more
source§

impl Neg for &f16

§

type Output = <f16 as Neg>::Output

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Neg for f16

§

type Output = f16

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Num for f16

Available on crate feature num-traits only.
§

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

source§

fn from_str_radix(str: &str, radix: u32) -> Result<Self, Self::FromStrRadixErr>

Convert from a string and radix (typically 2..=36). Read more
source§

impl NumCast for f16

Available on crate feature num-traits only.
source§

fn from<T: ToPrimitive>(n: T) -> Option<Self>

Creates a number from another value that can be converted into a primitive via the ToPrimitive trait. If the source value cannot be represented by the target type, then None is returned. Read more
source§

impl Octal for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl One for f16

Available on crate feature num-traits only.
source§

fn one() -> Self

Returns the multiplicative identity element of Self, 1. Read more
source§

fn set_one(&mut self)

Sets self to the multiplicative identity element of Self, 1.
source§

fn is_one(&self) -> bool
where Self: PartialEq,

Returns true if self is equal to the multiplicative identity. Read more
source§

impl PartialEq for f16

source§

fn eq(&self, other: &f16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for f16

source§

fn partial_cmp(&self, other: &f16) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
source§

fn lt(&self, other: &f16) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
source§

fn le(&self, other: &f16) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
source§

fn gt(&self, other: &f16) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
source§

fn ge(&self, other: &f16) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl<'a> Product<&'a f16> for f16

source§

fn product<I: Iterator<Item = &'a f16>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Product for f16

source§

fn product<I: Iterator<Item = Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by multiplying the items.
source§

impl Rem<&f16> for &f16

§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &f16) -> Self::Output

Performs the % operation. Read more
source§

impl Rem<&f16> for f16

§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: &f16) -> Self::Output

Performs the % operation. Read more
source§

impl Rem<f16> for &f16

§

type Output = <f16 as Rem>::Output

The resulting type after applying the % operator.
source§

fn rem(self, rhs: f16) -> Self::Output

Performs the % operation. Read more
source§

impl Rem for f16

§

type Output = f16

The resulting type after applying the % operator.
source§

fn rem(self, rhs: Self) -> Self::Output

Performs the % operation. Read more
source§

impl RemAssign<&f16> for f16

source§

fn rem_assign(&mut self, rhs: &f16)

Performs the %= operation. Read more
source§

impl RemAssign for f16

source§

fn rem_assign(&mut self, rhs: Self)

Performs the %= operation. Read more
source§

impl SampleUniform for f16

Available on crate feature rand_distr only.
§

type Sampler = Float16Sampler

The UniformSampler implementation supporting type X.
source§

impl<__S: Fallible + ?Sized> Serialize<__S> for f16
where u16: Serialize<__S>,

source§

fn serialize(&self, serializer: &mut __S) -> Result<Self::Resolver, __S::Error>

Writes the dependencies for the object and returns a resolver that can create the archived type.
source§

impl Serialize for f16

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Sub<&f16> for &f16

§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &f16) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<&f16> for f16

§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &f16) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<f16> for &f16

§

type Output = <f16 as Sub>::Output

The resulting type after applying the - operator.
source§

fn sub(self, rhs: f16) -> Self::Output

Performs the - operation. Read more
source§

impl Sub for f16

§

type Output = f16

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl SubAssign<&f16> for f16

source§

fn sub_assign(&mut self, rhs: &f16)

Performs the -= operation. Read more
source§

impl SubAssign for f16

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl<'a> Sum<&'a f16> for f16

source§

fn sum<I: Iterator<Item = &'a f16>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl Sum for f16

source§

fn sum<I: Iterator<Item = Self>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl ToPrimitive for f16

Available on crate feature num-traits only.
source§

fn to_i64(&self) -> Option<i64>

Converts the value of self to an i64. If the value cannot be represented by an i64, then None is returned.
source§

fn to_u64(&self) -> Option<u64>

Converts the value of self to a u64. If the value cannot be represented by a u64, then None is returned.
source§

fn to_i8(&self) -> Option<i8>

Converts the value of self to an i8. If the value cannot be represented by an i8, then None is returned.
source§

fn to_u8(&self) -> Option<u8>

Converts the value of self to a u8. If the value cannot be represented by a u8, then None is returned.
source§

fn to_i16(&self) -> Option<i16>

Converts the value of self to an i16. If the value cannot be represented by an i16, then None is returned.
source§

fn to_u16(&self) -> Option<u16>

Converts the value of self to a u16. If the value cannot be represented by a u16, then None is returned.
source§

fn to_i32(&self) -> Option<i32>

Converts the value of self to an i32. If the value cannot be represented by an i32, then None is returned.
source§

fn to_u32(&self) -> Option<u32>

Converts the value of self to a u32. If the value cannot be represented by a u32, then None is returned.
source§

fn to_f32(&self) -> Option<f32>

Converts the value of self to an f32. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f32.
source§

fn to_f64(&self) -> Option<f64>

Converts the value of self to an f64. Overflows may map to positive or negative inifinity, otherwise None is returned if the value cannot be represented by an f64. Read more
source§

fn to_isize(&self) -> Option<isize>

Converts the value of self to an isize. If the value cannot be represented by an isize, then None is returned.
source§

fn to_i128(&self) -> Option<i128>

Converts the value of self to an i128. If the value cannot be represented by an i128 (i64 under the default implementation), then None is returned. Read more
source§

fn to_usize(&self) -> Option<usize>

Converts the value of self to a usize. If the value cannot be represented by a usize, then None is returned.
source§

fn to_u128(&self) -> Option<u128>

Converts the value of self to a u128. If the value cannot be represented by a u128 (u64 under the default implementation), then None is returned. Read more
source§

impl UpperExp for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl UpperHex for f16

Available on non-target_arch="spirv" only.
source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter.
source§

impl Zero for f16

Available on crate feature num-traits only.
source§

fn zero() -> Self

Returns the additive identity element of Self, 0. Read more
source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
source§

impl Zeroable for f16

source§

fn zeroed() -> Self

source§

impl Copy for f16

source§

impl Pod for f16

Auto Trait Implementations§

§

impl Freeze for f16

§

impl RefUnwindSafe for f16

§

impl Send for f16

§

impl Sync for f16

§

impl Unpin for f16

§

impl UnwindSafe for f16

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> ArchiveUnsized for T
where T: Archive,

§

type Archived = <T as Archive>::Archived

The archived counterpart of this type. Unlike Archive, it may be unsized. Read more
§

type MetadataResolver = ()

The resolver for the metadata of this type. Read more
source§

unsafe fn resolve_metadata( &self, _: usize, _: <T as ArchiveUnsized>::MetadataResolver, _: *mut <<T as ArchiveUnsized>::Archived as ArchivePointee>::ArchivedMetadata )

Creates the archived version of the metadata for this value at the given position and writes it to the given output. Read more
source§

unsafe fn resolve_unsized( &self, from: usize, to: usize, resolver: Self::MetadataResolver, out: *mut RelPtr<Self::Archived, <isize as Archive>::Archived> )

Resolves a relative pointer to this value with the given from and to and writes it to the given output. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

source§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> LowerBounded for T
where T: Bounded,

source§

fn min_value() -> T

Returns the smallest finite number this type can represent
source§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Real for T
where T: Float,

source§

fn min_value() -> T

Returns the smallest finite value that this type can represent. Read more
source§

fn min_positive_value() -> T

Returns the smallest positive, normalized value that this type can represent. Read more
source§

fn epsilon() -> T

Returns epsilon, a small positive value. Read more
source§

fn max_value() -> T

Returns the largest finite value that this type can represent. Read more
source§

fn floor(self) -> T

Returns the largest integer less than or equal to a number. Read more
source§

fn ceil(self) -> T

Returns the smallest integer greater than or equal to a number. Read more
source§

fn round(self) -> T

Returns the nearest integer to a number. Round half-way cases away from 0.0. Read more
source§

fn trunc(self) -> T

Return the integer part of a number. Read more
source§

fn fract(self) -> T

Returns the fractional part of a number. Read more
source§

fn abs(self) -> T

Computes the absolute value of self. Returns Float::nan() if the number is Float::nan(). Read more
source§

fn signum(self) -> T

Returns a number that represents the sign of self. Read more
source§

fn is_sign_positive(self) -> bool

Returns true if self is positive, including +0.0, Float::infinity(), and with newer versions of Rust f64::NAN. Read more
source§

fn is_sign_negative(self) -> bool

Returns true if self is negative, including -0.0, Float::neg_infinity(), and with newer versions of Rust -f64::NAN. Read more
source§

fn mul_add(self, a: T, b: T) -> T

Fused multiply-add. Computes (self * a) + b with only one rounding error, yielding a more accurate result than an unfused multiply-add. Read more
source§

fn recip(self) -> T

Take the reciprocal (inverse) of a number, 1/x. Read more
source§

fn powi(self, n: i32) -> T

Raise a number to an integer power. Read more
source§

fn powf(self, n: T) -> T

Raise a number to a real number power. Read more
source§

fn sqrt(self) -> T

Take the square root of a number. Read more
source§

fn exp(self) -> T

Returns e^(self), (the exponential function). Read more
source§

fn exp2(self) -> T

Returns 2^(self). Read more
source§

fn ln(self) -> T

Returns the natural logarithm of the number. Read more
source§

fn log(self, base: T) -> T

Returns the logarithm of the number with respect to an arbitrary base. Read more
source§

fn log2(self) -> T

Returns the base 2 logarithm of the number. Read more
source§

fn log10(self) -> T

Returns the base 10 logarithm of the number. Read more
source§

fn to_degrees(self) -> T

Converts radians to degrees. Read more
source§

fn to_radians(self) -> T

Converts degrees to radians. Read more
source§

fn max(self, other: T) -> T

Returns the maximum of the two numbers. Read more
source§

fn min(self, other: T) -> T

Returns the minimum of the two numbers. Read more
source§

fn abs_sub(self, other: T) -> T

The positive difference of two numbers. Read more
source§

fn cbrt(self) -> T

Take the cubic root of a number. Read more
source§

fn hypot(self, other: T) -> T

Calculate the length of the hypotenuse of a right-angle triangle given legs of length x and y. Read more
source§

fn sin(self) -> T

Computes the sine of a number (in radians). Read more
source§

fn cos(self) -> T

Computes the cosine of a number (in radians). Read more
source§

fn tan(self) -> T

Computes the tangent of a number (in radians). Read more
source§

fn asin(self) -> T

Computes the arcsine of a number. Return value is in radians in the range [-pi/2, pi/2] or NaN if the number is outside the range [-1, 1]. Read more
source§

fn acos(self) -> T

Computes the arccosine of a number. Return value is in radians in the range [0, pi] or NaN if the number is outside the range [-1, 1]. Read more
source§

fn atan(self) -> T

Computes the arctangent of a number. Return value is in radians in the range [-pi/2, pi/2]; Read more
source§

fn atan2(self, other: T) -> T

Computes the four quadrant arctangent of self (y) and other (x). Read more
source§

fn sin_cos(self) -> (T, T)

Simultaneously computes the sine and cosine of the number, x. Returns (sin(x), cos(x)). Read more
source§

fn exp_m1(self) -> T

Returns e^(self) - 1 in a way that is accurate even if the number is close to zero. Read more
source§

fn ln_1p(self) -> T

Returns ln(1+n) (natural logarithm) more accurately than if the operations were performed separately. Read more
source§

fn sinh(self) -> T

Hyperbolic sine function. Read more
source§

fn cosh(self) -> T

Hyperbolic cosine function. Read more
source§

fn tanh(self) -> T

Hyperbolic tangent function. Read more
source§

fn asinh(self) -> T

Inverse hyperbolic sine function. Read more
source§

fn acosh(self) -> T

Inverse hyperbolic cosine function. Read more
source§

fn atanh(self) -> T

Inverse hyperbolic tangent function. Read more
source§

impl<Borrowed> SampleBorrow<Borrowed> for Borrowed
where Borrowed: SampleUniform,

source§

fn borrow(&self) -> &Borrowed

Immutably borrows from an owned value. See Borrow::borrow
source§

impl<T, S> SerializeUnsized<S> for T
where T: Serialize<S>, S: Serializer + ?Sized,

source§

fn serialize_unsized( &self, serializer: &mut S ) -> Result<usize, <S as Fallible>::Error>

Writes the object and returns the position of the archived type.
source§

fn serialize_metadata(&self, _: &mut S) -> Result<(), <S as Fallible>::Error>

Serializes the metadata for the given type.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UpperBounded for T
where T: Bounded,

source§

fn max_value() -> T

Returns the largest finite number this type can represent
source§

impl<T> AnyBitPattern for T
where T: Pod,

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> NoUninit for T
where T: Pod,

source§

impl<T> NumAssign for T
where T: Num + NumAssignOps,

source§

impl<T, Rhs> NumAssignOps<Rhs> for T
where T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>,

source§

impl<T> NumAssignRef for T
where T: NumAssign + for<'r> NumAssignOps<&'r T>,

source§

impl<T, Rhs, Output> NumOps<Rhs, Output> for T
where T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>,

source§

impl<T> NumRef for T
where T: Num + for<'r> NumOps<&'r T>,

source§

impl<T, Base> RefNum<Base> for T
where T: NumOps<Base, Base> + for<'r> NumOps<&'r Base, Base>,