(row, cell int)
| 128 | } |
| 129 | |
| 130 | func (tsr *String) FloatRowCell(row, cell int) float64 { |
| 131 | _, sz := tsr.Shp.RowCellSize() |
| 132 | return StringToFloat64(tsr.Values[row*sz+cell]) |
| 133 | } |
| 134 | |
| 135 | func (tsr *String) SetFloatRowCell(row, cell int, val float64) { |
| 136 | _, sz := tsr.Shp.RowCellSize() |
nothing calls this directly
no test coverage detected