Equal returns true if the two Ints are equal
(s2 kyber.Scalar)
| 140 | |
| 141 | // Equal returns true if the two Ints are equal |
| 142 | func (i *Int) Equal(s2 kyber.Scalar) bool { |
| 143 | return i.V.Cmp(&s2.(*Int).V) == 0 |
| 144 | } |
| 145 | |
| 146 | // Nonzero returns true if the integer value is nonzero. |
| 147 | func (i *Int) Nonzero() bool { |