()
| 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 |
no outgoing calls