Trait snarkvm_circuit_types::ToBits
source · pub trait ToBits {
type Boolean: BooleanTrait;
// Required methods
fn to_bits_le(&self) -> Vec<Self::Boolean, Global>;
fn to_bits_be(&self) -> Vec<Self::Boolean, Global>;
}
Expand description
Unary operator for converting to bits.
Required Associated Types§
type Boolean: BooleanTrait
Required Methods§
sourcefn to_bits_le(&self) -> Vec<Self::Boolean, Global>
fn to_bits_le(&self) -> Vec<Self::Boolean, Global>
Returns the little-endian bits of the circuit.
sourcefn to_bits_be(&self) -> Vec<Self::Boolean, Global>
fn to_bits_be(&self) -> Vec<Self::Boolean, Global>
Returns the big-endian bits of the circuit.
Trait Implementations§
source§impl<E> OutputMode<dyn ToBits<Boolean = Boolean<E>>> for Field<E>where
E: Environment,
impl<E> OutputMode<dyn ToBits<Boolean = Boolean<E>>> for Field<E>where E: Environment,
Implementations on Foreign Types§
source§impl<'a, B, C0, C1, C2> ToBits for &'a (C0, C1, C2)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2> ToBits for &'a (C0, C1, C2)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<&'a (C0, C1, C2) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<&'a (C0, C1, C2) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<&'a (C0, C1, C2) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<&'a (C0, C1, C2) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4> ToBits for (C0, C1, C2, C3, C4)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4> ToBits for (C0, C1, C2, C3, C4)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3> ToBits for &'a (C0, C1, C2, C3)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3> ToBits for &'a (C0, C1, C2, C3)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2> ToBits for (C0, C1, C2)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
impl<B, C0, C1, C2> ToBits for (C0, C1, C2)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<(C0, C1, C2) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<(C0, C1, C2) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<(C0, C1, C2) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<(C0, C1, C2) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
C9: ToBits<Boolean = B>,
C10: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>, C9: ToBits<Boolean = B>, C10: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5, C6> ToBits for (C0, C1, C2, C3, C4, C5, C6)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5, C6> ToBits for (C0, C1, C2, C3, C4, C5, C6)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5, C6> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5, C6> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<C, B> ToBits for Vec<C, Global>where
C: ToBits<Boolean = B>,
B: BooleanTrait,
impl<C, B> ToBits for Vec<C, Global>where C: ToBits<Boolean = B>, B: BooleanTrait,
source§fn to_bits_le(&self) -> Vec<<Vec<C, Global> as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<Vec<C, Global> as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<Vec<C, Global> as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<Vec<C, Global> as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4> ToBits for &'a (C0, C1, C2, C3, C4)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4> ToBits for &'a (C0, C1, C2, C3, C4)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5> ToBits for &'a (C0, C1, C2, C3, C4, C5)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5> ToBits for &'a (C0, C1, C2, C3, C4, C5)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3> ToBits for (C0, C1, C2, C3)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3> ToBits for (C0, C1, C2, C3)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<(C0, C1, C2, C3) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<(C0, C1, C2, C3) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<(C0, C1, C2, C3) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<(C0, C1, C2, C3) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
C9: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>, C9: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<C, B, const N: usize> ToBits for [C; N]where
C: ToBits<Boolean = B>,
B: BooleanTrait,
impl<C, B, const N: usize> ToBits for [C; N]where C: ToBits<Boolean = B>, B: BooleanTrait,
source§fn to_bits_le(&self) -> Vec<<[C; N] as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<[C; N] as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<[C; N] as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<[C; N] as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1> ToBits for (C0, C1)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
impl<B, C0, C1> ToBits for (C0, C1)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<(C0, C1) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<(C0, C1) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<(C0, C1) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<(C0, C1) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5> ToBits for (C0, C1, C2, C3, C4, C5)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5> ToBits for (C0, C1, C2, C3, C4, C5)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
C9: ToBits<Boolean = B>,
C10: ToBits<Boolean = B>,
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>, C9: ToBits<Boolean = B>, C10: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<'a, B, C0, C1> ToBits for &'a (C0, C1)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
impl<'a, B, C0, C1> ToBits for &'a (C0, C1)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>,
source§fn to_bits_le(&self) -> Vec<<&'a (C0, C1) as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<&'a (C0, C1) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<&'a (C0, C1) as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<&'a (C0, C1) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)where
B: BooleanTrait,
C0: ToBits<Boolean = B>,
C1: ToBits<Boolean = B>,
C2: ToBits<Boolean = B>,
C3: ToBits<Boolean = B>,
C4: ToBits<Boolean = B>,
C5: ToBits<Boolean = B>,
C6: ToBits<Boolean = B>,
C7: ToBits<Boolean = B>,
C8: ToBits<Boolean = B>,
C9: ToBits<Boolean = B>,
impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)where B: BooleanTrait, C0: ToBits<Boolean = B>, C1: ToBits<Boolean = B>, C2: ToBits<Boolean = B>, C3: ToBits<Boolean = B>, C4: ToBits<Boolean = B>, C5: ToBits<Boolean = B>, C6: ToBits<Boolean = B>, C7: ToBits<Boolean = B>, C8: ToBits<Boolean = B>, C9: ToBits<Boolean = B>,
source§fn to_bits_le(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
fn to_bits_le( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(
&self
) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
fn to_bits_be( &self ) -> Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<C, B> ToBits for &[C]where
C: ToBits<Boolean = B>,
B: BooleanTrait,
impl<C, B> ToBits for &[C]where C: ToBits<Boolean = B>, B: BooleanTrait,
source§fn to_bits_le(&self) -> Vec<<&[C] as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<&[C] as ToBits>::Boolean, Global>
A helper method to return a concatenated list of little-endian bits from the circuits.
source§fn to_bits_be(&self) -> Vec<<&[C] as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<&[C] as ToBits>::Boolean, Global>
A helper method to return a concatenated list of big-endian bits from the circuits.
type Boolean = B
source§impl<E, I> ToBits for &Integer<E, I>where
E: Environment,
I: IntegerType,
impl<E, I> ToBits for &Integer<E, I>where E: Environment, I: IntegerType,
source§fn to_bits_le(&self) -> Vec<<&Integer<E, I> as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<&Integer<E, I> as ToBits>::Boolean, Global>
Outputs the little-endian bit representation of self
with trailing zeros.
source§fn to_bits_be(&self) -> Vec<<&Integer<E, I> as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<&Integer<E, I> as ToBits>::Boolean, Global>
Outputs the big-endian bit representation of self
with leading zeros.
type Boolean = Boolean<E>
source§impl<E, I> ToBits for Integer<E, I>where
E: Environment,
I: IntegerType,
impl<E, I> ToBits for Integer<E, I>where E: Environment, I: IntegerType,
source§fn to_bits_le(&self) -> Vec<<Integer<E, I> as ToBits>::Boolean, Global>
fn to_bits_le(&self) -> Vec<<Integer<E, I> as ToBits>::Boolean, Global>
Outputs the little-endian bit representation of self
with trailing zeros.
source§fn to_bits_be(&self) -> Vec<<Integer<E, I> as ToBits>::Boolean, Global>
fn to_bits_be(&self) -> Vec<<Integer<E, I> as ToBits>::Boolean, Global>
Outputs the big-endian bit representation of self
with leading zeros.