(i []int, val float64)
| 123 | } |
| 124 | |
| 125 | func (tsr *Bits) SetFloat(i []int, val float64) { |
| 126 | j := tsr.Shp.Offset(i) |
| 127 | tsr.Values.Set(j, Float64ToBool(val)) |
| 128 | } |
| 129 | |
| 130 | func (tsr *Bits) StringValue(i []int) string { |
| 131 | j := tsr.Shp.Offset(i) |
nothing calls this directly
no test coverage detected