We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd7344 commit 02b8540Copy full SHA for 02b8540
set.go
@@ -3,8 +3,8 @@ package ep
3
// StringsSet holds set of unique strings
4
type StringsSet map[string]struct{}
5
6
-// Contains checks if other StringsSet included in the current StringsSet
7
-func (r StringsSet) Contains(other StringsSet) bool {
+// ContainsAll checks if other StringsSet included in the current StringsSet
+func (r StringsSet) ContainsAll(other StringsSet) bool {
8
for s := range other {
9
if _, ok := r[s]; !ok {
10
return false
0 commit comments