Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Operator ¶
type Operator = string
const ( // for string and equality in genral (==) OperatorIs Operator = "Is" OperatorIsNot Operator = "IsNot" // for string OperatorIn Operator = "In" OperatorNotIn Operator = "NotIn" // for numeric // > OperatorGreaterThan Operator = "GreaterThan" OperatorMoreThan Operator = "MoreThan" // < OperatorSmallerThan Operator = "SmallerThan" OperatorLessThan Operator = "LessThan" // >= OperatorEqualOrGreaterThan Operator = "EqualOrGreaterThan" OperatorEqualOrMoreThan Operator = "EqualOrMoreThan" // <= OperatorEqualOrSmallerThan Operator = "EqualOrSmallerThan" OperatorEqualOrLessThan Operator = "EqualOrLessThan" )
Click to show internal directories.
Click to hide internal directories.