(typ super.Type, values []uint64)
| 13 | var _ Any = (*Uint)(nil) |
| 14 | |
| 15 | func NewUint(typ super.Type, values []uint64) *Uint { |
| 16 | return &Uint{typ, values} |
| 17 | } |
| 18 | |
| 19 | func NewUintEmpty(typ super.Type, length uint32) *Uint { |
| 20 | return NewUint(typ, make([]uint64, 0, length)) |
no outgoing calls