(a, out *int256, gas *uint64)
| 65 | } |
| 66 | |
| 67 | func Neg(a, out *int256, gas *uint64) *int256 { |
| 68 | out.Neg(a) // also has new, maybe more gas? |
| 69 | *gas += GasFastestStep |
| 70 | return out |
| 71 | } |
| 72 | |
| 73 | func IsZero(a *int256, gas *uint64) bool { |
| 74 | return a.IsZero() |