True iff the type id is encoded as a number encoding and is unsigned.
(id int)
| 180 | |
| 181 | // True iff the type id is encoded as a number encoding and is unsigned. |
| 182 | func IsUnsigned(id int) bool { |
| 183 | return id <= IDUint256 |
| 184 | } |
| 185 | |
| 186 | func LookupPrimitive(name string) Type { |
| 187 | switch name { |
no outgoing calls
no test coverage detected