GetValue returns the data value for the specified index. index bound is not checked! The return value points to the internal buffer location that stores the value.
(index int)
| 193 | // index bound is not checked! |
| 194 | // The return value points to the internal buffer location that stores the value. |
| 195 | func (v *Vector) GetValue(index int) unsafe.Pointer { |
| 196 | return unsafe.Pointer(v.buffer + uintptr(v.unitBits/8*index)) |
| 197 | } |
| 198 | |
| 199 | // GetMinValue return the min value of the Vector Party |
| 200 | func (v *Vector) GetMinValue() uint32 { |
no outgoing calls
no test coverage detected