The number of powers in `self`.
(&self)
| 131 | impl<E: Pairing> Powers<'_, E> { |
| 132 | /// The number of powers in `self`. |
| 133 | pub fn size(&self) -> usize { |
| 134 | self.powers_of_g.len() |
| 135 | } |
| 136 | } |
| 137 | impl<'a, E: Pairing> Valid for Powers<'a, E> { |
| 138 | fn check(&self) -> Result<(), SerializationError> { |
no test coverage detected