pub struct ForeignElement<F: Field, const B: usize, const N: usize> {
    pub limbs: [F; N],
    /* private fields */
}
Expand description

Represents a foreign field element Represents a foreign field element

Fields§

§limbs: [F; N]

limbs in little endian order

Implementations§

source§

impl<F: Field, const B: usize, const N: usize> ForeignElement<F, B, N>

source

pub fn new(limbs: [F; N]) -> Self

Creates a new foreign element from an array containing N limbs

source

pub fn zero() -> Self

Creates a new foreign element representing the value zero

source

pub fn from_biguint(big: BigUint) -> Self

Initializes a new foreign element from a big unsigned integer Panics if the BigUint is too large to fit in the N limbs

source

pub fn neg(&self, modulus: &BigUint) -> Self

Initializes a new foreign element from an absolute BigUint but the equivalent foreign element obtained corresponds to the negated input. It first converts the input big element to a big integer modulo the foreign field modulus, and then computes the negation of the result.

source

pub fn from_be(bytes: &[u8]) -> Self

Initializes a new foreign element from a set of bytes in big endian

source

pub fn to_biguint(&self) -> BigUint

Obtains the big integer representation of the foreign field element

source§

impl<F: PrimeField, const B: usize, const N: usize> ForeignElement<F, B, N>

source

pub fn from_field(field: F) -> Self

Initializes a new foreign element from an element in the native field

Trait Implementations§

source§

impl<F: Clone + Field, const B: usize, const N: usize> Clone for ForeignElement<F, B, N>

source§

fn clone(&self) -> ForeignElement<F, B, N>

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<F: Field, const B: usize, const N: usize> Debug for ForeignElement<F, B, N>

source§

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

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

impl<F: Field, const B: usize, const N: usize> ForeignFieldHelpers<F, B> for ForeignElement<F, B, N>

source§

fn two_to_limb() -> F

2^{B}
source§

fn two_to_2limb() -> F

2^{2 * B}
source§

fn two_to_3limb() -> F

2^{3 * B}
source§

impl<F: Field, const B: usize, const N: usize> Index<usize> for ForeignElement<F, B, N>

§

type Output = F

The returned type after indexing.
source§

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

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

impl<F: Field, const B: usize, const N: usize> IndexMut<usize> for ForeignElement<F, B, N>

source§

fn index_mut(&mut self, idx: usize) -> &mut Self::Output

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

impl<F: PartialEq + Field, const B: usize, const N: usize> PartialEq for ForeignElement<F, B, N>

source§

fn eq(&self, other: &ForeignElement<F, B, N>) -> 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<F: Eq + Field, const B: usize, const N: usize> Eq for ForeignElement<F, B, N>

source§

impl<F: Field, const B: usize, const N: usize> StructuralEq for ForeignElement<F, B, N>

source§

impl<F: Field, const B: usize, const N: usize> StructuralPartialEq for ForeignElement<F, B, N>

Auto Trait Implementations§

§

impl<F, const B: usize, const N: usize> RefUnwindSafe for ForeignElement<F, B, N>
where F: RefUnwindSafe,

§

impl<F, const B: usize, const N: usize> Send for ForeignElement<F, B, N>

§

impl<F, const B: usize, const N: usize> Sync for ForeignElement<F, B, N>

§

impl<F, const B: usize, const N: usize> Unpin for ForeignElement<F, B, N>
where F: Unpin,

§

impl<F, const B: usize, const N: usize> UnwindSafe for ForeignElement<F, B, N>
where F: UnwindSafe,

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

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
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, 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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V