Documentation ¶
Overview ¶
Package lancetconstraints contain some comstomer constraints.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Comparator ¶
type Comparator interface { // Compare v1 and v2 // Ascending order: should return 1 -> v1 > v2, 0 -> v1 = v2, -1 -> v1 < v2 // Descending order: should return 1 -> v1 < v2, 0 -> v1 = v2, -1 -> v1 > v2 Compare(v1, v2 any) int }
Comparator is for comparing two values
Click to show internal directories.
Click to hide internal directories.