MCPcopy
hub / github.com/expr-lang/expr / GreaterOrEqual

Method GreaterOrEqual

internal/testify/assert/assertion_forward.go:491–496  ·  view source on GitHub ↗

GreaterOrEqual asserts that the first element is greater than or equal to the second a.GreaterOrEqual(2, 1) a.GreaterOrEqual(2, 2) a.GreaterOrEqual("b", "a") a.GreaterOrEqual("b", "b")

(e1 interface{}, e2 interface{}, msgAndArgs ...interface{})

Source from the content-addressed store, hash-verified

489// a.GreaterOrEqual("b", "a")
490// a.GreaterOrEqual("b", "b")
491func (a *Assertions) GreaterOrEqual(e1 interface{}, e2 interface{}, msgAndArgs ...interface{}) bool {
492 if h, ok := a.t.(tHelper); ok {
493 h.Helper()
494 }
495 return GreaterOrEqual(a.t, e1, e2, msgAndArgs...)
496}
497
498// GreaterOrEqualf asserts that the first element is greater than or equal to the second
499//

Callers

nothing calls this directly

Calls 2

GreaterOrEqualFunction · 0.70
HelperMethod · 0.45

Tested by

no test coverage detected