(i []int, val float64)
| 115 | } |
| 116 | |
| 117 | func (tsr *String) SetFloat(i []int, val float64) { |
| 118 | j := tsr.Shp.Offset(i) |
| 119 | tsr.Values[j] = Float64ToString(val) |
| 120 | } |
| 121 | |
| 122 | func (tsr *String) Float1D(off int) float64 { |
| 123 | return StringToFloat64(tsr.Values[off]) |
nothing calls this directly
no test coverage detected