This commit is contained in:
Daniel Lubarov 2022-08-22 11:32:36 -07:00
parent 464b23297c
commit e87392bdba

View File

@ -118,6 +118,7 @@ impl<F: Field> PolynomialCoeffs<F> {
PolynomialCoeffs { coeffs }
}
/// The empty list of coefficients, which is the smallest encoding of the zero polynomial.
pub fn empty() -> Self {
Self::new(Vec::new())
}