1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
# ``BitCollections/BitSet/Counted-swift.struct``
<!-- Summary -->
<!-- ## Overview -->
## Topics
### Collection Views
- ``uncounted``
### Creating a Set
- ``init()``
- ``init(reservingCapacity:)``
- ``init(_:)-15cws``
- ``init(_:)-38hho``
- ``init(_:)-2of3i``
- ``init(_:)-5fhls``
- ``init(bitPattern:)``
- ``init(words:)``
- ``random(upTo:)``
- ``random(upTo:using:)``
### Finding Elements
- ``contains(_:)``
- ``firstIndex(of:)``
- ``lastIndex(of:)``
### Adding and Updating Elements
- ``insert(_:)``
- ``update(with:)``
### Removing Elements
- ``filter(_:)``
- ``remove(_:)``
- ``remove(at:)``
### Sorted Set Operations
- ``subscript(member:)``
- ``subscript(members:)-5nkxk``
- ``subscript(members:)-5xfq5``
- ``min()``
- ``max()``
- ``sorted()``
### Binary Set Operations
- ``intersection(_:)-1wfb5``
- ``intersection(_:)-4evdp``
- ``intersection(_:)-9rtcc``
- ``intersection(_:)-13us``
- ``union(_:)-2okwt``
- ``union(_:)-pwqf``
- ``union(_:)-18u31``
- ``union(_:)-8ysz9``
- ``subtracting(_:)-7u4tf``
- ``subtracting(_:)-5vgml``
- ``subtracting(_:)-6scy1``
- ``subtracting(_:)-82loi``
- ``symmetricDifference(_:)-84e40``
- ``symmetricDifference(_:)-3suo3``
- ``symmetricDifference(_:)-7zx5q``
- ``symmetricDifference(_:)-46ni1``
- ``formIntersection(_:)-49and``
- ``formIntersection(_:)-49a0x``
- ``formIntersection(_:)-79anv``
- ``formIntersection(_:)-3zoc4``
- ``formUnion(_:)-c6a3``
- ``formUnion(_:)-c5kv``
- ``formUnion(_:)-2f05x``
- ``formUnion(_:)-8kilf``
- ``subtract(_:)-2hzty``
- ``subtract(_:)-2i1qq``
- ``subtract(_:)-32jtb``
- ``subtract(_:)-75xgt``
- ``formSymmetricDifference(_:)-6vskl``
- ``formSymmetricDifference(_:)-6vs05``
- ``formSymmetricDifference(_:)-d2kd``
- ``formSymmetricDifference(_:)-54ghn``
### Binary Set Predicates
- ``==(_:_:)``
- ``isEqualSet(to:)-11031``
- ``isEqualSet(to:)-1hvpp``
- ``isEqualSet(to:)-1mvpq``
- ``isEqualSet(to:)-878x1``
- ``isSubset(of:)-8iy8c``
- ``isSubset(of:)-1r41b``
- ``isSubset(of:)-1dz0p``
- ``isSubset(of:)-3bq5m``
- ``isSuperset(of:)-48i5c``
- ``isSuperset(of:)-10gu8``
- ``isSuperset(of:)-8b7lq``
- ``isSuperset(of:)-6slai``
- ``isStrictSubset(of:)-5ry1b``
- ``isStrictSubset(of:)-2ndu3``
- ``isStrictSubset(of:)-9iul0``
- ``isStrictSubset(of:)-2pq1j``
- ``isStrictSuperset(of:)-9mgmd``
- ``isStrictSuperset(of:)-6hw4t``
- ``isStrictSuperset(of:)-1ya0j``
- ``isStrictSuperset(of:)-4qt1e``
- ``isDisjoint(with:)-9wyku``
- ``isDisjoint(with:)-5fww0``
- ``isDisjoint(with:)-6p0t7``
- ``isDisjoint(with:)-eujj``
|