MCPcopy Create free account
hub / github.com/catppuccin/cli / BoolAnd

Function BoolAnd

internal/utils/utils.go:86–91  ·  view source on GitHub ↗

BoolAnd uses booleans in an AND operator

(first bool, second bool)

Source from the content-addressed store, hash-verified

84
85// BoolAnd uses booleans in an AND operator
86func BoolAnd(first bool, second bool) bool {
87 if first || second {
88 return true
89 }
90 return false
91}
92
93// SearchRepos searches through a SearchRes for the best match
94func SearchRepos(repos structs.SearchRes, term string) structs.SearchEntry {

Callers 1

CheckBetterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected