FloatArray encapsulates methods for using the float array support mark pos if it has value
| 22 | // FloatArray encapsulates methods for using the float array |
| 23 | // support mark pos if it has value |
| 24 | type FloatArray struct { |
| 25 | it *FloatArrayIterator |
| 26 | marks []uint8 |
| 27 | values []float64 |
| 28 | capacity int |
| 29 | size int |
| 30 | isSingle bool |
| 31 | } |
| 32 | |
| 33 | // NewFloatArray creates a float array with a certain capacity |
| 34 | func NewFloatArray(capacity int) *FloatArray { |
nothing calls this directly
no outgoing calls
no test coverage detected