(row, cell int)
| 147 | } |
| 148 | |
| 149 | func (tsr *Bits) FloatRowCell(row, cell int) float64 { |
| 150 | _, sz := tsr.RowCellSize() |
| 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)) |
nothing calls this directly
no test coverage detected