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

Function and2

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

and2 builds a binary AND.

(left, right ConditionNode)

Source from the content-addressed store, hash-verified

38
39// and2 builds a binary AND.
40func and2(left, right ConditionNode) *AndNode { return &AndNode{Left: left, Right: right} }
41
42// or2 builds a binary OR.
43func or2(left, right ConditionNode) *OrNode { return &OrNode{Left: left, Right: right} }

Calls

no outgoing calls

Tested by

no test coverage detected