(off int)
| 140 | } |
| 141 | |
| 142 | func (tsr *Bits) Float1D(off int) 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 | } |
nothing calls this directly
no test coverage detected