(off int)
| 120 | } |
| 121 | |
| 122 | func (tsr *String) Float1D(off int) float64 { |
| 123 | return StringToFloat64(tsr.Values[off]) |
| 124 | } |
| 125 | |
| 126 | func (tsr *String) SetFloat1D(off int, val float64) { |
| 127 | tsr.Values[off] = Float64ToString(val) |
nothing calls this directly
no test coverage detected