TableValue is a type that represents a piece of data that can come out of a TableModel.
| 8 | // TableValue is a type that represents a piece of data that can come |
| 9 | // out of a TableModel. |
| 10 | type TableValue interface { |
| 11 | toLibui() *C.uiTableValue |
| 12 | } |
| 13 | |
| 14 | // TableString is a TableValue that stores a string. TableString is |
| 15 | // used for displaying text in a Table. |
no outgoing calls
no test coverage detected