MCPcopy Create free account
hub / github.com/github/gh-aw / or2

Function or2

pkg/workflow/expression_optimizer_test.go:43–43  ·  view source on GitHub ↗

or2 builds a binary OR.

(left, right ConditionNode)

Source from the content-addressed store, hash-verified

41
42// or2 builds a binary OR.
43func or2(left, right ConditionNode) *OrNode { return &OrNode{Left: left, Right: right} }
44
45// not1 builds a NOT node.
46func not1(child ConditionNode) *NotNode { return &NotNode{Child: child} }

Calls

no outgoing calls

Tested by

no test coverage detected