MCPcopy Create free account
hub / github.com/featureform/featureform / Contains

Method Contains

helpers/string_set/string_set.go:5–12  ·  view source on GitHub ↗
(b StringSet)

Source from the content-addressed store, hash-verified

3type StringSet map[string]bool
4
5func (a StringSet) Contains(b StringSet) bool {
6 for str := range b {
7 if _, ok := a[str]; !ok {
8 return false
9 }
10 }
11 return true
12}

Callers 15

TestStringSetContainsFunction · 0.95
TestStringSetEmptySetAFunction · 0.95
TestStringSetEmptySetBFunction · 0.95
BuildDashboardUrlFunction · 0.80
getPodLogsFunction · 0.80
isValidMongoConfigUpdateFunction · 0.80
isValidMySqlConfigUpdateFunction · 0.80

Calls

no outgoing calls

Tested by 11

TestStringSetContainsFunction · 0.76
TestStringSetEmptySetAFunction · 0.76
TestStringSetEmptySetBFunction · 0.76
TestSourceShallowMapOKFunction · 0.64
TestParseStatFileFunction · 0.64
testResourceLocationFunction · 0.64
getTableNameFunction · 0.64
sanitizeTableNameFunction · 0.64