# Functions
Add u to v and return the result.
No description provided by the author
BitwiseAnd calculates v & u and returns the result.
BitwiseOr calculates v | u and returns the result.
BitwiseXor calculates v ^ u and returns the result.
Div calculates v / u and returns the result.
Fields returns a list of all the fields at the root of the object sorted lexicographically.
No description provided by the author
IsEqual returns true if v is equal to the given value.
IsGreaterThan returns true if v is greather than the given value.
IsGreaterThanOrEqual returns true if v is greather than or equal to the given value.
IsLesserThan returns true if v is lesser than the given value.
IsLesserThanOrEqual returns true if v is lesser than or equal to the given value.
IsNotEqual returns true if v is not equal to the given value.
No description provided by the author
IsTruthy returns whether v is not equal to the zero value of its type.
IsZeroValue indicates if the value data is the zero value for the value type.
No description provided by the author
Mod calculates v / u and returns the result.
Mul calculates v * u and returns the result.
NewArrayValue returns a SQL ARRAY value.
NewBlobValue returns a SQL BLOB value.
NewBoolValue returns a SQL BOOL value.
NewDoubleValue returns a SQL DOUBLE value.
NewIntegerValue returns a SQL INTEGER value.
NewNullValue returns a SQL NULL value.
NewObjectValue returns a SQL OBJECT value.
NewTextValue returns a SQL TEXT value.
NewTimestampValue returns a SQL TIMESTAMP value.
NewValueWith creates a value with the given type and value.
No description provided by the author
Sub calculates v - u and returns the result.
# Constants
AnyValue denotes the absence of type.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
List of supported value types.
# Variables
ErrFieldNotFound must be returned by object implementations, when calling the GetByField method and the field wasn't found in the object.
ErrValueNotFound must be returned by Array implementations, when calling the GetByIndex method and the index wasn't found in the array.
# Type aliases
ValueType represents a value type supported by the database.