pub trait ToBits {
type Boolean: BooleanTrait;
// Required methods
fn write_bits_le(&self, vec: &mut Vec<Self::Boolean>);
fn write_bits_be(&self, vec: &mut Vec<Self::Boolean>);
// Provided methods
fn to_bits_le(&self) -> Vec<Self::Boolean> { ... }
fn to_bits_be(&self) -> Vec<Self::Boolean> { ... }
}
Expand description
Unary operator for converting to bits.
Required Associated Types§
type Boolean: BooleanTrait
Required Methods§
fn write_bits_le(&self, vec: &mut Vec<Self::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<Self::Boolean>)
Provided Methods§
Sourcefn to_bits_le(&self) -> Vec<Self::Boolean>
fn to_bits_le(&self) -> Vec<Self::Boolean>
Returns the little-endian bits of the circuit.
Sourcefn to_bits_be(&self) -> Vec<Self::Boolean>
fn to_bits_be(&self) -> Vec<Self::Boolean>
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> ToBits for &'a (C0, C1)
impl<'a, B, C0, C1> ToBits for &'a (C0, C1)
Source§fn write_bits_le(&self, vec: &mut Vec<<&'a (C0, C1) as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<&'a (C0, C1) as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<&'a (C0, C1) as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<&'a (C0, C1) as ToBits>::Boolean>)
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> ToBits for &'a (C0, C1, C2)
impl<'a, B, C0, C1, C2> ToBits for &'a (C0, C1, C2)
Source§fn write_bits_le(&self, vec: &mut Vec<<&'a (C0, C1, C2) as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<&'a (C0, C1, C2) as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<&'a (C0, C1, C2) as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<&'a (C0, C1, C2) as ToBits>::Boolean>)
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 write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3) as ToBits>::Boolean>, )
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)
impl<'a, B, C0, C1, C2, C3, C4> ToBits for &'a (C0, C1, C2, C3, C4)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4) as ToBits>::Boolean>, )
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)
impl<'a, B, C0, C1, C2, C3, C4, C5> ToBits for &'a (C0, C1, C2, C3, C4, C5)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>, )
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)
impl<'a, B, C0, C1, C2, C3, C4, C5, C6> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>, )
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)
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>, )
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)
impl<'a, B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for &'a (C0, C1, C2, C3, C4, C5, C6, C7, C8)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>, )
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)
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)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>, )
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)
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)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<&'a (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>, )
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)
impl<B, C0, C1> ToBits for (C0, C1)
Source§fn write_bits_le(&self, vec: &mut Vec<<(C0, C1) as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<(C0, C1) as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<(C0, C1) as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<(C0, C1) as ToBits>::Boolean>)
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)
impl<B, C0, C1, C2> ToBits for (C0, C1, C2)
Source§fn write_bits_le(&self, vec: &mut Vec<<(C0, C1, C2) as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<(C0, C1, C2) as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<(C0, C1, C2) as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<(C0, C1, C2) as ToBits>::Boolean>)
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 write_bits_le(&self, vec: &mut Vec<<(C0, C1, C2, C3) as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<(C0, C1, C2, C3) as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<(C0, C1, C2, C3) as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<(C0, C1, C2, C3) as ToBits>::Boolean>)
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)
impl<B, C0, C1, C2, C3, C4> ToBits for (C0, C1, C2, C3, C4)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4) as ToBits>::Boolean>, )
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)
impl<B, C0, C1, C2, C3, C4, C5> ToBits for (C0, C1, C2, C3, C4, C5)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5) as ToBits>::Boolean>, )
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)
impl<B, C0, C1, C2, C3, C4, C5, C6> ToBits for (C0, C1, C2, C3, C4, C5, C6)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6) as ToBits>::Boolean>, )
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)
impl<B, C0, C1, C2, C3, C4, C5, C6, C7> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7) as ToBits>::Boolean>, )
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)
impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8) as ToBits>::Boolean>, )
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)
impl<B, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9> ToBits for (C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9) as ToBits>::Boolean>, )
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)
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)
Source§fn write_bits_le(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>,
)
fn write_bits_le( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>, )
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(
&self,
vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>,
)
fn write_bits_be( &self, vec: &mut Vec<<(C0, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10) as ToBits>::Boolean>, )
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 write_bits_le(&self, vec: &mut Vec<<&[C] as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<&[C] as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<&[C] as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<&[C] as ToBits>::Boolean>)
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>where
C: ToBits<Boolean = B>,
B: BooleanTrait,
impl<C, B> ToBits for Vec<C>where
C: ToBits<Boolean = B>,
B: BooleanTrait,
Source§fn write_bits_le(&self, vec: &mut Vec<<Vec<C> as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<Vec<C> as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<Vec<C> as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<Vec<C> as ToBits>::Boolean>)
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 write_bits_le(&self, vec: &mut Vec<<[C; N] as ToBits>::Boolean>)
fn write_bits_le(&self, vec: &mut Vec<<[C; N] as ToBits>::Boolean>)
A helper method to return a concatenated list of little-endian bits from the circuits.
Source§fn write_bits_be(&self, vec: &mut Vec<<[C; N] as ToBits>::Boolean>)
fn write_bits_be(&self, vec: &mut Vec<<[C; N] as ToBits>::Boolean>)
A helper method to return a concatenated list of big-endian bits from the circuits.