pub trait ToFields {
    type Field: FieldTrait;

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

Unary operator for converting to a list of base fields.

Required Associated Types

Required Methods

Returns the object as a list of base field elements.

Implementations on Foreign Types

Returns the group as field elements.

Returns the integer as field elements.

Implementors