Struct reed_solomon_novelpoly::field::f256::Additive[][src]

pub struct Additive(pub Elt);

Additive via XOR form of f2e16

Implementations

impl Additive[src]

pub fn to_wide(self) -> Wide[src]

pub fn from_wide(x: Wide) -> Additive[src]

pub const ZERO: Additive[src]

impl Additive[src]

pub fn to_multiplier(self) -> Multiplier[src]

Return multiplier prepared form

pub fn mul(self, other: Multiplier) -> Additive[src]

Return a*EXP_TABLE[b] over GF(2^r)

pub fn mul_assign_slice(selfy: &mut [Self], other: Multiplier)[src]

Multiply field elements by a single multiplier, using SIMD if available

Trait Implementations

impl BitXor<Additive> for Additive[src]

type Output = Additive

The resulting type after applying the ^ operator.

impl BitXorAssign<Additive> for Additive[src]

impl Clone for Additive[src]

impl Copy for Additive[src]

impl Debug for Additive[src]

impl Default for Additive[src]

impl Eq for Additive[src]

impl PartialEq<Additive> for Additive[src]

impl StructuralEq for Additive[src]

impl StructuralPartialEq for Additive[src]

Auto Trait Implementations

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, 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.