(off int, val float64)
| 143 | return BoolToFloat64(tsr.Values.Index(off)) |
| 144 | } |
| 145 | func (tsr *Bits) SetFloat1D(off int, val float64) { |
| 146 | tsr.Values.Set(off, Float64ToBool(val)) |
| 147 | } |
| 148 | |
| 149 | func (tsr *Bits) FloatRowCell(row, cell int) float64 { |
| 150 | _, sz := tsr.RowCellSize() |
nothing calls this directly
no test coverage detected