Append appends n elements to the array updating the slice if necessary
(v ...uint32)
| 242 | |
| 243 | // Append appends n elements to the array updating the slice if necessary |
| 244 | func (a *ArrayU32) Append(v ...uint32) { |
| 245 | |
| 246 | *a = append(*a, v...) |
| 247 | } |
| 248 | |
| 249 | // ToUint32 converts this array to an array of uint32 |
| 250 | func (a ArrayU32) ToUint32() []uint32 { |
no outgoing calls
no test coverage detected