ValueInterface - Represent all supported types of data that can be inserted into Table
| 9 | |
| 10 | // ValueInterface - Represent all supported types of data that can be inserted into Table |
| 11 | type ValueInterface interface { |
| 12 | ToString() string |
| 13 | GetType() SupportedTypes |
| 14 | IsEqual(valueInterface ValueInterface) bool |
| 15 | isSmallerThan(valueInterface ValueInterface) bool |
| 16 | isGreaterThan(valueInterface ValueInterface) bool |
| 17 | } |
| 18 | |
| 19 | type SupportedTypes int |
| 20 |
no outgoing calls
no test coverage detected