kubernetes/staging/src/k8s.io/client-go/third_party/forked/golang/template/funcs.go

var errBadComparisonType

var errBadComparison

var errNoComparison

type kind

const invalidKind

const boolKind

const complexKind

const intKind

const floatKind

const integerKind

const stringKind

const uintKind

func basicKind(v reflect.Value) (kind, error) {}

// Equal evaluates the comparison a == b || a == c || ...
func Equal(arg1 interface{}

// NotEqual evaluates the comparison a != b.
func NotEqual(arg1, arg2 interface{}

// Less evaluates the comparison a < b.
func Less(arg1, arg2 interface{}

// LessEqual evaluates the comparison <= b.
func LessEqual(arg1, arg2 interface{}

// Greater evaluates the comparison a > b.
func Greater(arg1, arg2 interface{}

// GreaterEqual evaluates the comparison a >= b.
func GreaterEqual(arg1, arg2 interface{}