MCPcopy Index your code
hub / github.com/coder/coder / nullUUIDEqual

Function nullUUIDEqual

coderd/x/chatd/chatd.go:724–732  ·  view source on GitHub ↗
(left, right uuid.NullUUID)

Source from the content-addressed store, hash-verified

722}
723
724func nullUUIDEqual(left, right uuid.NullUUID) bool {
725 if left.Valid != right.Valid {
726 return false
727 }
728 if !left.Valid {
729 return true
730 }
731 return left.UUID == right.UUID
732}
733
734func (c *turnWorkspaceContext) persistBuildAgentBinding(
735 ctx context.Context,

Callers 3

ensureWorkspaceAgentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected