Size returns the number of float32 elements in the array
()
| 26 | |
| 27 | // Size returns the number of float32 elements in the array |
| 28 | func (a *ArrayF32) Size() int { |
| 29 | |
| 30 | return len(*a) |
| 31 | } |
| 32 | |
| 33 | // Len returns the number of float32 elements in the array |
| 34 | // It is equivalent to Size() |
no outgoing calls
no test coverage detected