| 317 | } |
| 318 | |
| 319 | type uintBuilder struct { |
| 320 | typ super.Type |
| 321 | values []uint64 |
| 322 | } |
| 323 | |
| 324 | func (u *uintBuilder) Write(bytes scode.Bytes) { |
| 325 | u.values = append(u.values, super.DecodeUint(bytes)) |
nothing calls this directly
no outgoing calls
no test coverage detected