MCPcopy Index your code
hub / github.com/LissaGreense/GO4SQL / ValueInterface

Interface ValueInterface

engine/generic_value.go:11–17  ·  view source on GitHub ↗

ValueInterface - Represent all supported types of data that can be inserted into Table

Source from the content-addressed store, hash-verified

9
10// ValueInterface - Represent all supported types of data that can be inserted into Table
11type 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
19type SupportedTypes int
20

Callers 26

EvaluateMethod · 0.65
aggregateColumnContentFunction · 0.65
isEqualMethod · 0.65
getDistinctTableMethod · 0.65
ToStringMethod · 0.65
getColumWidthsFunction · 0.65
runTestSuiteMethod · 0.65
areEqualFunction · 0.65
aggregateColumnContentFunction · 0.65
ToStringMethod · 0.65
areEqualFunction · 0.65
shouldBeEqualFunction · 0.65

Implementers 3

IntegerValueengine/generic_value.go
StringValueengine/generic_value.go
NullValueengine/generic_value.go

Calls

no outgoing calls

Tested by

no test coverage detected