github.com/spotmaxtech/k8s-apimachinery-v0260@v0.0.1/pkg/util/sets/int.go (about) 1 /* 2 Copyright 2022 The Kubernetes Authors. 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15 */ 16 17 package sets 18 19 // Int is a set of ints, implemented via map[int]struct{} for minimal memory consumption. 20 // 21 // Deprecated: use generic Set instead. 22 // new ways: 23 // s1 := Set[int]{} 24 // s2 := New[int]() 25 type Int map[int]Empty 26 27 // NewInt creates a Int from a list of values. 28 func NewInt(items ...int) Int { 29 return Int(New[int](items...)) 30 } 31 32 // IntKeySet creates a Int from a keys of a map[int](? extends interface{}). 33 // If the value passed in is not actually a map, this will panic. 34 func IntKeySet[T any](theMap map[int]T) Int { 35 return Int(KeySet(theMap)) 36 } 37 38 // Insert adds items to the set. 39 func (s Int) Insert(items ...int) Int { 40 return Int(cast(s).Insert(items...)) 41 } 42 43 // Delete removes all items from the set. 44 func (s Int) Delete(items ...int) Int { 45 return Int(cast(s).Delete(items...)) 46 } 47 48 // Has returns true if and only if item is contained in the set. 49 func (s Int) Has(item int) bool { 50 return cast(s).Has(item) 51 } 52 53 // HasAll returns true if and only if all items are contained in the set. 54 func (s Int) HasAll(items ...int) bool { 55 return cast(s).HasAll(items...) 56 } 57 58 // HasAny returns true if any items are contained in the set. 59 func (s Int) HasAny(items ...int) bool { 60 return cast(s).HasAny(items...) 61 } 62 63 // Clone returns a new set which is a copy of the current set. 64 func (s Int) Clone() Int { 65 return Int(cast(s).Clone()) 66 } 67 68 // Difference returns a set of objects that are not in s2. 69 // For example: 70 // s1 = {a1, a2, a3} 71 // s2 = {a1, a2, a4, a5} 72 // s1.Difference(s2) = {a3} 73 // s2.Difference(s1) = {a4, a5} 74 func (s1 Int) Difference(s2 Int) Int { 75 return Int(cast(s1).Difference(cast(s2))) 76 } 77 78 // SymmetricDifference returns a set of elements which are in either of the sets, but not in their intersection. 79 // For example: 80 // s1 = {a1, a2, a3} 81 // s2 = {a1, a2, a4, a5} 82 // s1.SymmetricDifference(s2) = {a3, a4, a5} 83 // s2.SymmetricDifference(s1) = {a3, a4, a5} 84 func (s1 Int) SymmetricDifference(s2 Int) Int { 85 return Int(cast(s1).SymmetricDifference(cast(s2))) 86 } 87 88 // Union returns a new set which includes items in either s1 or s2. 89 // For example: 90 // s1 = {a1, a2} 91 // s2 = {a3, a4} 92 // s1.Union(s2) = {a1, a2, a3, a4} 93 // s2.Union(s1) = {a1, a2, a3, a4} 94 func (s1 Int) Union(s2 Int) Int { 95 return Int(cast(s1).Union(cast(s2))) 96 } 97 98 // Intersection returns a new set which includes the item in BOTH s1 and s2 99 // For example: 100 // s1 = {a1, a2} 101 // s2 = {a2, a3} 102 // s1.Intersection(s2) = {a2} 103 func (s1 Int) Intersection(s2 Int) Int { 104 return Int(cast(s1).Intersection(cast(s2))) 105 } 106 107 // IsSuperset returns true if and only if s1 is a superset of s2. 108 func (s1 Int) IsSuperset(s2 Int) bool { 109 return cast(s1).IsSuperset(cast(s2)) 110 } 111 112 // Equal returns true if and only if s1 is equal (as a set) to s2. 113 // Two sets are equal if their membership is identical. 114 // (In practice, this means same elements, order doesn't matter) 115 func (s1 Int) Equal(s2 Int) bool { 116 return cast(s1).Equal(cast(s2)) 117 } 118 119 // List returns the contents as a sorted int slice. 120 func (s Int) List() []int { 121 return List(cast(s)) 122 } 123 124 // UnsortedList returns the slice with contents in random order. 125 func (s Int) UnsortedList() []int { 126 return cast(s).UnsortedList() 127 } 128 129 // PopAny returns a single element from the set. 130 func (s Int) PopAny() (int, bool) { 131 return cast(s).PopAny() 132 } 133 134 // Len returns the size of the set. 135 func (s Int) Len() int { 136 return len(s) 137 }