brotli::enc

Type Alias v8

Source
pub type v8 = CompatF8;

Aliased Type§

struct v8([f32; 8]);

Fields§

§0: [f32; 8]

Implementations

Source§

impl CompatF8

Source

pub fn splat(a: f32) -> CompatF8

Source

pub fn simd_ge(&self, rhs: CompatF8) -> Compat32x8

Source

pub fn simd_min(&self, rhs: CompatF8) -> CompatF8

Trait Implementations

Source§

impl Add for CompatF8

Source§

type Output = CompatF8

The resulting type after applying the + operator.
Source§

fn add(self, other: CompatF8) -> CompatF8

Performs the + operation. Read more
Source§

impl AddAssign for CompatF8

Source§

fn add_assign(&mut self, other: CompatF8)

Performs the += operation. Read more
Source§

impl Clone for CompatF8

Source§

fn clone(&self) -> CompatF8

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 CompatF8

Source§

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

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

impl Default for CompatF8

Source§

fn default() -> CompatF8

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

impl From<[f32; 8]> for CompatF8

Source§

fn from(value: [f32; 8]) -> Self

Converts to this type from the input type.
Source§

impl<I> Index<I> for CompatF8
where I: SliceIndex<[f32]>,

Source§

type Output = <I as SliceIndex<[f32]>>::Output

The returned type after indexing.
Source§

fn index(&self, index: I) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
Source§

impl<I> IndexMut<I> for CompatF8
where I: SliceIndex<[f32]>,

Source§

fn index_mut(&mut self, index: I) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
Source§

impl Mul for CompatF8

Source§

type Output = CompatF8

The resulting type after applying the * operator.
Source§

fn mul(self, other: CompatF8) -> CompatF8

Performs the * operation. Read more
Source§

impl Sub for CompatF8

Source§

type Output = CompatF8

The resulting type after applying the - operator.
Source§

fn sub(self, other: CompatF8) -> CompatF8

Performs the - operation. Read more
Source§

impl Copy for CompatF8