Documentation ¶
Overview ¶
Package compare provides template functions for comparing values.
Index ¶
- type Namespace
- func (n *Namespace) Conditional(condition bool, a, b interface{}) interface{}
- func (*Namespace) Default(dflt interface{}, given ...interface{}) (interface{}, error)
- func (n *Namespace) Eq(first interface{}, others ...interface{}) bool
- func (n *Namespace) Ge(first interface{}, others ...interface{}) bool
- func (n *Namespace) Gt(first interface{}, others ...interface{}) bool
- func (n *Namespace) Le(first interface{}, others ...interface{}) bool
- func (n *Namespace) Lt(first interface{}, others ...interface{}) bool
- func (n *Namespace) Ne(first interface{}, others ...interface{}) bool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Namespace ¶
type Namespace struct {
// contains filtered or unexported fields
}
Namespace provides template functions for the "compare" namespace.
func (*Namespace) Conditional ¶ added in v0.27.1
Conditional can be used as a ternary operator. It returns a if condition, else b.
func (*Namespace) Default ¶
Default checks whether a given value is set and returns a default value if it is not. "Set" in this context means non-zero for numeric types and times; non-zero length for strings, arrays, slices, and maps; any boolean or struct value; or non-nil for any other types.
func (*Namespace) Eq ¶
Eq returns the boolean truth of arg1 == arg2 || arg1 == arg3 || arg1 == arg4.
func (*Namespace) Ge ¶
Ge returns the boolean truth of arg1 >= arg2 && arg1 >= arg3 && arg1 >= arg4.
func (*Namespace) Le ¶
Le returns the boolean truth of arg1 <= arg2 && arg1 <= arg3 && arg1 <= arg4.