Library Moduleswift-collections 1.1.4InternalCollectionsUtilities
InternalCollectionsUtilities
import InternalCollectionsUtilities
Module information
- Declarations
- 117
- Symbols
- 233
Uncategorized
Protocols
Show implementation details (2)
Hide implementation details
protocol _SortedCollection
A Collection type that is guaranteed to contain elements in monotonically increasing order. (Duplicates are still allowed unless the collection also conforms to
_UniqueCollection
.)protocol _UniqueCollection
A Collection type that is guaranteed not to contain any duplicate elements.
Types
Show implementation details (1)
Hide implementation details
struct _UnsafeBitSet
An unsafe-unowned bitset view over
UInt
storage, providing bit set primitives.
Globals
Show implementation details (7)
Hide implementation details
var _isCollectionsInternalCheckingEnabled: Bool
True if consistency checking is enabled in the implementation of the Swift Collections package, false otherwise.
func _addressString(for: UnsafeRawPointer
) -> String func _addressString<T>(for: Unmanaged<T>
) -> String func _addressString(for: AnyObject
) -> String func _arrayDescription<C>(for: C
) -> String func _dictionaryDescription<Key, Value, C>(for: C
) -> String func _specialize<T, U>(T, for: U.Type
) -> U? Returns
x
as its concrete typeU
, ornil
ifx
has a different concrete type.
Other modules
BitCollections
Swift Collections is an open-source package of data structure implementations for the Swift programming language.
Collections
Swift Collections is an open-source package of data structure implementations for the Swift programming language.
DequeModule
HashTreeCollections
Swift Collections is an open-source package of data structure implementations for the Swift programming language.
HeapModule
OrderedCollections
Swift Collections is an open-source package of data structure implementations for the Swift programming language.
_RopeModule