(row, cell int)
| 182 | } |
| 183 | |
| 184 | func (tsr *Bits) StringRowCell(row, cell int) string { |
| 185 | _, sz := tsr.RowCellSize() |
| 186 | return reflectx.ToString(tsr.Values.Index(row*sz + cell)) |
| 187 | } |
| 188 | |
| 189 | func (tsr *Bits) SetStringRowCell(row, cell int, val string) { |
| 190 | if bv, err := reflectx.ToBool(val); err == nil { |
nothing calls this directly
no test coverage detected