TableString is a TableValue that stores a string. TableString is used for displaying text in a Table.
| 14 | // TableString is a TableValue that stores a string. TableString is |
| 15 | // used for displaying text in a Table. |
| 16 | type TableString string |
| 17 | |
| 18 | func (s TableString) toLibui() *C.uiTableValue { |
| 19 | cs := C.CString(string(s)) |
no outgoing calls
no test coverage detected