Cmp compares two Ints for equality or inequality
(s2 kyber.Scalar)
| 135 | |
| 136 | // Cmp compares two Ints for equality or inequality |
| 137 | func (i *Int) Cmp(s2 kyber.Scalar) int { |
| 138 | return i.V.Cmp(&s2.(*Int).V) |
| 139 | } |
| 140 | |
| 141 | // Equal returns true if the two Ints are equal |
| 142 | func (i *Int) Equal(s2 kyber.Scalar) bool { |
no outgoing calls
no test coverage detected