diff --git a/field/src/polynomial/mod.rs b/field/src/polynomial/mod.rs index 6577dc52..20f1c318 100644 --- a/field/src/polynomial/mod.rs +++ b/field/src/polynomial/mod.rs @@ -118,6 +118,7 @@ impl PolynomialCoeffs { PolynomialCoeffs { coeffs } } + /// The empty list of coefficients, which is the smallest encoding of the zero polynomial. pub fn empty() -> Self { Self::new(Vec::new()) }