pub trait ToFields {
    type Field: FieldTrait;

    fn to_fields(&self) -> Vec<Self::Field, Global>;
}
Expand description

Unary operator for converting to a list of base fields.

Required Associated Types

Required Methods

Returns the circuit as a list of base field elements.

Implementors