(row, cell int, val float64)
| 151 | return BoolToFloat64(tsr.Values.Index(row*sz + cell)) |
| 152 | } |
| 153 | func (tsr *Bits) SetFloatRowCell(row, cell int, val float64) { |
| 154 | _, sz := tsr.RowCellSize() |
| 155 | tsr.Values.Set(row*sz+cell, Float64ToBool(val)) |
| 156 | } |
| 157 | |
| 158 | func (tsr *Bits) Floats(flt *[]float64) { |
| 159 | sz := tsr.Len() |
nothing calls this directly
no test coverage detected