MCPcopy Index your code
hub / github.com/git-lfs/git-lfs / IsSuperset

Method IsSuperset

tools/stringset.go:67–69  ·  view source on GitHub ↗

Determines if every item of this set is in the other set.

(other StringSet)

Source from the content-addressed store, hash-verified

65
66// Determines if every item of this set is in the other set.
67func (set StringSet) IsSuperset(other StringSet) bool {
68 return other.IsSubset(set)
69}
70
71// Returns a new set with all items in both sets.
72func (set StringSet) Union(other StringSet) StringSet {

Calls 1

IsSubsetMethod · 0.45