(i []int)
| 118 | } |
| 119 | |
| 120 | func (tsr *Bits) Float(i []int) float64 { |
| 121 | j := tsr.Shp.Offset(i) |
| 122 | return BoolToFloat64(tsr.Values.Index(j)) |
| 123 | } |
| 124 | |
| 125 | func (tsr *Bits) SetFloat(i []int, val float64) { |
| 126 | j := tsr.Shp.Offset(i) |
nothing calls this directly
no test coverage detected