Skip to main content

ps_ecc/polynomial/implementations/
default.rs

1use crate::Polynomial;
2
3impl Default for Polynomial {
4    fn default() -> Self {
5        Self {
6            coefficients: [0; _],
7            degree: 0,
8        }
9    }
10}