Return the Int's integer value in hexadecimal string representation.
()
| 111 | |
| 112 | // Return the Int's integer value in hexadecimal string representation. |
| 113 | func (i *Int) String() string { |
| 114 | return hex.EncodeToString(i.V.Bytes()) |
| 115 | } |
| 116 | |
| 117 | // SetString sets the Int to a rational fraction n/d represented by a pair of strings. |
| 118 | // If d == "", then the denominator is taken to be 1. |