Len returns the number of float32 elements in the array It is equivalent to Size()
()
| 33 | // Len returns the number of float32 elements in the array |
| 34 | // It is equivalent to Size() |
| 35 | func (a *ArrayF32) Len() int { |
| 36 | |
| 37 | return len(*a) |
| 38 | } |
| 39 | |
| 40 | // Append appends any number of values to the array |
| 41 | func (a *ArrayF32) Append(v ...float32) { |