---
title: Swift
source: https://developer.apple.com/documentation/swift
timestamp: 2026-05-28T11:34:37.124Z
---

## Essentials

- [Swift updates](/documentation/updates/swift)
- [Adopting strict concurrency in Swift 6 apps](/documentation/swift/adoptingswift6)

## Standard Library

- [Int](/documentation/swift/int)

### Converting Integers

- [init<T>(T)](/documentation/swift/int/init(_:)-4ekvl)
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-b1dy)
- [init<Other>(clamping: Other)](/documentation/swift/int/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int/init(truncatingifneeded:))
- [init(bitPattern: UInt)](/documentation/swift/int/init(bitpattern:)-72037)
- [init?(exactly: NSNumber)](/documentation/swift/int/init(exactly:)-177ax)
- [init(truncating: NSNumber)](/documentation/swift/int/init(truncating:))

### Converting Floating-Point Values

- [init<T>(T)](/documentation/swift/int/init(_:)-6gt9z)
- [init(Double)](/documentation/swift/int/init(_:)-8vbwo)
- [init(Float)](/documentation/swift/int/init(_:)-2oscb)
- [init(Float16)](/documentation/swift/int/init(_:)-3huv0)
- [init(Float80)](/documentation/swift/int/init(_:)-66i0w)
- [init(CGFloat)](/documentation/swift/int/init(_:)-5q6q5)

### Converting with No Loss of Precision

- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-7yhn6)
- [init?(exactly: Double)](/documentation/swift/int/init(exactly:)-77kq8)
- [init?(exactly: Float)](/documentation/swift/int/init(exactly:)-7qdwf)
- [init?(exactly: Float16)](/documentation/swift/int/init(exactly:)-5xh2s)
- [init?(exactly: Float80)](/documentation/swift/int/init(exactly:)-5kot1)

### Converting Strings

- [init?(String)](/documentation/swift/int/init(_:)-2hmii)
- [init?<S>(S, radix: Int)](/documentation/swift/int/init(_:radix:))

### Creating a Random Integer

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int/random(in:)-9mjpw)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-4lsb5)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int/random(in:)-8zzqh)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-3dwv4)

### Performing Calculations

- [Integer Operators](/documentation/swift/integer-operators)

#### Arithmetic

- [static func + (Int, Int) -> Int](/documentation/swift/int/+(_:_:))
- [static func - (Int, Int) -> Int](/documentation/swift/int/-(_:_:))
- [static func * (Int, Int) -> Int](/documentation/swift/int/*(_:_:))
- [static func / (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-7j9bj)

#### Arithmetic with Assignment

- [static func += (inout Int, Int)](/documentation/swift/int/+=(_:_:))
- [static func *= (inout Int, Int)](/documentation/swift/int/*=(_:_:))
- [static func /= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-9lzpe)

#### Masked Arithmetic

- [static func &+ (Self, Self) -> Self](/documentation/swift/int/&+(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int/&-(_:_:))
- [static func &* (Self, Self) -> Self](/documentation/swift/int/&*(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int/&+=(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int/&-=(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int/&*=(_:_:))

#### Bitwise Operations

- [static func & (Int, Int) -> Int](/documentation/swift/int/&(_:_:))
- [static func &= (inout Int, Int)](/documentation/swift/int/&=(_:_:))
- [static func ~ (Self) -> Self](/documentation/swift/int/~(_:))

#### Negation

- [static func - (Self) -> Self](/documentation/swift/int/-(_:))
- [static func + (Self) -> Self](/documentation/swift/int/+(_:))

#### Comparison

- [static func == (Int, Int) -> Bool](/documentation/swift/int/==(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int/==(_:_:)-1zalu)
- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-1baz3)
- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int/!=(_:_:)-4jphg)

#### Range Expressions

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int/'...(_:_:))
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int/'...(_:)-6ct66)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int/'...(_:)-4mm5u)

#### Deprecated

- [static func -= (inout Int, Int)](/documentation/swift/int/-=(_:_:))
- [func negate()](/documentation/swift/int/negate())
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int/quotientandremainder(dividingby:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int/ismultiple(of:))

### Performing Calculations with Overflow

- [func addingReportingOverflow(Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/addingreportingoverflow(_:))
- [func subtractingReportingOverflow(Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/subtractingreportingoverflow(_:))
- [func multipliedReportingOverflow(by: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/multipliedreportingoverflow(by:))
- [func dividedReportingOverflow(by: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/dividedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/remainderreportingoverflow(dividingby:))

### Performing Double-Width Calculations

- [func multipliedFullWidth(by: Int) -> (high: Int, low: Int.Magnitude)](/documentation/swift/int/multipliedfullwidth(by:))
- [func dividingFullWidth((high: Int, low: Int.Magnitude)) -> (quotient: Int, remainder: Int)](/documentation/swift/int/dividingfullwidth(_:))

### Finding the Sign and Magnitude

- [var magnitude: UInt](/documentation/swift/int/magnitude-swift.property)
- [Int.Magnitude](/documentation/swift/int/magnitude-swift.typealias)
- [func abs<T>(T) -> T](/documentation/swift/abs(_:))
- [func signum() -> Int](/documentation/swift/int/signum())

### Accessing Numeric Constants

- [static var zero: Self](/documentation/swift/int/zero)
- [static var min: Self](/documentation/swift/int/min)
- [static var max: Self](/documentation/swift/int/max)
- [static var isSigned: Bool](/documentation/swift/int/issigned)

### Working with Byte Order

- [var byteSwapped: Int](/documentation/swift/int/byteswapped)
- [var littleEndian: Self](/documentation/swift/int/littleendian)
- [var bigEndian: Self](/documentation/swift/int/bigendian)
- [init(littleEndian: Self)](/documentation/swift/int/init(littleendian:))
- [init(bigEndian: Self)](/documentation/swift/int/init(bigendian:))

### Working with Binary Representation

- [static var bitWidth: Int](/documentation/swift/int/bitwidth)
- [var bitWidth: Int](/documentation/swift/int/bitwidth-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int/nonzerobitcount)
- [var leadingZeroBitCount: Int](/documentation/swift/int/leadingzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int/trailingzerobitcount)
- [var words: Int.Words](/documentation/swift/int/words-swift.property)
- [Int.Words](/documentation/swift/int/words-swift.struct)

#### Initializers

- [init(Int)](/documentation/swift/int/words-swift.struct/init(_:))

#### Instance Properties

- [var count: Int](/documentation/swift/int/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int/words-swift.struct/endindex)
- [var indices: Int.Words.Indices](/documentation/swift/int/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int/words-swift.struct/startindex)

#### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int/words-swift.struct/index(before:))

#### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int/words-swift.struct/subscript(_:))

#### Type Aliases

- [Int.Words.Element](/documentation/swift/int/words-swift.struct/element)
- [Int.Words.Index](/documentation/swift/int/words-swift.struct/index)
- [Int.Words.Indices](/documentation/swift/int/words-swift.struct/indices-swift.typealias)
- [Int.Words.Iterator](/documentation/swift/int/words-swift.struct/iterator)
- [Int.Words.SubSequence](/documentation/swift/int/words-swift.struct/subsequence)

#### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int/words-swift.struct/bidirectionalcollection-implementations)

##### Instance Properties

- [var last: Self.Element?](/documentation/swift/int/words-swift.struct/last)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int/words-swift.struct/collection-implementations)

##### Instance Properties

- [var first: Self.Element?](/documentation/swift/int/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int/words-swift.struct/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int/words-swift.struct/map(_:)-1zq6m)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int/words-swift.struct/randomaccesscollection-implementations)

##### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int/words-swift.struct/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int/words-swift.struct/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int/words-swift.struct/flatmap(_:)-37uwt)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int/words-swift.struct/flatmap(_:)-6jlsp)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int/words-swift.struct/map(_:)-p9yo)
- [func max() -> Self.Element?](/documentation/swift/int/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int/words-swift.struct/withcontiguousstorageifavailable(_:))

### Working with Memory Addresses

- [init<P>(bitPattern: P?)](/documentation/swift/int/init(bitpattern:)-2i0qy)
- [init(bitPattern: ObjectIdentifier)](/documentation/swift/int/init(bitpattern:)-2o9co)
- [init(bitPattern: OpaquePointer?)](/documentation/swift/int/init(bitpattern:)-5qm7a)

### Encoding and Decoding Values

- [func encode(to: any Encoder) throws](/documentation/swift/int/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/int/init(from:))

### Describing an Integer

- [var description: String](/documentation/swift/int/description)
- [func hash(into: inout Hasher)](/documentation/swift/int/hash(into:))
- [var customMirror: Mirror](/documentation/swift/int/custommirror)

### Infrequently Used Functionality

- [init()](/documentation/swift/int/init())
- [init(integerLiteral: Self)](/documentation/swift/int/init(integerliteral:))
- [Int.IntegerLiteralType](/documentation/swift/int/integerliteraltype)
- [func distance(to: Int) -> Int](/documentation/swift/int/distance(to:))
- [func advanced(by: Int) -> Int](/documentation/swift/int/advanced(by:))
- [Int.Stride](/documentation/swift/int/stride)
- [var hashValue: Int](/documentation/swift/int/hashvalue)

### Deprecated

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int/customplaygroundquicklook)
- [init(NSNumber)](/documentation/swift/int/init(_:)-3mb3q)

### SIMD-Supporting Types

- [Int.SIMDMaskScalar](/documentation/swift/int/simdmaskscalar)
- [Int.SIMD2Storage](/documentation/swift/int/simd2storage)

#### Initializers

- [init()](/documentation/swift/int/simd2storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd2storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd2storage/subscript(_:))

#### Type Aliases

- [Int.SIMD2Storage.Scalar](/documentation/swift/int/simd2storage/scalar)
- [Int.SIMD4Storage](/documentation/swift/int/simd4storage)

#### Initializers

- [init()](/documentation/swift/int/simd4storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd4storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd4storage/subscript(_:))

#### Type Aliases

- [Int.SIMD4Storage.Scalar](/documentation/swift/int/simd4storage/scalar)
- [Int.SIMD8Storage](/documentation/swift/int/simd8storage)

#### Initializers

- [init()](/documentation/swift/int/simd8storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd8storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd8storage/subscript(_:))

#### Type Aliases

- [Int.SIMD8Storage.Scalar](/documentation/swift/int/simd8storage/scalar)
- [Int.SIMD16Storage](/documentation/swift/int/simd16storage)

#### Initializers

- [init()](/documentation/swift/int/simd16storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd16storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd16storage/subscript(_:))

#### Type Aliases

- [Int.SIMD16Storage.Scalar](/documentation/swift/int/simd16storage/scalar)
- [Int.SIMD32Storage](/documentation/swift/int/simd32storage)

#### Initializers

- [init()](/documentation/swift/int/simd32storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd32storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd32storage/subscript(_:))

#### Type Aliases

- [Int.SIMD32Storage.Scalar](/documentation/swift/int/simd32storage/scalar)
- [Int.SIMD64Storage](/documentation/swift/int/simd64storage)

#### Initializers

- [init()](/documentation/swift/int/simd64storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd64storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd64storage/subscript(_:))

#### Type Aliases

- [Int.SIMD64Storage.Scalar](/documentation/swift/int/simd64storage/scalar)

### Operators

- [static func != (Int, Int) -> Bool](/documentation/swift/int/!=(_:_:))
- [static func &>>= (inout Int, Int)](/documentation/swift/int/&__=(_:_:)-2i06i)
- [static func &<<= (inout Int, Int)](/documentation/swift/int/&__=(_:_:)-58orm)
- [static func < (Int, Int) -> Bool](/documentation/swift/int/_(_:_:)-3wpum)
- [static func ^= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-1ypi9)
- [static func %= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-30t77)
- [static func |= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-4b29i)

### Type Aliases

- [Int.Specification](/documentation/swift/int/specification)
- [Int.UnwrappedType](/documentation/swift/int/unwrappedtype)
- [Int.ValueType](/documentation/swift/int/valuetype)

### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/int/defaultresolverspecification)

### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int/additivearithmetic-implementations)

#### Operators

- [static func + (Self) -> Self](/documentation/swift/int/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int/+=(_:_:)-5g9ip)
- [static func -= (inout Self, Self)](/documentation/swift/int/-=(_:_:)-2aqsn)

#### Type Properties

- [static var zero: Self](/documentation/swift/int/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int/atomicrepresentable-implementations)

#### Type Methods

- [static func decodeAtomicRepresentation(consuming Int.AtomicRepresentation) -> Int](/documentation/swift/int/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int) -> Int.AtomicRepresentation](/documentation/swift/int/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int/binaryinteger-implementations)

#### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int/!=(_:_:)-4jphg)
- [static func & (Int, Int) -> Int](/documentation/swift/int/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int/&(_:_:)-1gv8r)
- [static func * (Int, Int) -> Int](/documentation/swift/int/*(_:_:))
- [static func + (Int, Int) -> Int](/documentation/swift/int/+(_:_:))
- [static func - (Int, Int) -> Int](/documentation/swift/int/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int/==(_:_:)-1zalu)
- [static func | (Self, Self) -> Self](/documentation/swift/int/_(_:_:)-1e0ee)
- [static func | (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-26x3w)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int/_(_:_:)-2yuui)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int/_(_:_:)-3r70c)
- [static func > (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-4e53i)
- [static func ^ (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-591r5)
- [static func % (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-6lyj3)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int/_(_:_:)-7d57p)
- [static func / (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-7j9bj)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-6cfca)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-7tmrx)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int/_=(_:_:)-7v58y)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int/_=(_:_:)-yera)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int/__(_:_:)-2xfjq)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int/__(_:_:)-60q97)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int/__(_:_:)-635pg)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int/__(_:_:)-97tkh)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int/__=(_:_:)-66xgb)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int/__=(_:_:)-9p0ct)
- [static func ~ (Self) -> Self](/documentation/swift/int/~(_:))

#### Initializers

- [init()](/documentation/swift/int/init())
- [init<Other>(clamping: Other)](/documentation/swift/int/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int/init(truncatingifneeded:))

#### Instance Properties

- [var bitWidth: Int](/documentation/swift/int/bitwidth-swift.property)
- [var description: String](/documentation/swift/int/description)

#### Instance Methods

- [func isMultiple(of: Self) -> Bool](/documentation/swift/int/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int/quotientandremainder(dividingby:))
- [CodingKeyRepresentable Implementations](/documentation/swift/int/codingkeyrepresentable-implementations)

#### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/int/init(codingkey:))

#### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/int/codingkey)
- [Comparable Implementations](/documentation/swift/int/comparable-implementations)

#### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int/'...(_:)-4mm5u)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int/'...(_:)-6ct66)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-24u4v)
- [static func > (Int, Int) -> Bool](/documentation/swift/int/_(_:_:)-9cdiy)
- [static func < (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-fe4g)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-1ii8)
- [static func <= (Int, Int) -> Bool](/documentation/swift/int/_=(_:_:)-28qlv)
- [static func >= (Int, Int) -> Bool](/documentation/swift/int/_=(_:_:)-443dp)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-8lyh0)
- [CustomReflectable Implementations](/documentation/swift/int/customreflectable-implementations)

#### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int/custommirror)
- [Decodable Implementations](/documentation/swift/int/decodable-implementations)

#### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int/init(from:))
- [Encodable Implementations](/documentation/swift/int/encodable-implementations)

#### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int/encode(to:))
- [Equatable Implementations](/documentation/swift/int/equatable-implementations)

#### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-1baz3)
- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-280fd)
- [static func == (Self, Self) -> Bool](/documentation/swift/int/==(_:_:)-4wfum)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int/expressiblebyintegerliteral-implementations)

#### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int/fixedwidthinteger-implementations)

#### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int/&-=(_:_:))
- [static func &<< (Self, Self) -> Self](/documentation/swift/int/&__(_:_:)-2kxph)
- [static func &>> (Int, Int) -> Int](/documentation/swift/int/&__(_:_:)-35o0c)
- [static func &<< (Int, Int) -> Int](/documentation/swift/int/&__(_:_:)-3euzz)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int/&__(_:_:)-5zh5j)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int/&__(_:_:)-76ndv)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int/&__(_:_:)-voti)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int/&__=(_:_:)-13miv)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int/&__=(_:_:)-704vj)

#### Initializers

- [init?(String)](/documentation/swift/int/init(_:)-2hmii)
- [init<T>(T)](/documentation/swift/int/init(_:)-6gt9z)
- [init?<S>(S, radix: Int)](/documentation/swift/int/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-7yhn6)
- [init(littleEndian: Self)](/documentation/swift/int/init(littleendian:))

#### Instance Properties

- [var bigEndian: Self](/documentation/swift/int/bigendian)
- [var littleEndian: Self](/documentation/swift/int/littleendian)

#### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int/random(in:)-8zzqh)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/int/random(in:)-9mjpw)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-3dwv4)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-4lsb5)
- [Hashable Implementations](/documentation/swift/int/hashable-implementations)

#### Instance Properties

- [var hashValue: Int](/documentation/swift/int/hashvalue)

#### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int/simdscalar-implementations)

#### Structures

- [Int.SIMD16Storage](/documentation/swift/int/simd16storage)

##### Initializers

- [init()](/documentation/swift/int/simd16storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd16storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd16storage/subscript(_:))

##### Type Aliases

- [Int.SIMD16Storage.Scalar](/documentation/swift/int/simd16storage/scalar)
- [Int.SIMD2Storage](/documentation/swift/int/simd2storage)

##### Initializers

- [init()](/documentation/swift/int/simd2storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd2storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd2storage/subscript(_:))

##### Type Aliases

- [Int.SIMD2Storage.Scalar](/documentation/swift/int/simd2storage/scalar)
- [Int.SIMD32Storage](/documentation/swift/int/simd32storage)

##### Initializers

- [init()](/documentation/swift/int/simd32storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd32storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd32storage/subscript(_:))

##### Type Aliases

- [Int.SIMD32Storage.Scalar](/documentation/swift/int/simd32storage/scalar)
- [Int.SIMD4Storage](/documentation/swift/int/simd4storage)

##### Initializers

- [init()](/documentation/swift/int/simd4storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd4storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd4storage/subscript(_:))

##### Type Aliases

- [Int.SIMD4Storage.Scalar](/documentation/swift/int/simd4storage/scalar)
- [Int.SIMD64Storage](/documentation/swift/int/simd64storage)

##### Initializers

- [init()](/documentation/swift/int/simd64storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd64storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd64storage/subscript(_:))

##### Type Aliases

- [Int.SIMD64Storage.Scalar](/documentation/swift/int/simd64storage/scalar)
- [Int.SIMD8Storage](/documentation/swift/int/simd8storage)

##### Initializers

- [init()](/documentation/swift/int/simd8storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd8storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd8storage/subscript(_:))

##### Type Aliases

- [Int.SIMD8Storage.Scalar](/documentation/swift/int/simd8storage/scalar)

#### Type Aliases

- [Int.SIMDMaskScalar](/documentation/swift/int/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int/signedinteger-implementations)

#### Initializers

- [init<T>(T)](/documentation/swift/int/init(_:)-4ekvl)
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-b1dy)

#### Type Properties

- [static var isSigned: Bool](/documentation/swift/int/issigned)
- [static var max: Self](/documentation/swift/int/max)
- [static var min: Self](/documentation/swift/int/min)
- [SignedNumeric Implementations](/documentation/swift/int/signednumeric-implementations)

#### Operators

- [static func - (Self) -> Self](/documentation/swift/int/-(_:))

#### Instance Methods

- [func negate()](/documentation/swift/int/negate())
- [Strideable Implementations](/documentation/swift/int/strideable-implementations)

#### Instance Methods

- [func advanced(by: Int) -> Int](/documentation/swift/int/advanced(by:))
- [func distance(to: Int) -> Int](/documentation/swift/int/distance(to:))
- [Double](/documentation/swift/double)

### Converting Integers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-5blrp)
- [init(Int)](/documentation/swift/double/init(_:)-84ohu)

### Converting Strings

- [init?<S>(S)](/documentation/swift/double/init(_:)-5wmm8)
- [init?(Substring)](/documentation/swift/double/init(_:)-15kej)

### Converting Floating-Point Values

- [init<Source>(Source)](/documentation/swift/double/init(_:)-1488d)
- [init(Double)](/documentation/swift/double/init(_:)-o1k9)
- [init(Float)](/documentation/swift/double/init(_:)-5h7qh)
- [init(Float16)](/documentation/swift/double/init(_:)-aeox)
- [init(Float80)](/documentation/swift/double/init(_:)-9z7ob)
- [init(CGFloat)](/documentation/swift/double/init(_:)-7ag2w)
- [init(sign: FloatingPointSign, exponent: Int, significand: Double)](/documentation/swift/double/init(sign:exponent:significand:))
- [init(signOf: Double, magnitudeOf: Double)](/documentation/swift/double/init(signof:magnitudeof:))
- [init<Source>(Source)](/documentation/swift/double/init(_:)-1oh9r)
- [init(truncating: NSNumber)](/documentation/swift/double/init(truncating:))

### Converting with No Loss of Precision

- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-8esra)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-1h1oc)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-2uexo)
- [init?(exactly: Double)](/documentation/swift/double/init(exactly:)-2l6p1)
- [init?(exactly: Float)](/documentation/swift/double/init(exactly:)-7cl0t)
- [init?(exactly: Float16)](/documentation/swift/double/init(exactly:)-50ofc)
- [init?(exactly: Float80)](/documentation/swift/double/init(exactly:)-63925)
- [init?(exactly: NSNumber)](/documentation/swift/double/init(exactly:)-8e00y)

### Creating a Random Value

- [static func random(in: Range<Self>) -> Self](/documentation/swift/double/random(in:)-6idef)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-1m6gd)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/double/random(in:)-5o5ha)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-613hz)

### Performing Calculations

- [Floating-Point Operators for Double](/documentation/swift/floating-point-operators-for-double)

#### Arithmetic

- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))

#### Arithmetic with Assignment

- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))

#### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))

#### Negation

- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func + (Self) -> Self](/documentation/swift/double/+(_:))

#### Range Expressions

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/double/addingproduct(_:_:))
- [func addProduct(Double, Double)](/documentation/swift/double/addproduct(_:_:))
- [func squareRoot() -> Self](/documentation/swift/double/squareroot())
- [func formSquareRoot()](/documentation/swift/double/formsquareroot())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/double/remainder(dividingby:))
- [func formRemainder(dividingBy: Double)](/documentation/swift/double/formremainder(dividingby:))
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/double/truncatingremainder(dividingby:))
- [func formTruncatingRemainder(dividingBy: Double)](/documentation/swift/double/formtruncatingremainder(dividingby:))
- [func negate()](/documentation/swift/double/negate())

### Rounding Values

- [func rounded() -> Self](/documentation/swift/double/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/double/rounded(_:))
- [func round()](/documentation/swift/double/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/double/round(_:))

### Comparing Values

- [Floating-Point Operators for Double](/documentation/swift/floating-point-operators-for-double)

#### Arithmetic

- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))

#### Arithmetic with Assignment

- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))

#### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))

#### Negation

- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func + (Self) -> Self](/documentation/swift/double/+(_:))

#### Range Expressions

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [func isEqual(to: Double) -> Bool](/documentation/swift/double/isequal(to:))
- [func isLess(than: Double) -> Bool](/documentation/swift/double/isless(than:))
- [func isLessThanOrEqualTo(Double) -> Bool](/documentation/swift/double/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/double/istotallyordered(beloworequalto:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/double/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/double/minimummagnitude(_:_:))
- [static func maximum(Self, Self) -> Self](/documentation/swift/double/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/double/maximummagnitude(_:_:))

### Finding the Sign and Magnitude

- [var magnitude: Double](/documentation/swift/double/magnitude-swift.property)
- [var sign: FloatingPointSign](/documentation/swift/double/sign)
- [Double.Magnitude](/documentation/swift/double/magnitude-swift.typealias)

### Querying a Double

- [var ulp: Double](/documentation/swift/double/ulp)
- [var significand: Double](/documentation/swift/double/significand)
- [var exponent: Int](/documentation/swift/double/exponent-swift.property)
- [var nextUp: Double](/documentation/swift/double/nextup)
- [var nextDown: Self](/documentation/swift/double/nextdown)
- [var binade: Double](/documentation/swift/double/binade)

### Accessing Numeric Constants

- [static var pi: Double](/documentation/swift/double/pi)
- [static var infinity: Double](/documentation/swift/double/infinity)
- [static var greatestFiniteMagnitude: Double](/documentation/swift/double/greatestfinitemagnitude)
- [static var nan: Double](/documentation/swift/double/nan)
- [static var signalingNaN: Double](/documentation/swift/double/signalingnan)
- [static var ulpOfOne: Double](/documentation/swift/double/ulpofone)
- [static var leastNonzeroMagnitude: Double](/documentation/swift/double/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Double](/documentation/swift/double/leastnormalmagnitude)
- [static var zero: Self](/documentation/swift/double/zero)

### Working with Binary Representation

- [var bitPattern: UInt64](/documentation/swift/double/bitpattern)
- [var significandBitPattern: UInt64](/documentation/swift/double/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/double/significandwidth)
- [var exponentBitPattern: UInt](/documentation/swift/double/exponentbitpattern)
- [static var significandBitCount: Int](/documentation/swift/double/significandbitcount)
- [static var exponentBitCount: Int](/documentation/swift/double/exponentbitcount)
- [static var radix: Int](/documentation/swift/double/radix)
- [init(bitPattern: UInt64)](/documentation/swift/double/init(bitpattern:))
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt64)](/documentation/swift/double/init(sign:exponentbitpattern:significandbitpattern:))
- [init(nan: Double.RawSignificand, signaling: Bool)](/documentation/swift/double/init(nan:signaling:))
- [Double.Exponent](/documentation/swift/double/exponent-swift.typealias)
- [Double.RawSignificand](/documentation/swift/double/rawsignificand)
- [Double.RawExponent](/documentation/swift/double/rawexponent)

### Querying a Double’s State

- [var isZero: Bool](/documentation/swift/double/iszero)
- [var isFinite: Bool](/documentation/swift/double/isfinite)
- [var isInfinite: Bool](/documentation/swift/double/isinfinite)
- [var isNaN: Bool](/documentation/swift/double/isnan)
- [var isSignalingNaN: Bool](/documentation/swift/double/issignalingnan)
- [var isNormal: Bool](/documentation/swift/double/isnormal)
- [var isSubnormal: Bool](/documentation/swift/double/issubnormal)
- [var isCanonical: Bool](/documentation/swift/double/iscanonical)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/double/floatingpointclass)

### Encoding and Decoding Values

- [func encode(to: any Encoder) throws](/documentation/swift/double/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/double/init(from:))

### Creating a Range

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/double/'...(_:_:))

### Describing a Double

- [var description: String](/documentation/swift/double/description)
- [var debugDescription: String](/documentation/swift/double/debugdescription)
- [var customMirror: Mirror](/documentation/swift/double/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/double/hash(into:))

### Infrequently Used Functionality

- [init()](/documentation/swift/double/init())
- [init(floatLiteral: Double)](/documentation/swift/double/init(floatliteral:))
- [init(integerLiteral: Int64)](/documentation/swift/double/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/double/init(integerliteral:)-6hc7j)
- [Double.FloatLiteralType](/documentation/swift/double/floatliteraltype)
- [Double.IntegerLiteralType](/documentation/swift/double/integerliteraltype)
- [func advanced(by: Double) -> Double](/documentation/swift/double/advanced(by:))
- [func distance(to: Double) -> Double](/documentation/swift/double/distance(to:))
- [Double.Stride](/documentation/swift/double/stride)
- [func write<Target>(to: inout Target)](/documentation/swift/double/write(to:))
- [var hashValue: Int](/documentation/swift/double/hashvalue)

### SIMD-Supporting Types

- [Double.SIMDMaskScalar](/documentation/swift/double/simdmaskscalar)
- [Double.SIMD2Storage](/documentation/swift/double/simd2storage)

#### Initializers

- [init()](/documentation/swift/double/simd2storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd2storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd2storage/subscript(_:))

#### Type Aliases

- [Double.SIMD2Storage.Scalar](/documentation/swift/double/simd2storage/scalar)
- [Double.SIMD4Storage](/documentation/swift/double/simd4storage)

#### Initializers

- [init()](/documentation/swift/double/simd4storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd4storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd4storage/subscript(_:))

#### Type Aliases

- [Double.SIMD4Storage.Scalar](/documentation/swift/double/simd4storage/scalar)
- [Double.SIMD8Storage](/documentation/swift/double/simd8storage)

#### Initializers

- [init()](/documentation/swift/double/simd8storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd8storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd8storage/subscript(_:))

#### Type Aliases

- [Double.SIMD8Storage.Scalar](/documentation/swift/double/simd8storage/scalar)
- [Double.SIMD16Storage](/documentation/swift/double/simd16storage)

#### Initializers

- [init()](/documentation/swift/double/simd16storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd16storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd16storage/subscript(_:))

#### Type Aliases

- [Double.SIMD16Storage.Scalar](/documentation/swift/double/simd16storage/scalar)
- [Double.SIMD32Storage](/documentation/swift/double/simd32storage)

#### Initializers

- [init()](/documentation/swift/double/simd32storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd32storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd32storage/subscript(_:))

#### Type Aliases

- [Double.SIMD32Storage.Scalar](/documentation/swift/double/simd32storage/scalar)
- [Double.SIMD64Storage](/documentation/swift/double/simd64storage)

#### Initializers

- [init()](/documentation/swift/double/simd64storage/init())

#### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd64storage/scalarcount)

#### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd64storage/subscript(_:))

#### Type Aliases

- [Double.SIMD64Storage.Scalar](/documentation/swift/double/simd64storage/scalar)

### Deprecated

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/double/customplaygroundquicklook)
- [init(NSNumber)](/documentation/swift/double/init(_:)-8kme5)

### Type Aliases

- [Double.Specification](/documentation/swift/double/specification)
- [Double.UnwrappedType](/documentation/swift/double/unwrappedtype)
- [Double.ValueType](/documentation/swift/double/valuetype)

### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/double/defaultresolverspecification)
- [static var mlMultiArrayDataType: MLMultiArrayDataType](/documentation/swift/double/mlmultiarraydatatype)

### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/double/additivearithmetic-implementations)

#### Operators

- [static func + (Self) -> Self](/documentation/swift/double/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/double/+=(_:_:)-5g9j0)
- [static func -= (inout Self, Self)](/documentation/swift/double/-=(_:_:)-2aqsq)

#### Type Properties

- [static var zero: Self](/documentation/swift/double/zero)
- [AtomicRepresentable Implementations](/documentation/swift/double/atomicrepresentable-implementations)

#### Type Aliases

- [Double.AtomicRepresentation](/documentation/swift/double/atomicrepresentation)

#### Type Methods

- [static func decodeAtomicRepresentation(consuming Double.AtomicRepresentation) -> Double](/documentation/swift/double/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Double) -> Double.AtomicRepresentation](/documentation/swift/double/encodeatomicrepresentation(_:))
- [BinaryFloatingPoint Implementations](/documentation/swift/double/binaryfloatingpoint-implementations)

#### Initializers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-1488d)
- [init<Source>(Source)](/documentation/swift/double/init(_:)-1oh9r)
- [init(Float)](/documentation/swift/double/init(_:)-5h7qh)
- [init(Float80)](/documentation/swift/double/init(_:)-9z7ob)
- [init(Double)](/documentation/swift/double/init(_:)-o1k9)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-1h1oc)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-8esra)
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt64)](/documentation/swift/double/init(sign:exponentbitpattern:significandbitpattern:))

#### Instance Properties

- [var binade: Double](/documentation/swift/double/binade)
- [var exponentBitPattern: UInt](/documentation/swift/double/exponentbitpattern)
- [var significandBitPattern: UInt64](/documentation/swift/double/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/double/significandwidth)

#### Type Aliases

- [Double.RawExponent](/documentation/swift/double/rawexponent)
- [Double.RawSignificand](/documentation/swift/double/rawsignificand)

#### Type Properties

- [static var exponentBitCount: Int](/documentation/swift/double/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/double/significandbitcount)

#### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/double/random(in:)-5o5ha)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/double/random(in:)-6idef)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-1m6gd)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-613hz)
- [Comparable Implementations](/documentation/swift/double/comparable-implementations)

#### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/double/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/double/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/double/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-24u4i)
- [static func < (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-7lwp5)
- [static func < (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-fe4t)
- [static func <= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-1iil)
- [static func >= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-8lyh5)
- [CustomDebugStringConvertible Implementations](/documentation/swift/double/customdebugstringconvertible-implementations)

#### Instance Properties

- [var debugDescription: String](/documentation/swift/double/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/double/customreflectable-implementations)

#### Instance Properties

- [var customMirror: Mirror](/documentation/swift/double/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/double/customstringconvertible-implementations)

#### Instance Properties

- [var description: String](/documentation/swift/double/description)
- [Decodable Implementations](/documentation/swift/double/decodable-implementations)

#### Initializers

- [init(from: any Decoder) throws](/documentation/swift/double/init(from:))
- [Encodable Implementations](/documentation/swift/double/encodable-implementations)

#### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/double/encode(to:))
- [Equatable Implementations](/documentation/swift/double/equatable-implementations)

#### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-4wfub)
- [ExpressibleByFloatLiteral Implementations](/documentation/swift/double/expressiblebyfloatliteral-implementations)

#### Initializers

- [init(floatLiteral: Double)](/documentation/swift/double/init(floatliteral:))

#### Type Aliases

- [Double.FloatLiteralType](/documentation/swift/double/floatliteraltype)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/double/expressiblebyintegerliteral-implementations)

#### Initializers

- [init(integerLiteral: Int64)](/documentation/swift/double/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/double/init(integerliteral:)-6hc7j)

#### Type Aliases

- [Double.IntegerLiteralType](/documentation/swift/double/integerliteraltype)
- [FloatingPoint Implementations](/documentation/swift/double/floatingpoint-implementations)

#### Operators

- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-552jp)
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))
- [static func <= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-5yoz7)
- [static func >= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-9o6h8)

#### Initializers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-5blrp)
- [init(Int)](/documentation/swift/double/init(_:)-84ohu)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-2uexo)
- [init(sign: FloatingPointSign, exponent: Int, significand: Double)](/documentation/swift/double/init(sign:exponent:significand:))
- [init(signOf: Double, magnitudeOf: Double)](/documentation/swift/double/init(signof:magnitudeof:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/double/init(signof:magnitudeof:)-6i9uy)

#### Instance Properties

- [var exponent: Int](/documentation/swift/double/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/double/floatingpointclass)
- [var isCanonical: Bool](/documentation/swift/double/iscanonical)
- [var isFinite: Bool](/documentation/swift/double/isfinite)
- [var isInfinite: Bool](/documentation/swift/double/isinfinite)
- [var isNaN: Bool](/documentation/swift/double/isnan)
- [var isNormal: Bool](/documentation/swift/double/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/double/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/double/issubnormal)
- [var isZero: Bool](/documentation/swift/double/iszero)
- [var nextDown: Self](/documentation/swift/double/nextdown)
- [var nextUp: Double](/documentation/swift/double/nextup)
- [var sign: FloatingPointSign](/documentation/swift/double/sign)
- [var significand: Double](/documentation/swift/double/significand)
- [var ulp: Double](/documentation/swift/double/ulp)

#### Instance Methods

- [func addProduct(Double, Double)](/documentation/swift/double/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/double/addingproduct(_:_:))
- [func formRemainder(dividingBy: Double)](/documentation/swift/double/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/double/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Double)](/documentation/swift/double/formtruncatingremainder(dividingby:))
- [func isEqual(to: Double) -> Bool](/documentation/swift/double/isequal(to:))
- [func isLess(than: Double) -> Bool](/documentation/swift/double/isless(than:))
- [func isLessThanOrEqualTo(Double) -> Bool](/documentation/swift/double/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/double/istotallyordered(beloworequalto:))
- [func negate()](/documentation/swift/double/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/double/remainder(dividingby:))
- [func round()](/documentation/swift/double/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/double/round(_:))
- [func rounded() -> Self](/documentation/swift/double/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/double/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/double/squareroot())
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/double/truncatingremainder(dividingby:))

#### Type Aliases

- [Double.Exponent](/documentation/swift/double/exponent-swift.typealias)

#### Type Properties

- [static var greatestFiniteMagnitude: Double](/documentation/swift/double/greatestfinitemagnitude)
- [static var infinity: Double](/documentation/swift/double/infinity)
- [static var leastNonzeroMagnitude: Double](/documentation/swift/double/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Double](/documentation/swift/double/leastnormalmagnitude)
- [static var nan: Double](/documentation/swift/double/nan)
- [static var pi: Double](/documentation/swift/double/pi)
- [static var radix: Int](/documentation/swift/double/radix)
- [static var signalingNaN: Double](/documentation/swift/double/signalingnan)
- [static var ulpOfOne: Double](/documentation/swift/double/ulpofone)
- [static var ulpOfOne: Self](/documentation/swift/double/ulpofone-1s81x)

#### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/double/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/double/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/double/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/double/minimummagnitude(_:_:))
- [Hashable Implementations](/documentation/swift/double/hashable-implementations)

#### Instance Properties

- [var hashValue: Int](/documentation/swift/double/hashvalue)

#### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/double/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/double/losslessstringconvertible-implementations)

#### Initializers

- [init?<S>(S)](/documentation/swift/double/init(_:)-5wmm8)
- [Numeric Implementations](/documentation/swift/double/numeric-implementations)

#### Instance Properties

- [var magnitude: Double](/documentation/swift/double/magnitude-swift.property)

#### Type Aliases

- [Double.Magnitude](/documentation/swift/double/magnitude-swift.typealias)
- [SIMDScalar Implementations](/documentation/swift/double/simdscalar-implementations)

#### Structures

- [Double.SIMD16Storage](/documentation/swift/double/simd16storage)

##### Initializers

- [init()](/documentation/swift/double/simd16storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd16storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd16storage/subscript(_:))

##### Type Aliases

- [Double.SIMD16Storage.Scalar](/documentation/swift/double/simd16storage/scalar)
- [Double.SIMD2Storage](/documentation/swift/double/simd2storage)

##### Initializers

- [init()](/documentation/swift/double/simd2storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd2storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd2storage/subscript(_:))

##### Type Aliases

- [Double.SIMD2Storage.Scalar](/documentation/swift/double/simd2storage/scalar)
- [Double.SIMD32Storage](/documentation/swift/double/simd32storage)

##### Initializers

- [init()](/documentation/swift/double/simd32storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd32storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd32storage/subscript(_:))

##### Type Aliases

- [Double.SIMD32Storage.Scalar](/documentation/swift/double/simd32storage/scalar)
- [Double.SIMD4Storage](/documentation/swift/double/simd4storage)

##### Initializers

- [init()](/documentation/swift/double/simd4storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd4storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd4storage/subscript(_:))

##### Type Aliases

- [Double.SIMD4Storage.Scalar](/documentation/swift/double/simd4storage/scalar)
- [Double.SIMD64Storage](/documentation/swift/double/simd64storage)

##### Initializers

- [init()](/documentation/swift/double/simd64storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd64storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd64storage/subscript(_:))

##### Type Aliases

- [Double.SIMD64Storage.Scalar](/documentation/swift/double/simd64storage/scalar)
- [Double.SIMD8Storage](/documentation/swift/double/simd8storage)

##### Initializers

- [init()](/documentation/swift/double/simd8storage/init())

##### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd8storage/scalarcount)

##### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd8storage/subscript(_:))

##### Type Aliases

- [Double.SIMD8Storage.Scalar](/documentation/swift/double/simd8storage/scalar)

#### Type Aliases

- [Double.SIMDMaskScalar](/documentation/swift/double/simdmaskscalar)
- [SignedNumeric Implementations](/documentation/swift/double/signednumeric-implementations)

#### Operators

- [static func - (Self) -> Self](/documentation/swift/double/-(_:)-41os0)

#### Instance Methods

- [func negate()](/documentation/swift/double/negate()-jfhr)
- [Strideable Implementations](/documentation/swift/double/strideable-implementations)

#### Instance Methods

- [func advanced(by: Double) -> Double](/documentation/swift/double/advanced(by:))
- [func distance(to: Double) -> Double](/documentation/swift/double/distance(to:))

#### Type Aliases

- [Double.Stride](/documentation/swift/double/stride)
- [TextOutputStreamable Implementations](/documentation/swift/double/textoutputstreamable-implementations)

#### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/double/write(to:))
- [String](/documentation/swift/string)

### Creating a String

- [init(decoding: FilePath)](/documentation/swift/string/init(decoding:)-nm7v)
- [init()](/documentation/swift/string/init())
- [init(Character)](/documentation/swift/string/init(_:)-8v3fo)
- [init<S>(S)](/documentation/swift/string/init(_:)-8og6g)
- [init<S>(S)](/documentation/swift/string/init(_:)-1ip93)
- [init<S>(S)](/documentation/swift/string/init(_:)-50pwi)
- [init(Substring)](/documentation/swift/string/init(_:)-14lv5)
- [init(repeating: String, count: Int)](/documentation/swift/string/init(repeating:count:)-23xjt)
- [init(repeating: Character, count: Int)](/documentation/swift/string/init(repeating:count:)-11bpi)
- [init(unsafeUninitializedCapacity: Int, initializingUTF8With: (UnsafeMutableBufferPointer<UInt8>) throws -> Int) rethrows](/documentation/swift/string/init(unsafeuninitializedcapacity:initializingutf8with:))

### Inspecting a String

- [var isEmpty: Bool](/documentation/swift/string/isempty)
- [var count: Int](/documentation/swift/string/count)

### Creating a String from Unicode Data

- [init(Unicode.Scalar)](/documentation/swift/string/init(_:)-8ay23)
- [init?(data: Data, encoding: String.Encoding)](/documentation/swift/string/init(data:encoding:))
- [init?(validatingUTF8: UnsafePointer<CChar>)](/documentation/swift/string/init(validatingutf8:)-208fn)
- [init?<Encoding>(validating: some Sequence, as: Encoding.Type)](/documentation/swift/string/init(validating:as:)-84qr9)
- [init?<Encoding>(validating: some Sequence<Int8>, as: Encoding.Type)](/documentation/swift/string/init(validating:as:)-5cw2c)
- [init?(utf8String: [CChar])](/documentation/swift/string/init(utf8string:)-8qmaq)
- [init?(utf8String: UnsafePointer<CChar>)](/documentation/swift/string/init(utf8string:)-3mcco)
- [init(utf16CodeUnits: UnsafePointer<unichar>, count: Int)](/documentation/swift/string/init(utf16codeunits:count:))
- [init(utf16CodeUnitsNoCopy: UnsafePointer<unichar>, count: Int, freeWhenDone: Bool)](/documentation/swift/string/init(utf16codeunitsnocopy:count:freewhendone:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/string/init(decoding:as:))

### Creating a String Using Formats

- [init(format: String, any CVarArg...)](/documentation/swift/string/init(format:_:))
- [init(format: String, arguments: [any CVarArg])](/documentation/swift/string/init(format:arguments:))
- [init(format: String, locale: Locale?, any CVarArg...)](/documentation/swift/string/init(format:locale:_:))
- [init(format: String, locale: Locale?, arguments: [any CVarArg])](/documentation/swift/string/init(format:locale:arguments:))
- [static func localizedStringWithFormat(String, any CVarArg...) -> String](/documentation/swift/string/localizedstringwithformat(_:_:))

### Creating a Localized String

- [init(localized: String.LocalizationValue, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:table:bundle:locale:comment:))
- [init(localized: String.LocalizationValue, options: String.LocalizationOptions, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:options:table:bundle:locale:comment:))
- [String.LocalizationValue](/documentation/swift/string/localizationvalue)

#### Creating a string localization value instance

- [init(String)](/documentation/swift/string/localizationvalue/init(_:))

#### Supporting types

- [String.LocalizationValue.Placeholder](/documentation/swift/string/localizationvalue/placeholder)

##### Placeholder types

- [case int](/documentation/swift/string/localizationvalue/placeholder/int)
- [case uint](/documentation/swift/string/localizationvalue/placeholder/uint)
- [case float](/documentation/swift/string/localizationvalue/placeholder/float)
- [case double](/documentation/swift/string/localizationvalue/placeholder/double)
- [case object](/documentation/swift/string/localizationvalue/placeholder/object)
- [String.LocalizationOptions](/documentation/swift/string/localizationoptions)

#### Specifying localization behavior

- [var replacements: [any CVarArg]?](/documentation/swift/string/localizationoptions/replacements)

#### Initializers

- [init()](/documentation/swift/string/localizationoptions/init())
- [init(localized: StaticString, defaultValue: String.LocalizationValue, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:defaultvalue:table:bundle:locale:comment:))
- [init(localized: StaticString, defaultValue: String.LocalizationValue, options: String.LocalizationOptions, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:defaultvalue:options:table:bundle:locale:comment:))
- [init(localized: LocalizedStringResource)](/documentation/swift/string/init(localized:))
- [init(localized: LocalizedStringResource, options: String.LocalizationOptions)](/documentation/swift/string/init(localized:options:))

### Converting Numeric Values

- [init<T>(T, radix: Int, uppercase: Bool)](/documentation/swift/string/init(_:radix:uppercase:))

### Converting a C String

- [init?<S>(bytes: S, encoding: String.Encoding)](/documentation/swift/string/init(bytes:encoding:))
- [init?(bytesNoCopy: UnsafeMutableRawPointer, length: Int, encoding: String.Encoding, freeWhenDone: Bool)](/documentation/swift/string/init(bytesnocopy:length:encoding:freewhendone:))
- [init?(validatingCString: UnsafePointer<CChar>)](/documentation/swift/string/init(validatingcstring:)-992vo)
- [init?(validatingCString: [CChar])](/documentation/swift/string/init(validatingcstring:)-98wra)
- [init(cString: UnsafePointer<CChar>)](/documentation/swift/string/init(cstring:)-2p84k)
- [init(cString: UnsafePointer<UInt8>)](/documentation/swift/string/init(cstring:)-6kr8s)
- [init?(cString: [CChar], encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-3h7bc)
- [init?(cString: UnsafePointer<CChar>, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-3qgzd)
- [init<Encoding>(decodingCString: [Encoding.CodeUnit], as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-8way7)
- [static func decodeCString<Encoding>(UnsafePointer<Encoding.CodeUnit>?, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-46n2p)

### Converting Other Types to Strings

- [init<T>(T)](/documentation/swift/string/init(_:)-1ywfq)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-588wb)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-hsqw)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-6ttci)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-67ncf)
- [init<Subject>(reflecting: Subject)](/documentation/swift/string/init(reflecting:))

### Creating a String from a File or URL

- [init(contentsOf: URL) throws](/documentation/swift/string/init(contentsof:))
- [init(contentsOf: URL, encoding: String.Encoding) throws](/documentation/swift/string/init(contentsof:encoding:))
- [init(contentsOf: URL, usedEncoding: inout String.Encoding) throws](/documentation/swift/string/init(contentsof:usedencoding:))
- [init(contentsOfFile: String) throws](/documentation/swift/string/init(contentsoffile:))
- [init(contentsOfFile: String, encoding: String.Encoding) throws](/documentation/swift/string/init(contentsoffile:encoding:))
- [init(contentsOfFile: String, usedEncoding: inout String.Encoding) throws](/documentation/swift/string/init(contentsoffile:usedencoding:))

### Writing to a File or URL

- [func write(String)](/documentation/swift/string/write(_:))
- [func write<Target>(to: inout Target)](/documentation/swift/string/write(to:))

### Appending Strings and Characters

- [func append(String)](/documentation/swift/string/append(_:)-4xa8f)
- [func append(Character)](/documentation/swift/string/append(_:)-4xi3j)
- [func append(contentsOf: String)](/documentation/swift/string/append(contentsof:)-oxek)
- [func append(contentsOf: Substring)](/documentation/swift/string/append(contentsof:)-9vb4t)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-7est5)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-9foms)
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:))
- [static func + (String, String) -> String](/documentation/swift/string/+(_:_:))
- [static func += (inout String, String)](/documentation/swift/string/+=(_:_:))
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/+(_:_:)-6h59y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-n329)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-9fm57)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/+=(_:_:)-676gx)

### Inserting Characters

- [func insert(Character, at: String.Index)](/documentation/swift/string/insert(_:at:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/insert(_:at:)-88yqh)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/insert(contentsof:at:)-rdu9)
- [func insert<S>(contentsOf: S, at: String.Index)](/documentation/swift/string/insert(contentsof:at:))

### Replacing Substrings

- [func replaceSubrange<C>(Range<String.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/replacesubrange(_:with:)-72947)

### Removing Substrings

- [func remove(at: String.Index) -> Character](/documentation/swift/string/remove(at:))
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/remove(at:)-5g0wm)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/removelast())
- [func removeLast(Int)](/documentation/swift/string/removelast(_:))
- [func removeSubrange(Range<String.Index>)](/documentation/swift/string/removesubrange(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/removesubrange(_:)-8maxn)
- [func removeSubrange<R>(R)](/documentation/swift/string/removesubrange(_:)-9twng)
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/filter(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/droplast(_:))
- [func popLast() -> Self.Element?](/documentation/swift/string/poplast())

### Changing Case

- [func lowercased() -> String](/documentation/swift/string/lowercased())
- [func uppercased() -> String](/documentation/swift/string/uppercased())

### Comparing Strings Using Operators

- [static func == (String, String) -> Bool](/documentation/swift/string/==(_:_:))
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/string/==(_:_:)-8kzxf)
- [static func != (Self, Self) -> Bool](/documentation/swift/string/!=(_:_:)-1bb05)
- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/string/!=(_:_:)-frzf)
- [static func ~= (String, Substring) -> Bool](/documentation/swift/string/~=(_:_:))

### Comparing Characters

- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:by:))

### Creating and Applying Differences

- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/applying(_:))
- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:by:))

### Finding Substrings

- [func hasPrefix(String) -> Bool](/documentation/swift/string/hasprefix(_:))
- [func hasSuffix(String) -> Bool](/documentation/swift/string/hassuffix(_:))

### Finding Characters

- [func contains(Self.Element) -> Bool](/documentation/swift/string/contains(_:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/allsatisfy(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/contains(where:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/first(where:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/firstindex(where:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/lastindex(where:))
- [func max() -> Self.Element?](/documentation/swift/string/max())
- [func max<T>(T, T) -> T](/documentation/swift/string/max(_:_:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/min())
- [func min<T>(T, T) -> T](/documentation/swift/string/min(_:_:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/min(by:))

### Getting Substrings

- [subscript(Range<String.Index>) -> Substring](/documentation/swift/string/subscript(_:)-2so14)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4h7s3)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4al9c)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/suffix(from:))

### Splitting a String

- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/split(separator:maxsplits:omittingemptysubsequences:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/split(maxsplits:omittingemptysubsequences:whereseparator:))

### Getting Characters and Bytes

- [subscript(String.Index) -> Character](/documentation/swift/string/subscript(_:)-lc0v)
- [var first: Self.Element?](/documentation/swift/string/first)
- [var last: Self.Element?](/documentation/swift/string/last)
- [func randomElement() -> Self.Element?](/documentation/swift/string/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/randomelement(using:))

### Working with Encodings

- [static var availableStringEncodings: [String.Encoding]](/documentation/swift/string/availablestringencodings)
- [static var defaultCStringEncoding: String.Encoding](/documentation/swift/string/defaultcstringencoding)
- [static func localizedName(of: String.Encoding) -> String](/documentation/swift/string/localizedname(of:))
- [var isContiguousUTF8: Bool](/documentation/swift/string/iscontiguousutf8)
- [func makeContiguousUTF8()](/documentation/swift/string/makecontiguousutf8())
- [func withUTF8<R>((UnsafeBufferPointer<UInt8>) throws -> R) rethrows -> R](/documentation/swift/string/withutf8(_:))

### Working with String Views

- [var unicodeScalars: String.UnicodeScalarView](/documentation/swift/string/unicodescalars)
- [init(String.UnicodeScalarView)](/documentation/swift/string/init(_:)-2t931)
- [init(Substring.UnicodeScalarView)](/documentation/swift/string/init(_:)-11jx3)
- [var utf16: String.UTF16View](/documentation/swift/string/utf16)
- [init(String.UTF16View)](/documentation/swift/string/init(_:)-wbcx)
- [init?(Substring.UTF16View)](/documentation/swift/string/init(_:)-expd)
- [var utf8: String.UTF8View](/documentation/swift/string/utf8)
- [init(String.UTF8View)](/documentation/swift/string/init(_:)-6sprj)
- [init?(Substring.UTF8View)](/documentation/swift/string/init(_:)-83bub)

### Transforming a String’s Characters

- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/compactmap(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/flatmap(_:)-i3m9)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/flatmap(_:)-6chuq)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/reduce(into:_:))
- [var lazy: LazySequence<Self>](/documentation/swift/string/lazy)

### Iterating over a String’s Characters

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/enumerated())
- [func makeIterator() -> String.Iterator](/documentation/swift/string/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/string/underestimatedcount)

### Reordering a String’s Characters

- [func sorted() -> [Self.Element]](/documentation/swift/string/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/sorted(by:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/string/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/shuffled(using:))

### Getting C Strings

- [var utf8CString: ContiguousArray<CChar>](/documentation/swift/string/utf8cstring)
- [func withCString<Result>((UnsafePointer<Int8>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(encodedas:_:))

### Working with Paths

- [init(FilePath)](/documentation/swift/string/init(_:)-3a5mh)
- [init?(validatingUTF8: FilePath)](/documentation/swift/string/init(validatingutf8:)-6i0in)

### Manipulating Indices

- [var startIndex: String.Index](/documentation/swift/string/startindex)
- [var endIndex: String.Index](/documentation/swift/string/endindex)
- [func index(after: String.Index) -> String.Index](/documentation/swift/string/index(after:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/formindex(after:))
- [func index(before: String.Index) -> String.Index](/documentation/swift/string/index(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/formindex(before:))
- [func index(String.Index, offsetBy: Int) -> String.Index](/documentation/swift/string/index(_:offsetby:))
- [func index(String.Index, offsetBy: Int, limitedBy: String.Index) -> String.Index?](/documentation/swift/string/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/formindex(_:offsetby:limitedby:))
- [func distance(from: String.Index, to: String.Index) -> Int](/documentation/swift/string/distance(from:to:))
- [var indices: DefaultIndices<Self>](/documentation/swift/string/indices-swift.property)

### Creating a Range Expression

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/'...(_:_:))
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/'...(_:)-4mm4o)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/'...(_:)-6ct5g)

### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/string/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/string/init(from:))

### Describing a String

- [var description: String](/documentation/swift/string/description)
- [var debugDescription: String](/documentation/swift/string/debugdescription)
- [var customMirror: Mirror](/documentation/swift/string/custommirror)
- [var hashValue: Int](/documentation/swift/string/hashvalue)
- [func hash(into: inout Hasher)](/documentation/swift/string/hash(into:))

### Infrequently Used Functionality

- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/index(of:))
- [init(NSString)](/documentation/swift/string/init(_:)-5a5lw)
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:))
- [init(stringLiteral: String)](/documentation/swift/string/init(stringliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/string/init(unicodescalarliteral:))
- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/string/init(extendedgraphemeclusterliteral:))
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/customplaygroundquicklook)
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/withcontiguousstorageifavailable(_:))

### Reference Types

- [NSString](/documentation/foundation/nsstring)
- [NSMutableString](/documentation/foundation/nsmutablestring)

### Related String Types

- [Substring](/documentation/swift/substring)

#### Operators

- [static func ~= (Substring, String) -> Bool](/documentation/swift/substring/~=(_:_:))

#### Initializers

- [init()](/documentation/swift/substring/init())
- [init(Substring.UTF8View)](/documentation/swift/substring/init(_:)-4njms)
- [init(Substring.UTF16View)](/documentation/swift/substring/init(_:)-61zpv)
- [init(Substring.UnicodeScalarView)](/documentation/swift/substring/init(_:)-7k0au)

#### Instance Properties

- [var base: String](/documentation/swift/substring/base)
- [var characters: Substring](/documentation/swift/substring/characters)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/substring/customplaygroundquicklook)
- [var isContiguousUTF8: Bool](/documentation/swift/substring/iscontiguousutf8)
- [var utf8Span: UTF8Span](/documentation/swift/substring/utf8span)

#### Instance Methods

- [func filter((Substring.Element) throws -> Bool) rethrows -> String](/documentation/swift/substring/filter(_:))
- [func makeContiguousUTF8()](/documentation/swift/substring/makecontiguousutf8())
- [func replaceSubrange(Range<Substring.Index>, with: Substring)](/documentation/swift/substring/replacesubrange(_:with:)-mfwu)
- [func withMutableCharacters<R>((inout Substring) -> R) -> R](/documentation/swift/substring/withmutablecharacters(_:))
- [func withUTF8<R>((UnsafeBufferPointer<UInt8>) throws -> R) rethrows -> R](/documentation/swift/substring/withutf8(_:))

#### Type Aliases

- [Substring.CharacterView](/documentation/swift/substring/characterview)
- [Substring.Output](/documentation/swift/substring/output)

#### Default Implementations

- [Attachable Implementations](/documentation/swift/substring/attachable-implementations)

##### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<Substring>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/substring/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/substring/bidirectionalcollection-implementations)

##### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/last)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/difference(from:by:))
- [func distance(from: Substring.Index, to: Substring.Index) -> Int](/documentation/swift/substring/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/substring/formindex(before:))
- [func index(Substring.Index, offsetBy: Int) -> Substring.Index](/documentation/swift/substring/index(_:offsetby:))
- [func index(Substring.Index, offsetBy: Int, limitedBy: Substring.Index) -> Substring.Index?](/documentation/swift/substring/index(_:offsetby:limitedby:))
- [func index(after: Substring.Index) -> Substring.Index](/documentation/swift/substring/index(after:))
- [func index(before: Substring.Index) -> Substring.Index](/documentation/swift/substring/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-7k3s0)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-2gcne)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-8r1d9)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/suffix(_:))

##### Subscripts

- [subscript(Range<Substring.Index>) -> Substring](/documentation/swift/substring/subscript(_:)-6e3qj)
- [Collection Implementations](/documentation/swift/substring/collection-implementations)

##### Instance Properties

- [var count: Int](/documentation/swift/substring/count)
- [var endIndex: Substring.Index](/documentation/swift/substring/endindex)
- [var first: Self.Element?](/documentation/swift/substring/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/substring/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/isempty)
- [var startIndex: Substring.Index](/documentation/swift/substring/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/substring/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/map(_:)-5p6oh)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-5bf95)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-5qb6j)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/suffix(from:))

##### Subscripts

- [subscript(Substring.Index) -> Character](/documentation/swift/substring/subscript(_:)-2nr4p)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/subscript(_:)-392pj)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/subscript(_:)-4al8g)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/subscript(_:)-4h7r7)

##### Type Aliases

- [Substring.Index](/documentation/swift/substring/index)
- [Substring.Indices](/documentation/swift/substring/indices)
- [Substring.Iterator](/documentation/swift/substring/iterator)
- [Substring.SubSequence](/documentation/swift/substring/subsequence)
- [Comparable Implementations](/documentation/swift/substring/comparable-implementations)

##### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/substring/'...(_:)-4mm5k)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/substring/'...(_:)-6ct6c)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/substring/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/substring/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/substring/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/substring/_(_:_:)-24u51)
- [static func <= (Self, Self) -> Bool](/documentation/swift/substring/_=(_:_:)-1ii2)
- [static func >= (Self, Self) -> Bool](/documentation/swift/substring/_=(_:_:)-8lyhq)
- [CustomDebugStringConvertible Implementations](/documentation/swift/substring/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/substring/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/substring/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/substring/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/substring/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/substring/description)
- [Equatable Implementations](/documentation/swift/substring/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/substring/!=(_:_:)-1baz9)
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/substring/expressiblebyextendedgraphemeclusterliteral-implementations)

##### Initializers

- [init(extendedGraphemeClusterLiteral: String)](/documentation/swift/substring/init(extendedgraphemeclusterliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/substring/init(unicodescalarliteral:)-53rjt)

##### Type Aliases

- [Substring.ExtendedGraphemeClusterLiteralType](/documentation/swift/substring/extendedgraphemeclusterliteraltype)
- [ExpressibleByStringInterpolation Implementations](/documentation/swift/substring/expressiblebystringinterpolation-implementations)

##### Initializers

- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/substring/init(stringinterpolation:))
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/substring/init(stringinterpolation:)-62cd)

##### Type Aliases

- [Substring.StringInterpolation](/documentation/swift/substring/stringinterpolation)
- [ExpressibleByStringLiteral Implementations](/documentation/swift/substring/expressiblebystringliteral-implementations)

##### Initializers

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/substring/init(extendedgraphemeclusterliteral:)-3gyj6)
- [init(stringLiteral: String)](/documentation/swift/substring/init(stringliteral:))

##### Type Aliases

- [Substring.StringLiteralType](/documentation/swift/substring/stringliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/substring/expressiblebyunicodescalarliteral-implementations)

##### Initializers

- [init(unicodeScalarLiteral: String)](/documentation/swift/substring/init(unicodescalarliteral:))

##### Type Aliases

- [Substring.UnicodeScalarLiteralType](/documentation/swift/substring/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/substring/hashable-implementations)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/substring/hashvalue)
- [LosslessStringConvertible Implementations](/documentation/swift/substring/losslessstringconvertible-implementations)

##### Initializers

- [init(String)](/documentation/swift/substring/init(_:)-95va8)
- [RangeReplaceableCollection Implementations](/documentation/swift/substring/rangereplaceablecollection-implementations)

##### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/substring/+(_:_:)-6h592)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/+(_:_:)-9fm63)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/+(_:_:)-n335)
- [static func += <Other>(inout Self, Other)](/documentation/swift/substring/+=(_:_:))

##### Initializers

- [init<S>(S)](/documentation/swift/substring/init(_:)-1ip9z)
- [init<S>(S)](/documentation/swift/substring/init(_:)-6lxbv)
- [init(repeating: Self.Element, count: Int)](/documentation/swift/substring/init(repeating:count:))

##### Instance Methods

- [func append(Self.Element)](/documentation/swift/substring/append(_:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/append(contentsof:)-9folw)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/substring/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/substring/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/substring/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-70a2x)
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-nrp9)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/substring/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/substring/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/substring/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-2cpd8)
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-39om1)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-43evo)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-5s82s)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-4kq76)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-5b56p)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-1xrzw)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-5ulmx)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/substring/removesubrange(_:)-8mayj)
- [func removeSubrange<R>(R)](/documentation/swift/substring/removesubrange(_:)-9twoc)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/substring/removesubranges(_:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-3hke2)
- [func replaceSubrange<C>(Range<Substring.Index>, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-5g58l)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-7293b)
- [func reserveCapacity(Int)](/documentation/swift/substring/reservecapacity(_:))
- [Sequence Implementations](/documentation/swift/substring/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/flatmap(_:)-6chtu)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/flatmap(_:)-i3n5)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/map(_:)-9jnor)
- [func max() -> Self.Element?](/documentation/swift/substring/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/withcontiguousstorageifavailable(_:))

##### Type Aliases

- [Substring.Element](/documentation/swift/substring/element)
- [StringProtocol Implementations](/documentation/swift/substring/stringprotocol-implementations)

##### Structures

- [Substring.UTF16View](/documentation/swift/substring/utf16view)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/utf16view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf16view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/droplast(_:))
- [func formIndex(before: inout Substring.UTF16View.Index)](/documentation/swift/substring/utf16view/formindex(before:))
- [func index(before: Substring.UTF16View.Index) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf16view/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/utf16view/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/substring/utf16view/removelast())
- [func removeLast(Int)](/documentation/swift/substring/utf16view/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/utf16view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/utf16view/count)
- [var endIndex: Substring.UTF16View.Index](/documentation/swift/substring/utf16view/endindex)
- [var first: Self.Element?](/documentation/swift/substring/utf16view/first)
- [var indices: Substring.UTF16View.Indices](/documentation/swift/substring/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/utf16view/isempty)
- [var startIndex: Substring.UTF16View.Index](/documentation/swift/substring/utf16view/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/utf16view/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UTF16View.Index, to: Substring.UTF16View.Index) -> Int](/documentation/swift/substring/utf16view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UTF16View.Index)](/documentation/swift/substring/utf16view/formindex(after:))
- [func index(Substring.UTF16View.Index, offsetBy: Int) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(_:offsetby:))
- [func index(Substring.UTF16View.Index, offsetBy: Int, limitedBy: Substring.UTF16View.Index) -> Substring.UTF16View.Index?](/documentation/swift/substring/utf16view/index(_:offsetby:limitedby:))
- [func index(after: Substring.UTF16View.Index) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/utf16view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf16view/map(_:)-2jwvg)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/utf16view/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/utf16view/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/utf16view/removefirst())
- [func removeFirst(Int)](/documentation/swift/substring/utf16view/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/suffix(from:))

###### Subscripts

- [subscript(Range<Substring.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/substring/utf16view/subscript(_:)-20thk)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/utf16view/subscript(_:)-2ljg7)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf16view/subscript(_:)-3ijoy)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/utf16view/subscript(_:)-5j3ao)
- [subscript(Substring.UTF16View.Index) -> Substring.UTF16View.Element](/documentation/swift/substring/utf16view/subscript(_:)-ketw)

###### Type Aliases

- [Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index)
- [Substring.UTF16View.Indices](/documentation/swift/substring/utf16view/indices-swift.typealias)
- [Substring.UTF16View.Iterator](/documentation/swift/substring/utf16view/iterator)
- [Substring.UTF16View.SubSequence](/documentation/swift/substring/utf16view/subsequence)
- [Sequence Implementations](/documentation/swift/substring/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/utf16view/flatmap(_:)-2i1gn)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf16view/flatmap(_:)-8ecws)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf16view/map(_:)-7n24w)
- [func max() -> Self.Element?](/documentation/swift/substring/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Substring.UTF16View.Element](/documentation/swift/substring/utf16view/element)
- [Substring.UTF8View](/documentation/swift/substring/utf8view)

###### Instance Properties

- [var span: Span<UTF8.CodeUnit>](/documentation/swift/substring/utf8view/span)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/droplast(_:))
- [func formIndex(before: inout Substring.UTF8View.Index)](/documentation/swift/substring/utf8view/formindex(before:))
- [func index(before: Substring.UTF8View.Index) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf8view/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/utf8view/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/substring/utf8view/removelast())
- [func removeLast(Int)](/documentation/swift/substring/utf8view/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/utf8view/count)
- [var endIndex: Substring.UTF8View.Index](/documentation/swift/substring/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/substring/utf8view/first)
- [var indices: Substring.UTF8View.Indices](/documentation/swift/substring/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/utf8view/isempty)
- [var startIndex: Substring.UTF8View.Index](/documentation/swift/substring/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/utf8view/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UTF8View.Index, to: Substring.UTF8View.Index) -> Int](/documentation/swift/substring/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UTF8View.Index)](/documentation/swift/substring/utf8view/formindex(after:))
- [func index(Substring.UTF8View.Index, offsetBy: Int) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(_:offsetby:))
- [func index(Substring.UTF8View.Index, offsetBy: Int, limitedBy: Substring.UTF8View.Index) -> Substring.UTF8View.Index?](/documentation/swift/substring/utf8view/index(_:offsetby:limitedby:))
- [func index(after: Substring.UTF8View.Index) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf8view/map(_:)-3dhqn)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/utf8view/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/utf8view/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/utf8view/removefirst())
- [func removeFirst(Int)](/documentation/swift/substring/utf8view/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/utf8view/subscript(_:)-3zacs)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/utf8view/subscript(_:)-6liln)
- [subscript(Range<Substring.UTF8View.Index>) -> Substring.UTF8View](/documentation/swift/substring/utf8view/subscript(_:)-7hfz9)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf8view/subscript(_:)-9ouv5)
- [subscript(Substring.UTF8View.Index) -> Substring.UTF8View.Element](/documentation/swift/substring/utf8view/subscript(_:)-goc1)

###### Type Aliases

- [Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index)
- [Substring.UTF8View.Indices](/documentation/swift/substring/utf8view/indices-swift.typealias)
- [Substring.UTF8View.Iterator](/documentation/swift/substring/utf8view/iterator)
- [Substring.UTF8View.SubSequence](/documentation/swift/substring/utf8view/subsequence)
- [Sequence Implementations](/documentation/swift/substring/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/utf8view/flatmap(_:)-3zvpt)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf8view/flatmap(_:)-524db)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf8view/map(_:)-1lwff)
- [func max() -> Self.Element?](/documentation/swift/substring/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Substring.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf8view/withcontiguousstorageifavailable(_:)-7usx4)

###### Type Aliases

- [Substring.UTF8View.Element](/documentation/swift/substring/utf8view/element)
- [Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalarview)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/unicodescalarview/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/unicodescalarview/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/unicodescalarview/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Substring.UnicodeScalarView.Index)](/documentation/swift/substring/unicodescalarview/formindex(before:))
- [func index(before: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/unicodescalarview/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-7f9to)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-8b12x)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-4vtt6)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/unicodescalarview/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/unicodescalarview/count)
- [var endIndex: Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/endindex)
- [var first: Self.Element?](/documentation/swift/substring/unicodescalarview/first)
- [var indices: Substring.UnicodeScalarView.Indices](/documentation/swift/substring/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/unicodescalarview/isempty)
- [var startIndex: Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/unicodescalarview/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UnicodeScalarView.Index, to: Substring.UnicodeScalarView.Index) -> Int](/documentation/swift/substring/unicodescalarview/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UnicodeScalarView.Index)](/documentation/swift/substring/unicodescalarview/formindex(after:))
- [func index(Substring.UnicodeScalarView.Index, offsetBy: Int) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(_:offsetby:))
- [func index(Substring.UnicodeScalarView.Index, offsetBy: Int, limitedBy: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index?](/documentation/swift/substring/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/unicodescalarview/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/unicodescalarview/map(_:)-3wgri)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/unicodescalarview/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/unicodescalarview/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-2wary)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-2iv78)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/suffix(from:))

###### Subscripts

- [subscript(Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Element](/documentation/swift/substring/unicodescalarview/subscript(_:)-57h51)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/subscript(_:)-7ylky)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/subscript(_:)-9p7x7)
- [subscript(Range<Substring.UnicodeScalarView.Index>) -> Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalarview/subscript(_:)-ua5x)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/unicodescalarview/subscript(_:)-zsz3)

###### Type Aliases

- [Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index)
- [Substring.UnicodeScalarView.Indices](/documentation/swift/substring/unicodescalarview/indices-swift.typealias)
- [Substring.UnicodeScalarView.Iterator](/documentation/swift/substring/unicodescalarview/iterator)
- [Substring.UnicodeScalarView.SubSequence](/documentation/swift/substring/unicodescalarview/subsequence)
- [RangeReplaceableCollection Implementations](/documentation/swift/substring/unicodescalarview/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-1c1pd)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-1p67y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-9qjws)
- [static func += <Other>(inout Self, Other)](/documentation/swift/substring/unicodescalarview/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/substring/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/substring/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/substring/unicodescalarview/init(repeating:count:))

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/substring/unicodescalarview/append(_:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/unicodescalarview/append(contentsof:))
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/substring/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/substring/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/substring/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/substring/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-46voy)
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-7zgh4)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/substring/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/substring/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/substring/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-2a3ja)
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-5t2ib)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-2lfkb)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-5314w)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-3izvn)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-75qy7)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-30fw5)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-74qgu)
- [func removeSubrange<R>(R)](/documentation/swift/substring/unicodescalarview/removesubrange(_:)-2qm37)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/substring/unicodescalarview/removesubrange(_:)-5c1al)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/substring/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<Substring.UnicodeScalarView.Index>, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:)-4kmx6)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:)-7xjpm)
- [func reserveCapacity(Int)](/documentation/swift/substring/unicodescalarview/reservecapacity(_:))
- [Sequence Implementations](/documentation/swift/substring/unicodescalarview/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/unicodescalarview/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/unicodescalarview/flatmap(_:)-1uifa)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/unicodescalarview/flatmap(_:)-3yg2b)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/unicodescalarview/map(_:)-2cf6k)
- [func max() -> Self.Element?](/documentation/swift/substring/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/unicodescalarview/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Substring.UnicodeScalarView.Element](/documentation/swift/substring/unicodescalarview/element)

##### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/!=(_:_:)-fryj)
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/==(_:_:))
- [static func > <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_(_:_:)-6o7pz)
- [static func < <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_(_:_:)-8d1w2)
- [static func <= <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_=(_:_:)-5y23r)
- [static func >= <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_=(_:_:)-nd7a)

##### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/substring/init(cstring:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/substring/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/substring/init(decodingcstring:as:))

##### Instance Properties

- [var unicodeScalars: Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalars)
- [var utf16: Substring.UTF16View](/documentation/swift/substring/utf16)
- [var utf8: Substring.UTF8View](/documentation/swift/substring/utf8)

##### Instance Methods

- [func hasPrefix<Prefix>(Prefix) -> Bool](/documentation/swift/substring/hasprefix(_:))
- [func hasSuffix<Suffix>(Suffix) -> Bool](/documentation/swift/substring/hassuffix(_:))
- [func hash(into: inout Hasher)](/documentation/swift/substring/hash(into:))
- [func lowercased() -> String](/documentation/swift/substring/lowercased())
- [func uppercased() -> String](/documentation/swift/substring/uppercased())
- [func withCString<Result>((UnsafePointer<CChar>) throws -> Result) rethrows -> Result](/documentation/swift/substring/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/substring/withcstring(encodedas:_:))
- [TextOutputStream Implementations](/documentation/swift/substring/textoutputstream-implementations)

##### Instance Methods

- [func write(String)](/documentation/swift/substring/write(_:))
- [TextOutputStreamable Implementations](/documentation/swift/substring/textoutputstreamable-implementations)

##### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/substring/write(to:))
- [StringProtocol](/documentation/swift/stringprotocol)

#### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/stringprotocol/!=(_:_:))

#### Associated Types

- [SubSequence](/documentation/swift/stringprotocol/subsequence)
- [UTF16View](/documentation/swift/stringprotocol/utf16view)
- [UTF8View](/documentation/swift/stringprotocol/utf8view)
- [UnicodeScalarView](/documentation/swift/stringprotocol/unicodescalarview)

#### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/stringprotocol/init(cstring:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/stringprotocol/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/stringprotocol/init(decodingcstring:as:))

#### Instance Properties

- [var capitalized: String](/documentation/swift/stringprotocol/capitalized)
- [var decomposedStringWithCanonicalMapping: String](/documentation/swift/stringprotocol/decomposedstringwithcanonicalmapping)
- [var decomposedStringWithCompatibilityMapping: String](/documentation/swift/stringprotocol/decomposedstringwithcompatibilitymapping)
- [var fastestEncoding: String.Encoding](/documentation/swift/stringprotocol/fastestencoding)
- [var hash: Int](/documentation/swift/stringprotocol/hash)
- [var localizedCapitalized: String](/documentation/swift/stringprotocol/localizedcapitalized)
- [var localizedLowercase: String](/documentation/swift/stringprotocol/localizedlowercase)
- [var localizedUppercase: String](/documentation/swift/stringprotocol/localizeduppercase)
- [var precomposedStringWithCanonicalMapping: String](/documentation/swift/stringprotocol/precomposedstringwithcanonicalmapping)
- [var precomposedStringWithCompatibilityMapping: String](/documentation/swift/stringprotocol/precomposedstringwithcompatibilitymapping)
- [var removingPercentEncoding: String?](/documentation/swift/stringprotocol/removingpercentencoding)
- [var smallestEncoding: String.Encoding](/documentation/swift/stringprotocol/smallestencoding)
- [var unicodeScalars: Self.UnicodeScalarView](/documentation/swift/stringprotocol/unicodescalars)
- [var utf16: Self.UTF16View](/documentation/swift/stringprotocol/utf16)
- [var utf8: Self.UTF8View](/documentation/swift/stringprotocol/utf8)

#### Instance Methods

- [func addingPercentEncoding(withAllowedCharacters: CharacterSet) -> String?](/documentation/swift/stringprotocol/addingpercentencoding(withallowedcharacters:))
- [func addingPercentEscapes(using: String.Encoding) -> String?](/documentation/swift/stringprotocol/addingpercentescapes(using:))
- [func appending(some StringProtocol) -> String](/documentation/swift/stringprotocol/appending(_:))
- [func appendingFormat<T>(T, any CVarArg...) -> String](/documentation/swift/stringprotocol/appendingformat(_:_:))
- [func applyingTransform(StringTransform, reverse: Bool) -> String?](/documentation/swift/stringprotocol/applyingtransform(_:reverse:))
- [func cString(using: String.Encoding) -> [CChar]?](/documentation/swift/stringprotocol/cstring(using:))
- [func canBeConverted(to: String.Encoding) -> Bool](/documentation/swift/stringprotocol/canbeconverted(to:))
- [func capitalized(with: Locale?) -> String](/documentation/swift/stringprotocol/capitalized(with:))
- [func caseInsensitiveCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/caseinsensitivecompare(_:))
- [func commonPrefix<T>(with: T, options: String.CompareOptions) -> String](/documentation/swift/stringprotocol/commonprefix(with:options:))
- [func compare<T>(T, options: String.CompareOptions, range: Range<Self.Index>?, locale: Locale?) -> ComparisonResult](/documentation/swift/stringprotocol/compare(_:options:range:locale:))
- [func completePath(into: UnsafeMutablePointer<String>?, caseSensitive: Bool, matchesInto: UnsafeMutablePointer<[String]>?, filterTypes: [String]?) -> Int](/documentation/swift/stringprotocol/completepath(into:casesensitive:matchesinto:filtertypes:))
- [func components(separatedBy: CharacterSet) -> [String]](/documentation/swift/stringprotocol/components(separatedby:)-4j26n)
- [func components<T>(separatedBy: T) -> [String]](/documentation/swift/stringprotocol/components(separatedby:)-8gl9t)
- [func contains<T>(T) -> Bool](/documentation/swift/stringprotocol/contains(_:)-40kbf)
- [func contains(String) -> Bool](/documentation/swift/stringprotocol/contains(_:)-78f5t)
- [func contains(Substring) -> Bool](/documentation/swift/stringprotocol/contains(_:)-78p35)
- [func data(using: String.Encoding, allowLossyConversion: Bool) -> Data?](/documentation/swift/stringprotocol/data(using:allowlossyconversion:))
- [func dataDetectorMatches(DataDetector.MatchType, options: DataDetector.Options) -> some AsyncSequence<DataDetector.Match, Never>
](/documentation/swift/stringprotocol/datadetectormatches(_:options:))
- [func enumerateLines(invoking: (String, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratelines(invoking:))
- [func enumerateLinguisticTags<T, R>(in: R, scheme: T, options: NSLinguisticTagger.Options, orthography: NSOrthography?, invoking: (String, Range<Self.Index>, Range<Self.Index>, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratelinguistictags(in:scheme:options:orthography:invoking:))
- [func enumerateSubstrings<R>(in: R, options: String.EnumerationOptions, (String?, Range<Self.Index>, Range<Self.Index>, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratesubstrings(in:options:_:))
- [func folding(options: String.CompareOptions, locale: Locale?) -> String](/documentation/swift/stringprotocol/folding(options:locale:))
- [func getBytes<R>(inout [UInt8], maxLength: Int, usedLength: UnsafeMutablePointer<Int>, encoding: String.Encoding, options: String.EncodingConversionOptions, range: R, remaining: UnsafeMutablePointer<Range<Self.Index>>) -> Bool](/documentation/swift/stringprotocol/getbytes(_:maxlength:usedlength:encoding:options:range:remaining:))
- [func getCString(inout [CChar], maxLength: Int, encoding: String.Encoding) -> Bool](/documentation/swift/stringprotocol/getcstring(_:maxlength:encoding:))
- [func getLineStart(UnsafeMutablePointer<Self.Index>, end: UnsafeMutablePointer<Self.Index>, contentsEnd: UnsafeMutablePointer<Self.Index>, for: some RangeExpression<String.Index>)](/documentation/swift/stringprotocol/getlinestart(_:end:contentsend:for:))
- [func getParagraphStart(UnsafeMutablePointer<Self.Index>, end: UnsafeMutablePointer<Self.Index>, contentsEnd: UnsafeMutablePointer<Self.Index>, for: some RangeExpression<String.Index>)](/documentation/swift/stringprotocol/getparagraphstart(_:end:contentsend:for:))
- [func hasPrefix(String) -> Bool](/documentation/swift/stringprotocol/hasprefix(_:))

##### StringProtocol Implementations

- [func hasPrefix<Prefix>(Prefix) -> Bool](/documentation/swift/stringprotocol/hasprefix(_:)-9c8b6)
- [func hasSuffix(String) -> Bool](/documentation/swift/stringprotocol/hassuffix(_:))

##### StringProtocol Implementations

- [func hasSuffix<Suffix>(Suffix) -> Bool](/documentation/swift/stringprotocol/hassuffix(_:)-13eus)
- [func lengthOfBytes(using: String.Encoding) -> Int](/documentation/swift/stringprotocol/lengthofbytes(using:))
- [func lineRange(for: some RangeExpression<String.Index>) -> Range<Self.Index>](/documentation/swift/stringprotocol/linerange(for:))
- [func linguisticTags<T, R>(in: R, scheme: T, options: NSLinguisticTagger.Options, orthography: NSOrthography?, tokenRanges: UnsafeMutablePointer<[Range<Self.Index>]>?) -> [String]](/documentation/swift/stringprotocol/linguistictags(in:scheme:options:orthography:tokenranges:))
- [func localizedCaseInsensitiveCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedcaseinsensitivecompare(_:))
- [func localizedCaseInsensitiveContains<T>(T) -> Bool](/documentation/swift/stringprotocol/localizedcaseinsensitivecontains(_:))
- [func localizedCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedcompare(_:))
- [func localizedStandardCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedstandardcompare(_:))
- [func localizedStandardContains<T>(T) -> Bool](/documentation/swift/stringprotocol/localizedstandardcontains(_:))
- [func localizedStandardRange<T>(of: T) -> Range<Self.Index>?](/documentation/swift/stringprotocol/localizedstandardrange(of:))
- [func lowercased() -> String](/documentation/swift/stringprotocol/lowercased())
- [func lowercased(with: Locale?) -> String](/documentation/swift/stringprotocol/lowercased(with:))
- [func maximumLengthOfBytes(using: String.Encoding) -> Int](/documentation/swift/stringprotocol/maximumlengthofbytes(using:))
- [func padding<T>(toLength: Int, withPad: T, startingAt: Int) -> String](/documentation/swift/stringprotocol/padding(tolength:withpad:startingat:))
- [func paragraphRange(for: some RangeExpression<String.Index>) -> Range<Self.Index>](/documentation/swift/stringprotocol/paragraphrange(for:))
- [func propertyList() -> Any](/documentation/swift/stringprotocol/propertylist())
- [func propertyListFromStringsFileFormat() -> [String : String]](/documentation/swift/stringprotocol/propertylistfromstringsfileformat())
- [func range<T>(of: T, options: String.CompareOptions, range: Range<Self.Index>?, locale: Locale?) -> Range<Self.Index>?](/documentation/swift/stringprotocol/range(of:options:range:locale:))
- [func rangeOfCharacter(from: CharacterSet, options: String.CompareOptions, range: Range<Self.Index>?) -> Range<Self.Index>?](/documentation/swift/stringprotocol/rangeofcharacter(from:options:range:))
- [func rangeOfComposedCharacterSequence(at: Self.Index) -> Range<Self.Index>](/documentation/swift/stringprotocol/rangeofcomposedcharactersequence(at:))
- [func rangeOfComposedCharacterSequences<R>(for: R) -> Range<Self.Index>](/documentation/swift/stringprotocol/rangeofcomposedcharactersequences(for:))
- [func replacingCharacters<T, R>(in: R, with: T) -> String](/documentation/swift/stringprotocol/replacingcharacters(in:with:))
- [func replacingOccurrences<Target, Replacement>(of: Target, with: Replacement, options: String.CompareOptions, range: Range<Self.Index>?) -> String](/documentation/swift/stringprotocol/replacingoccurrences(of:with:options:range:))
- [func replacingPercentEscapes(using: String.Encoding) -> String?](/documentation/swift/stringprotocol/replacingpercentescapes(using:))
- [func split(separator: String, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Substring]](/documentation/swift/stringprotocol/split(separator:maxsplits:omittingemptysubsequences:)-7mfus)
- [func split(separator: Substring, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Substring]](/documentation/swift/stringprotocol/split(separator:maxsplits:omittingemptysubsequences:)-8wzc1)
- [func substring(from: Self.Index) -> String](/documentation/swift/stringprotocol/substring(from:))
- [func substring(to: Self.Index) -> String](/documentation/swift/stringprotocol/substring(to:))
- [func substring(with: Range<Self.Index>) -> String](/documentation/swift/stringprotocol/substring(with:))
- [func trimmingCharacters(in: CharacterSet) -> String](/documentation/swift/stringprotocol/trimmingcharacters(in:))
- [func uppercased() -> String](/documentation/swift/stringprotocol/uppercased())
- [func uppercased(with: Locale?) -> String](/documentation/swift/stringprotocol/uppercased(with:))
- [func withCString<Result>((UnsafePointer<CChar>) throws -> Result) rethrows -> Result](/documentation/swift/stringprotocol/withcstring(_:))
- [func withCString<Result, Encoding>(encodedAs: Encoding.Type, (UnsafePointer<Encoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/stringprotocol/withcstring(encodedas:_:))
- [func write(to: URL, atomically: Bool, encoding: String.Encoding) throws](/documentation/swift/stringprotocol/write(to:atomically:encoding:))
- [func write<T>(toFile: T, atomically: Bool, encoding: String.Encoding) throws](/documentation/swift/stringprotocol/write(tofile:atomically:encoding:))
- [String.Index](/documentation/swift/string/index)

#### Initializers

- [init?(String.Index, within: String.UTF16View)](/documentation/swift/string/index/init(_:within:)-2txd4)
- [init?(String.Index, within: String)](/documentation/swift/string/index/init(_:within:)-2u3iq)
- [init?<S>(AttributedString.Index, within: S)](/documentation/swift/string/index/init(_:within:)-379kg)
- [init?<S>(String.Index, within: S)](/documentation/swift/string/index/init(_:within:)-3eir6)
- [init?(String.Index, within: String.UTF8View)](/documentation/swift/string/index/init(_:within:)-5lb6l)
- [init?(String.Index, within: String.UnicodeScalarView)](/documentation/swift/string/index/init(_:within:)-7e1rw)
- [init(encodedOffset: Int)](/documentation/swift/string/index/init(encodedoffset:))
- [init<S>(utf16Offset: Int, in: S)](/documentation/swift/string/index/init(utf16offset:in:))

#### Instance Properties

- [var encodedOffset: Int](/documentation/swift/string/index/encodedoffset)

#### Instance Methods

- [func samePosition(in: String.UTF8View) -> String.UTF8View.Index?](/documentation/swift/string/index/sameposition(in:)-3mz95)
- [func samePosition(in: String.UnicodeScalarView) -> String.UnicodeScalarIndex?](/documentation/swift/string/index/sameposition(in:)-4yeo1)
- [func samePosition(in: String) -> String.Index?](/documentation/swift/string/index/sameposition(in:)-6oxfv)
- [func samePosition(in: String.UTF16View) -> String.UTF16View.Index?](/documentation/swift/string/index/sameposition(in:)-86cct)
- [func utf16Offset<S>(in: S) -> Int](/documentation/swift/string/index/utf16offset(in:))

#### Default Implementations

- [Comparable Implementations](/documentation/swift/string/index/comparable-implementations)

##### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/index/'...(_:)-12nb2)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/index/'...(_:)-9mt9j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/index/'.._(_:_:))
- [static func < (String.Index, String.Index) -> Bool](/documentation/swift/string/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/index/_(_:_:)-7org4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-6jasp)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-88947)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/index/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/string/index/debugdescription)
- [Equatable Implementations](/documentation/swift/string/index/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/index/!=(_:_:))
- [static func == (String.Index, String.Index) -> Bool](/documentation/swift/string/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/string/index/hashable-implementations)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/string/index/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/index/hash(into:))
- [String.UnicodeScalarView](/documentation/swift/string/unicodescalarview)

#### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/unicodescalarview/customplaygroundquicklook)

#### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/unicodescalarview/bidirectionalcollection-implementations)

##### Instance Properties

- [var endIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/endindex)
- [var last: Self.Element?](/documentation/swift/string/unicodescalarview/last)
- [var startIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/startindex)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:by:))
- [func distance(from: String.UnicodeScalarView.Index, to: String.UnicodeScalarView.Index) -> Int](/documentation/swift/string/unicodescalarview/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(before:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(_:offsetby:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int, limitedBy: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index?](/documentation/swift/string/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(after:))
- [func index(before: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(_:))

##### Subscripts

- [subscript(String.UnicodeScalarView.Index) -> Unicode.Scalar](/documentation/swift/string/unicodescalarview/subscript(_:)-2op53)
- [subscript(Range<String.UnicodeScalarView.Index>) -> String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-6aml8)
- [Collection Implementations](/documentation/swift/string/unicodescalarview/collection-implementations)

##### Structures

- [String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/iterator)

###### Instance Methods

- [func next() -> Unicode.Scalar?](/documentation/swift/string/unicodescalarview/iterator/next())

###### Type Aliases

- [String.UnicodeScalarView.Iterator.Element](/documentation/swift/string/unicodescalarview/iterator/element)

##### Instance Properties

- [var count: Int](/documentation/swift/string/unicodescalarview/count)
- [var first: Self.Element?](/documentation/swift/string/unicodescalarview/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/unicodescalarview/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/unicodescalarview/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(where:))
- [func makeIterator() -> String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-56zez)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(from:))

##### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-4i2sy)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/subscript(_:)-gee0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-qk0r)

##### Type Aliases

- [String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index)
- [String.UnicodeScalarView.Indices](/documentation/swift/string/unicodescalarview/indices)
- [String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/string/unicodescalarview/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/unicodescalarview/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/unicodescalarview/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/string/unicodescalarview/description)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/unicodescalarview/rangereplaceablecollection-implementations)

##### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-61ucr)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-8g18j)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-929xp)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/unicodescalarview/+=(_:_:))

##### Initializers

- [init()](/documentation/swift/string/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/string/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/unicodescalarview/init(repeating:count:))

##### Instance Methods

- [func append(Unicode.Scalar)](/documentation/swift/string/unicodescalarview/append(_:))
- [func append(Self.Element)](/documentation/swift/string/unicodescalarview/append(_:)-5uy8n)
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:)-ton6)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/string/unicodescalarview/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/unicodescalarview/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/unicodescalarview/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/unicodescalarview/removelast())
- [func removeLast(Int)](/documentation/swift/string/unicodescalarview/removelast(_:))
- [func removeSubrange<R>(R)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-62wlg)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-6rv02)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.UnicodeScalarView.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-5z8uw)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-914bq)
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:)-4ygoa)
- [Sequence Implementations](/documentation/swift/string/unicodescalarview/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/unicodescalarview/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/flatmap(_:)-2t5f9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/unicodescalarview/flatmap(_:)-56uyh)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-198wk)
- [func max() -> Self.Element?](/documentation/swift/string/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/unicodescalarview/withcontiguousstorageifavailable(_:))

##### Type Aliases

- [String.UnicodeScalarView.Element](/documentation/swift/string/unicodescalarview/element)
- [String.UTF16View](/documentation/swift/string/utf16view)

#### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf16view/customplaygroundquicklook)

#### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf16view/bidirectionalcollection-implementations)

##### Instance Properties

- [var endIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/endindex)
- [var last: Self.Element?](/documentation/swift/string/utf16view/last)
- [var startIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/startindex)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:by:))
- [func distance(from: String.UTF16View.Index, to: String.UTF16View.Index) -> Int](/documentation/swift/string/utf16view/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf16view/formindex(before:))
- [func index(String.UTF16View.Index, offsetBy: Int) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(_:offsetby:))
- [func index(String.UTF16View.Index, offsetBy: Int, limitedBy: String.UTF16View.Index) -> String.UTF16View.Index?](/documentation/swift/string/utf16view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(after:))
- [func index(before: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(_:))

##### Subscripts

- [subscript(Range<String.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/string/utf16view/subscript(_:)-5fneh)
- [subscript(String.UTF16View.Index) -> UTF16.CodeUnit](/documentation/swift/string/utf16view/subscript(_:)-5ta1h)
- [Collection Implementations](/documentation/swift/string/utf16view/collection-implementations)

##### Structures

- [String.UTF16View.Iterator](/documentation/swift/string/utf16view/iterator)

###### Instance Methods

- [func next() -> UInt16?](/documentation/swift/string/utf16view/iterator/next())

###### Type Aliases

- [String.UTF16View.Iterator.Element](/documentation/swift/string/utf16view/iterator/element)

##### Instance Properties

- [var count: Int](/documentation/swift/string/utf16view/count)
- [var first: Self.Element?](/documentation/swift/string/utf16view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf16view/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/utf16view/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf16view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(where:))
- [func makeIterator() -> String.UTF16View.Iterator](/documentation/swift/string/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-28kz8)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf16view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(from:))

##### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-2785k)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-5x88v)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/subscript(_:)-6mt4v)

##### Type Aliases

- [String.UTF16View.Index](/documentation/swift/string/utf16view/index)
- [String.UTF16View.Indices](/documentation/swift/string/utf16view/indices)
- [String.UTF16View.SubSequence](/documentation/swift/string/utf16view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf16view/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf16view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf16view/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf16view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf16view/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/string/utf16view/description)
- [Sequence Implementations](/documentation/swift/string/utf16view/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf16view/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf16view/flatmap(_:)-4cccc)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/flatmap(_:)-5kmpj)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-7ggk1)
- [func max() -> Self.Element?](/documentation/swift/string/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf16view/withcontiguousstorageifavailable(_:))

##### Type Aliases

- [String.UTF16View.Element](/documentation/swift/string/utf16view/element)
- [String.UTF8View](/documentation/swift/string/utf8view)

#### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf8view/customplaygroundquicklook)
- [var span: Span<UTF8.CodeUnit>](/documentation/swift/string/utf8view/span)

#### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf8view/bidirectionalcollection-implementations)

##### Instance Properties

- [var last: Self.Element?](/documentation/swift/string/utf8view/last)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf8view/formindex(before:))
- [func index(before: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/string/utf8view/collection-implementations)

##### Instance Properties

- [var count: Int](/documentation/swift/string/utf8view/count)
- [var endIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/string/utf8view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf8view/isempty)
- [var startIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/string/utf8view/underestimatedcount)

##### Instance Methods

- [func distance(from: String.UTF8View.Index, to: String.UTF8View.Index) -> Int](/documentation/swift/string/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf8view/formindex(after:))
- [func index(String.UTF8View.Index, offsetBy: Int) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(_:offsetby:))
- [func index(String.UTF8View.Index, offsetBy: Int, limitedBy: String.UTF8View.Index) -> String.UTF8View.Index?](/documentation/swift/string/utf8view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/string/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-4exvs)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf8view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(from:))

##### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-227fo)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/subscript(_:)-25vyw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3gfsv)
- [subscript(Range<String.UTF8View.Index>) -> String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3wo7k)
- [subscript(String.UTF8View.Index) -> UTF8.CodeUnit](/documentation/swift/string/utf8view/subscript(_:)-6nubh)

##### Type Aliases

- [String.UTF8View.Index](/documentation/swift/string/utf8view/index)
- [String.UTF8View.Indices](/documentation/swift/string/utf8view/indices)
- [String.UTF8View.Iterator](/documentation/swift/string/utf8view/iterator)
- [String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf8view/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf8view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf8view/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf8view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf8view/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/string/utf8view/description)
- [Sequence Implementations](/documentation/swift/string/utf8view/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf8view/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf8view/flatmap(_:)-3i8lk)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/flatmap(_:)-83zdf)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-6zfwg)
- [func max() -> Self.Element?](/documentation/swift/string/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<String.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:)-3fk9a)

##### Type Aliases

- [String.UTF8View.Element](/documentation/swift/string/utf8view/element)
- [String.Iterator](/documentation/swift/string/iterator)

#### Instance Methods

- [func next() -> Character?](/documentation/swift/string/iterator/next())

#### Type Aliases

- [String.Iterator.Element](/documentation/swift/string/iterator/element)
- [String.Encoding](/documentation/swift/string/encoding)

#### Initializers

- [init?(ianaName: String)](/documentation/swift/string/encoding/init(iananame:))

#### Instance Properties

- [var ianaName: String?](/documentation/swift/string/encoding/iananame)

#### Type Properties

- [static let ascii: String.Encoding](/documentation/swift/string/encoding/ascii)
- [static let iso2022JP: String.Encoding](/documentation/swift/string/encoding/iso2022jp)
- [static let isoLatin1: String.Encoding](/documentation/swift/string/encoding/isolatin1)
- [static let isoLatin2: String.Encoding](/documentation/swift/string/encoding/isolatin2)
- [static let japaneseEUC: String.Encoding](/documentation/swift/string/encoding/japaneseeuc)
- [static let macOSRoman: String.Encoding](/documentation/swift/string/encoding/macosroman)
- [static let nextstep: String.Encoding](/documentation/swift/string/encoding/nextstep)
- [static let nonLossyASCII: String.Encoding](/documentation/swift/string/encoding/nonlossyascii)
- [static let shiftJIS: String.Encoding](/documentation/swift/string/encoding/shiftjis)
- [static let symbol: String.Encoding](/documentation/swift/string/encoding/symbol)
- [static let unicode: String.Encoding](/documentation/swift/string/encoding/unicode)
- [static let utf16: String.Encoding](/documentation/swift/string/encoding/utf16)
- [static let utf16BigEndian: String.Encoding](/documentation/swift/string/encoding/utf16bigendian)
- [static let utf16LittleEndian: String.Encoding](/documentation/swift/string/encoding/utf16littleendian)
- [static let utf32: String.Encoding](/documentation/swift/string/encoding/utf32)
- [static let utf32BigEndian: String.Encoding](/documentation/swift/string/encoding/utf32bigendian)
- [static let utf32LittleEndian: String.Encoding](/documentation/swift/string/encoding/utf32littleendian)
- [static let utf8: String.Encoding](/documentation/swift/string/encoding/utf8)
- [static let windowsCP1250: String.Encoding](/documentation/swift/string/encoding/windowscp1250)
- [static let windowsCP1251: String.Encoding](/documentation/swift/string/encoding/windowscp1251)
- [static let windowsCP1252: String.Encoding](/documentation/swift/string/encoding/windowscp1252)
- [static let windowsCP1253: String.Encoding](/documentation/swift/string/encoding/windowscp1253)
- [static let windowsCP1254: String.Encoding](/documentation/swift/string/encoding/windowscp1254)

### Structures

- [String.Comparator](/documentation/swift/string/comparator)

#### Initializers

- [init(String.StandardComparator)](/documentation/swift/string/comparator/init(_:))
- [init(options: String.CompareOptions, locale: Locale?, order: SortOrder)](/documentation/swift/string/comparator/init(options:locale:order:))

#### Instance Properties

- [let locale: Locale?](/documentation/swift/string/comparator/locale)
- [let options: String.CompareOptions](/documentation/swift/string/comparator/options)
- [String.IntentInputOptions](/documentation/swift/string/intentinputoptions)

#### Initializers

- [init(keyboardType: String.IntentInputOptions.KeyboardType, capitalizationType: String.IntentInputOptions.CapitalizationType, multiline: Bool, autocorrect: Bool, smartQuotes: Bool, smartDashes: Bool)](/documentation/swift/string/intentinputoptions/init(keyboardtype:capitalizationtype:multiline:autocorrect:smartquotes:smartdashes:))

#### Instance Properties

- [var autocorrect: Bool](/documentation/swift/string/intentinputoptions/autocorrect)
- [var capitalizationType: String.IntentInputOptions.CapitalizationType](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.property)
- [var keyboardType: String.IntentInputOptions.KeyboardType](/documentation/swift/string/intentinputoptions/keyboardtype-swift.property)
- [var multiline: Bool](/documentation/swift/string/intentinputoptions/multiline)
- [var smartDashes: Bool](/documentation/swift/string/intentinputoptions/smartdashes)
- [var smartQuotes: Bool](/documentation/swift/string/intentinputoptions/smartquotes)

#### Enumerations

- [String.IntentInputOptions.CapitalizationType](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum)

##### Enumeration Cases

- [case allCharacters](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/allcharacters)
- [case none](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/none)
- [case sentences](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/sentences)
- [case words](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/words)
- [String.IntentInputOptions.KeyboardType](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum)

##### Enumeration Cases

- [case URL](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/url)
- [case asciiCapable](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/asciicapable)
- [case `default`](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/default)
- [case numberPad](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/numberpad)
- [case numbersAndPunctuation](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/numbersandpunctuation)
- [String.StandardComparator](/documentation/swift/string/standardcomparator)

#### Initializers

- [init(String.StandardComparator, order: SortOrder)](/documentation/swift/string/standardcomparator/init(_:order:))

#### Type Properties

- [static let lexical: String.StandardComparator](/documentation/swift/string/standardcomparator/lexical)
- [static let localized: String.StandardComparator](/documentation/swift/string/standardcomparator/localized)
- [static let localizedStandard: String.StandardComparator](/documentation/swift/string/standardcomparator/localizedstandard)

### Initializers

- [init(URL.Template.VariableName)](/documentation/swift/string/init(_:)-1oup7)
- [init(Slice<AttributedString.CharacterView>)](/documentation/swift/string/init(_:)-5ruqx)
- [init(cString: inout CChar)](/documentation/swift/string/init(cstring:)-1gatt)
- [init(cString: inout UInt8)](/documentation/swift/string/init(cstring:)-295hy)
- [init(cString: [UInt8])](/documentation/swift/string/init(cstring:)-472zs)
- [init(cString: [CChar])](/documentation/swift/string/init(cstring:)-54awj)
- [init(cString: String)](/documentation/swift/string/init(cstring:)-cgw2)
- [init?(cString: inout CChar, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-358mb)
- [init?(cString: String, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-4ydt6)
- [init(copying: UTF8Span)](/documentation/swift/string/init(copying:))
- [init(decoding: FilePath.Root)](/documentation/swift/string/init(decoding:)-364r2)
- [init(decoding: FilePath.Component)](/documentation/swift/string/init(decoding:)-9xh58)
- [init<Encoding>(decodingCString: String, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-2zmjc)
- [init<Encoding>(decodingCString: inout Encoding.CodeUnit, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-534rp)
- [init(describingForTest: some Any)](/documentation/swift/string/init(describingfortest:))
- [init(platformString: String)](/documentation/swift/string/init(platformstring:)-341sr)
- [init(platformString: inout CInterop.PlatformChar)](/documentation/swift/string/init(platformstring:)-36ydz)
- [init(platformString: UnsafePointer<CInterop.PlatformChar>)](/documentation/swift/string/init(platformstring:)-5j2y3)
- [init(platformString: [CInterop.PlatformChar])](/documentation/swift/string/init(platformstring:)-7hjry)
- [init?(utf8String: String)](/documentation/swift/string/init(utf8string:)-5v4k8)
- [init?(utf8String: inout CChar)](/documentation/swift/string/init(utf8string:)-7t980)
- [init?(validating: FilePath.Root)](/documentation/swift/string/init(validating:)-6r2j9)
- [init?(validating: FilePath.Component)](/documentation/swift/string/init(validating:)-95n8b)
- [init?(validating: FilePath)](/documentation/swift/string/init(validating:)-9dx2b)
- [init?(validatingCString: inout CChar)](/documentation/swift/string/init(validatingcstring:)-1x5p0)
- [init?(validatingCString: String)](/documentation/swift/string/init(validatingcstring:)-7gjlg)
- [init?(validatingPlatformString: UnsafePointer<CInterop.PlatformChar>)](/documentation/swift/string/init(validatingplatformstring:)-2920w)
- [init?(validatingPlatformString: inout CInterop.PlatformChar)](/documentation/swift/string/init(validatingplatformstring:)-8x1kn)
- [init?(validatingPlatformString: [CInterop.PlatformChar])](/documentation/swift/string/init(validatingplatformstring:)-91z6f)
- [init?(validatingPlatformString: String)](/documentation/swift/string/init(validatingplatformstring:)-go44)
- [init?(validatingUTF8: [CChar])](/documentation/swift/string/init(validatingutf8:)-2m5lb)
- [init?(validatingUTF8: inout CChar)](/documentation/swift/string/init(validatingutf8:)-2o7g5)
- [init?(validatingUTF8: String)](/documentation/swift/string/init(validatingutf8:)-8awk3)

### Instance Properties

- [var characters: String](/documentation/swift/string/characters)
- [var utf8Span: UTF8Span](/documentation/swift/string/utf8span)

### Instance Methods

- [func data(using: String.Encoding, allowLossyConversion: Bool) -> Data?](/documentation/swift/string/data(using:allowlossyconversion:))
- [func withMutableCharacters<R>((inout String) -> R) -> R](/documentation/swift/string/withmutablecharacters(_:))
- [func withPlatformString<Result>((UnsafePointer<CInterop.PlatformChar>) throws -> Result) rethrows -> Result](/documentation/swift/string/withplatformstring(_:))

### Type Aliases

- [String.CharacterView](/documentation/swift/string/characterview)
- [String.CompareOptions](/documentation/swift/string/compareoptions)
- [String.EncodingConversionOptions](/documentation/swift/string/encodingconversionoptions)
- [String.EnumerationOptions](/documentation/swift/string/enumerationoptions)
- [String.IndexDistance](/documentation/swift/string/indexdistance)
- [String.Output](/documentation/swift/string/output)
- [String.Specification](/documentation/swift/string/specification)
- [String.UnicodeScalarIndex](/documentation/swift/string/unicodescalarindex)
- [String.UnwrappedType](/documentation/swift/string/unwrappedtype)
- [String.ValueType](/documentation/swift/string/valuetype)

### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/string/defaultresolverspecification)

### Type Methods

- [static func decodeCString<Encoding>(inout Encoding.CodeUnit, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-2l7u6)
- [static func decodeCString<Encoding>([Encoding.CodeUnit], as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-3mvvy)
- [static func decodeCString<Encoding>(String, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-9pdmv)

### Default Implementations

- [Attachable Implementations](/documentation/swift/string/attachable-implementations)

#### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<String>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/string/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/string/bidirectionalcollection-implementations)

#### Structures

- [String.Index](/documentation/swift/string/index)

##### Initializers

- [init?(String.Index, within: String.UTF16View)](/documentation/swift/string/index/init(_:within:)-2txd4)
- [init?(String.Index, within: String)](/documentation/swift/string/index/init(_:within:)-2u3iq)
- [init?<S>(AttributedString.Index, within: S)](/documentation/swift/string/index/init(_:within:)-379kg)
- [init?<S>(String.Index, within: S)](/documentation/swift/string/index/init(_:within:)-3eir6)
- [init?(String.Index, within: String.UTF8View)](/documentation/swift/string/index/init(_:within:)-5lb6l)
- [init?(String.Index, within: String.UnicodeScalarView)](/documentation/swift/string/index/init(_:within:)-7e1rw)
- [init(encodedOffset: Int)](/documentation/swift/string/index/init(encodedoffset:))
- [init<S>(utf16Offset: Int, in: S)](/documentation/swift/string/index/init(utf16offset:in:))

##### Instance Properties

- [var encodedOffset: Int](/documentation/swift/string/index/encodedoffset)

##### Instance Methods

- [func samePosition(in: String.UTF8View) -> String.UTF8View.Index?](/documentation/swift/string/index/sameposition(in:)-3mz95)
- [func samePosition(in: String.UnicodeScalarView) -> String.UnicodeScalarIndex?](/documentation/swift/string/index/sameposition(in:)-4yeo1)
- [func samePosition(in: String) -> String.Index?](/documentation/swift/string/index/sameposition(in:)-6oxfv)
- [func samePosition(in: String.UTF16View) -> String.UTF16View.Index?](/documentation/swift/string/index/sameposition(in:)-86cct)
- [func utf16Offset<S>(in: S) -> Int](/documentation/swift/string/index/utf16offset(in:))

##### Default Implementations

- [Comparable Implementations](/documentation/swift/string/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/index/'...(_:)-12nb2)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/index/'...(_:)-9mt9j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/index/'.._(_:_:))
- [static func < (String.Index, String.Index) -> Bool](/documentation/swift/string/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/index/_(_:_:)-7org4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-6jasp)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-88947)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/index/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/index/debugdescription)
- [Equatable Implementations](/documentation/swift/string/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/index/!=(_:_:))
- [static func == (String.Index, String.Index) -> Bool](/documentation/swift/string/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/string/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/string/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/index/hash(into:))

#### Instance Properties

- [var endIndex: String.Index](/documentation/swift/string/endindex)
- [var last: Self.Element?](/documentation/swift/string/last)
- [var startIndex: String.Index](/documentation/swift/string/startindex)

#### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:by:))
- [func distance(from: String.Index, to: String.Index) -> Int](/documentation/swift/string/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/formindex(before:))
- [func index(String.Index, offsetBy: Int) -> String.Index](/documentation/swift/string/index(_:offsetby:))
- [func index(String.Index, offsetBy: Int, limitedBy: String.Index) -> String.Index?](/documentation/swift/string/index(_:offsetby:limitedby:))
- [func index(after: String.Index) -> String.Index](/documentation/swift/string/index(after:))
- [func index(before: String.Index) -> String.Index](/documentation/swift/string/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/suffix(_:))

#### Subscripts

- [subscript(Range<String.Index>) -> Substring](/documentation/swift/string/subscript(_:)-2so14)
- [subscript(String.Index) -> Character](/documentation/swift/string/subscript(_:)-lc0v)
- [CodingKeyRepresentable Implementations](/documentation/swift/string/codingkeyrepresentable-implementations)

#### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/string/init(codingkey:))

#### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/string/codingkey)
- [Collection Implementations](/documentation/swift/string/collection-implementations)

#### Structures

- [String.Iterator](/documentation/swift/string/iterator)

##### Instance Methods

- [func next() -> Character?](/documentation/swift/string/iterator/next())

##### Type Aliases

- [String.Iterator.Element](/documentation/swift/string/iterator/element)

#### Instance Properties

- [var count: Int](/documentation/swift/string/count)
- [var first: Self.Element?](/documentation/swift/string/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/underestimatedcount)

#### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/indices(where:))
- [func makeIterator() -> String.Iterator](/documentation/swift/string/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/map(_:)-5p6pd)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/suffix(from:))

#### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/subscript(_:)-392on)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4al9c)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4h7s3)

#### Type Aliases

- [String.Indices](/documentation/swift/string/indices)
- [String.SubSequence](/documentation/swift/string/subsequence)
- [Comparable Implementations](/documentation/swift/string/comparable-implementations)

#### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/'...(_:)-4mm4o)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/'...(_:)-6ct5g)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/'.._(_:_:))
- [static func < (String, String) -> Bool](/documentation/swift/string/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/_(_:_:)-24u5x)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/_=(_:_:)-1ih6)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/_=(_:_:)-8lyim)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/customdebugstringconvertible-implementations)

#### Instance Properties

- [var debugDescription: String](/documentation/swift/string/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/customreflectable-implementations)

#### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/customstringconvertible-implementations)

#### Instance Properties

- [var description: String](/documentation/swift/string/description)
- [Decodable Implementations](/documentation/swift/string/decodable-implementations)

#### Initializers

- [init(from: any Decoder) throws](/documentation/swift/string/init(from:))
- [Encodable Implementations](/documentation/swift/string/encodable-implementations)

#### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/string/encode(to:))
- [Equatable Implementations](/documentation/swift/string/equatable-implementations)

#### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/!=(_:_:)-1bb05)
- [static func == (String, String) -> Bool](/documentation/swift/string/==(_:_:))
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/string/expressiblebyextendedgraphemeclusterliteral-implementations)

#### Initializers

- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/string/init(unicodescalarliteral:))

#### Type Aliases

- [String.ExtendedGraphemeClusterLiteralType](/documentation/swift/string/extendedgraphemeclusterliteraltype)
- [ExpressibleByStringInterpolation Implementations](/documentation/swift/string/expressiblebystringinterpolation-implementations)

#### Initializers

- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:))
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:)-62d9)

#### Type Aliases

- [String.StringInterpolation](/documentation/swift/string/stringinterpolation)
- [ExpressibleByStringLiteral Implementations](/documentation/swift/string/expressiblebystringliteral-implementations)

#### Initializers

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/string/init(extendedgraphemeclusterliteral:))
- [init(stringLiteral: String)](/documentation/swift/string/init(stringliteral:))

#### Type Aliases

- [String.StringLiteralType](/documentation/swift/string/stringliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/string/expressiblebyunicodescalarliteral-implementations)

#### Type Aliases

- [String.UnicodeScalarLiteralType](/documentation/swift/string/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/string/hashable-implementations)

#### Instance Properties

- [var hashValue: Int](/documentation/swift/string/hashvalue)

#### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/string/losslessstringconvertible-implementations)

#### Initializers

- [init<S>(S)](/documentation/swift/string/init(_:)-50pwi)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/rangereplaceablecollection-implementations)

#### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/+(_:_:)-6h59y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-9fm57)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-n329)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/+=(_:_:)-676gx)

#### Initializers

- [init<S>(S)](/documentation/swift/string/init(_:)-1ip93)
- [init<S>(S)](/documentation/swift/string/init(_:)-8og6g)
- [init(repeating: Character, count: Int)](/documentation/swift/string/init(repeating:count:)-11bpi)
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/init(repeating:count:)-5y5em)

#### Instance Methods

- [func append(Self.Element)](/documentation/swift/string/append(_:)-1re5n)
- [func append(Character)](/documentation/swift/string/append(_:)-4xi3j)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-7est5)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-9foms)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/filter(_:))
- [func insert(Character, at: String.Index)](/documentation/swift/string/insert(_:at:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/insert(_:at:)-88yqh)
- [func insert<S>(contentsOf: S, at: String.Index)](/documentation/swift/string/insert(contentsof:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/insert(contentsof:at:)-rdu9)
- [func popLast() -> Self.Element?](/documentation/swift/string/poplast())
- [func remove(at: String.Index) -> Character](/documentation/swift/string/remove(at:))
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/remove(at:)-5g0wm)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:)-6xw7h)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/removelast())
- [func removeLast(Int)](/documentation/swift/string/removelast(_:))
- [func removeSubrange(Range<String.Index>)](/documentation/swift/string/removesubrange(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/removesubrange(_:)-8maxn)
- [func removeSubrange<R>(R)](/documentation/swift/string/removesubrange(_:)-9twng)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:)-3hkd6)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/replacesubrange(_:with:)-72947)
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:)-8lw57)
- [Sequence Implementations](/documentation/swift/string/sequence-implementations)

#### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/lazy)

#### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/flatmap(_:)-6chuq)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/flatmap(_:)-i3m9)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/map(_:)-9jnnv)
- [func max() -> Self.Element?](/documentation/swift/string/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/withcontiguousstorageifavailable(_:))

#### Type Aliases

- [String.Element](/documentation/swift/string/element)
- [StringProtocol Implementations](/documentation/swift/string/stringprotocol-implementations)

#### Structures

- [String.UTF16View](/documentation/swift/string/utf16view)

##### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf16view/customplaygroundquicklook)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/endindex)
- [var last: Self.Element?](/documentation/swift/string/utf16view/last)
- [var startIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:by:))
- [func distance(from: String.UTF16View.Index, to: String.UTF16View.Index) -> Int](/documentation/swift/string/utf16view/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf16view/formindex(before:))
- [func index(String.UTF16View.Index, offsetBy: Int) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(_:offsetby:))
- [func index(String.UTF16View.Index, offsetBy: Int, limitedBy: String.UTF16View.Index) -> String.UTF16View.Index?](/documentation/swift/string/utf16view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(after:))
- [func index(before: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(_:))

###### Subscripts

- [subscript(Range<String.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/string/utf16view/subscript(_:)-5fneh)
- [subscript(String.UTF16View.Index) -> UTF16.CodeUnit](/documentation/swift/string/utf16view/subscript(_:)-5ta1h)
- [Collection Implementations](/documentation/swift/string/utf16view/collection-implementations)

###### Structures

- [String.UTF16View.Iterator](/documentation/swift/string/utf16view/iterator)

###### Instance Methods

- [func next() -> UInt16?](/documentation/swift/string/utf16view/iterator/next())

###### Type Aliases

- [String.UTF16View.Iterator.Element](/documentation/swift/string/utf16view/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf16view/count)
- [var first: Self.Element?](/documentation/swift/string/utf16view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf16view/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/utf16view/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf16view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(where:))
- [func makeIterator() -> String.UTF16View.Iterator](/documentation/swift/string/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-28kz8)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf16view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-2785k)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-5x88v)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/subscript(_:)-6mt4v)

###### Type Aliases

- [String.UTF16View.Index](/documentation/swift/string/utf16view/index)
- [String.UTF16View.Indices](/documentation/swift/string/utf16view/indices)
- [String.UTF16View.SubSequence](/documentation/swift/string/utf16view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf16view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf16view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf16view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf16view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf16view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf16view/description)
- [Sequence Implementations](/documentation/swift/string/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf16view/flatmap(_:)-4cccc)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/flatmap(_:)-5kmpj)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-7ggk1)
- [func max() -> Self.Element?](/documentation/swift/string/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UTF16View.Element](/documentation/swift/string/utf16view/element)
- [String.UTF8View](/documentation/swift/string/utf8view)

##### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf8view/customplaygroundquicklook)
- [var span: Span<UTF8.CodeUnit>](/documentation/swift/string/utf8view/span)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/string/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf8view/formindex(before:))
- [func index(before: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/string/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf8view/count)
- [var endIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/string/utf8view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf8view/isempty)
- [var startIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/string/utf8view/underestimatedcount)

###### Instance Methods

- [func distance(from: String.UTF8View.Index, to: String.UTF8View.Index) -> Int](/documentation/swift/string/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf8view/formindex(after:))
- [func index(String.UTF8View.Index, offsetBy: Int) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(_:offsetby:))
- [func index(String.UTF8View.Index, offsetBy: Int, limitedBy: String.UTF8View.Index) -> String.UTF8View.Index?](/documentation/swift/string/utf8view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/string/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-4exvs)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf8view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-227fo)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/subscript(_:)-25vyw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3gfsv)
- [subscript(Range<String.UTF8View.Index>) -> String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3wo7k)
- [subscript(String.UTF8View.Index) -> UTF8.CodeUnit](/documentation/swift/string/utf8view/subscript(_:)-6nubh)

###### Type Aliases

- [String.UTF8View.Index](/documentation/swift/string/utf8view/index)
- [String.UTF8View.Indices](/documentation/swift/string/utf8view/indices)
- [String.UTF8View.Iterator](/documentation/swift/string/utf8view/iterator)
- [String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf8view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf8view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf8view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf8view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf8view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf8view/description)
- [Sequence Implementations](/documentation/swift/string/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf8view/flatmap(_:)-3i8lk)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/flatmap(_:)-83zdf)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-6zfwg)
- [func max() -> Self.Element?](/documentation/swift/string/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<String.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:)-3fk9a)

###### Type Aliases

- [String.UTF8View.Element](/documentation/swift/string/utf8view/element)
- [String.UnicodeScalarView](/documentation/swift/string/unicodescalarview)

##### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/unicodescalarview/customplaygroundquicklook)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/unicodescalarview/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/endindex)
- [var last: Self.Element?](/documentation/swift/string/unicodescalarview/last)
- [var startIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:by:))
- [func distance(from: String.UnicodeScalarView.Index, to: String.UnicodeScalarView.Index) -> Int](/documentation/swift/string/unicodescalarview/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(before:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(_:offsetby:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int, limitedBy: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index?](/documentation/swift/string/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(after:))
- [func index(before: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(_:))

###### Subscripts

- [subscript(String.UnicodeScalarView.Index) -> Unicode.Scalar](/documentation/swift/string/unicodescalarview/subscript(_:)-2op53)
- [subscript(Range<String.UnicodeScalarView.Index>) -> String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-6aml8)
- [Collection Implementations](/documentation/swift/string/unicodescalarview/collection-implementations)

###### Structures

- [String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/iterator)

###### Instance Methods

- [func next() -> Unicode.Scalar?](/documentation/swift/string/unicodescalarview/iterator/next())

###### Type Aliases

- [String.UnicodeScalarView.Iterator.Element](/documentation/swift/string/unicodescalarview/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/unicodescalarview/count)
- [var first: Self.Element?](/documentation/swift/string/unicodescalarview/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/unicodescalarview/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/unicodescalarview/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(where:))
- [func makeIterator() -> String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-56zez)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(from:))

###### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-4i2sy)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/subscript(_:)-gee0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-qk0r)

###### Type Aliases

- [String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index)
- [String.UnicodeScalarView.Indices](/documentation/swift/string/unicodescalarview/indices)
- [String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/unicodescalarview/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/unicodescalarview/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/unicodescalarview/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/unicodescalarview/description)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/unicodescalarview/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-61ucr)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-8g18j)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-929xp)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/unicodescalarview/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/string/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/string/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/unicodescalarview/init(repeating:count:))

###### Instance Methods

- [func append(Unicode.Scalar)](/documentation/swift/string/unicodescalarview/append(_:))
- [func append(Self.Element)](/documentation/swift/string/unicodescalarview/append(_:)-5uy8n)
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:)-ton6)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/string/unicodescalarview/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/unicodescalarview/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/unicodescalarview/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/unicodescalarview/removelast())
- [func removeLast(Int)](/documentation/swift/string/unicodescalarview/removelast(_:))
- [func removeSubrange<R>(R)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-62wlg)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-6rv02)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.UnicodeScalarView.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-5z8uw)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-914bq)
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:)-4ygoa)
- [Sequence Implementations](/documentation/swift/string/unicodescalarview/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/unicodescalarview/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/flatmap(_:)-2t5f9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/unicodescalarview/flatmap(_:)-56uyh)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-198wk)
- [func max() -> Self.Element?](/documentation/swift/string/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/unicodescalarview/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UnicodeScalarView.Element](/documentation/swift/string/unicodescalarview/element)

#### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/string/!=(_:_:)-frzf)
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/string/==(_:_:)-8kzxf)
- [static func > <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_(_:_:)-6o7qv)
- [static func < <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_(_:_:)-8d1wy)
- [static func <= <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_=(_:_:)-5y22v)
- [static func >= <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_=(_:_:)-nd86)

#### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/string/init(cstring:)-2p84k)
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/string/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-8yowf)

#### Instance Properties

- [var unicodeScalars: String.UnicodeScalarView](/documentation/swift/string/unicodescalars)
- [var utf16: String.UTF16View](/documentation/swift/string/utf16)
- [var utf8: String.UTF8View](/documentation/swift/string/utf8)

#### Instance Methods

- [func hasPrefix(String) -> Bool](/documentation/swift/string/hasprefix(_:))
- [func hasSuffix(String) -> Bool](/documentation/swift/string/hassuffix(_:))
- [func lowercased() -> String](/documentation/swift/string/lowercased())
- [func uppercased() -> String](/documentation/swift/string/uppercased())
- [func withCString<Result>((UnsafePointer<Int8>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(encodedas:_:))
- [TextOutputStream Implementations](/documentation/swift/string/textoutputstream-implementations)

#### Instance Methods

- [func write(String)](/documentation/swift/string/write(_:))
- [TextOutputStreamable Implementations](/documentation/swift/string/textoutputstreamable-implementations)

#### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/string/write(to:))
- [Array](/documentation/swift/array)

### Creating an Array

- [init()](/documentation/swift/array/init())
- [init<S>(S)](/documentation/swift/array/init(_:)-1ip9h)
- [init<S>(S)](/documentation/swift/array/init(_:)-236cl)
- [init(repeating: Element, count: Int)](/documentation/swift/array/init(repeating:count:))
- [init<E>(unsafeUninitializedCapacity: Int, initializingWith: (inout UnsafeMutableBufferPointer<Element>, inout Int) throws(E) -> Void) throws(E)](/documentation/swift/array/init(unsafeuninitializedcapacity:initializingwith:))

### Inspecting an Array

- [var isEmpty: Bool](/documentation/swift/array/isempty)
- [var count: Int](/documentation/swift/array/count)
- [var capacity: Int](/documentation/swift/array/capacity)

### Accessing Elements

- [subscript(Int) -> Element](/documentation/swift/array/subscript(_:)-25iat)
- [var first: Self.Element?](/documentation/swift/array/first)
- [var last: Self.Element?](/documentation/swift/array/last)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/array/subscript(_:)-53fvb)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3kwny)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4h7rl)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3pmfg)
- [func randomElement() -> Self.Element?](/documentation/swift/array/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/array/randomelement(using:))

### Adding Elements

- [func append(Element)](/documentation/swift/array/append(_:))
- [func insert(Element, at: Int)](/documentation/swift/array/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/array/insert(contentsof:at:))
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/array/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/array/replacesubrange(_:with:)-7293p)
- [func reserveCapacity(Int)](/documentation/swift/array/reservecapacity(_:))

### Combining Arrays

- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:)-9foli)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/array/+(_:_:)-6h58k)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-n33n)
- [static func + (Array<Element>, Array<Element>) -> Array<Element>](/documentation/swift/array/+(_:_:))
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-9fm5l)
- [static func += <Other>(inout Self, Other)](/documentation/swift/array/+=(_:_:)-676ib)
- [static func += (inout Array<Element>, Array<Element>)](/documentation/swift/array/+=(_:_:))

### Removing Elements

- [func remove(at: Int) -> Element](/documentation/swift/array/remove(at:))
- [func removeFirst() -> Self.Element](/documentation/swift/array/removefirst())
- [func removeFirst(Int)](/documentation/swift/array/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/array/removelast())
- [func removeLast(Int)](/documentation/swift/array/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/array/removesubrange(_:)-8may1)
- [func removeSubrange<R>(R)](/documentation/swift/array/removesubrange(_:)-9twou)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-5k61r)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:))
- [func popLast() -> Self.Element?](/documentation/swift/array/poplast())

### Finding Elements

- [func contains(Self.Element) -> Bool](/documentation/swift/array/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/first(where:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/firstindex(of:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/array/index(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/firstindex(where:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/lastindex(where:))
- [func min() -> Self.Element?](/documentation/swift/array/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/min(by:))
- [func max() -> Self.Element?](/documentation/swift/array/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/max(by:))

### Selecting Elements

- [func prefix(Int) -> Self.SubSequence](/documentation/swift/array/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/array/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/array/suffix(from:))

### Excluding Elements

- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/array/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/array/droplast(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/drop(while:))

### Transforming an Array

- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/array/flatmap(_:)-i3mr)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/flatmap(_:)-6chu8)
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/compactmap(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/array/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/array/reduce(into:_:))
- [var lazy: LazySequence<Self>](/documentation/swift/array/lazy)

### Iterating Over an Array’s Elements

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/array/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/array/enumerated())
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/array/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/array/underestimatedcount)

### Reordering an Array’s Elements

- [func sort()](/documentation/swift/array/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/array/sort(by:))
- [func sorted() -> [Self.Element]](/documentation/swift/array/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/sorted(by:))
- [func reverse()](/documentation/swift/array/reverse())
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/array/reversed())
- [func shuffle()](/documentation/swift/array/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/array/shuffle(using:))
- [func shuffled() -> [Self.Element]](/documentation/swift/array/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/array/shuffled(using:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-90po8)
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/array/swapat(_:_:))

### Splitting and Joining Elements

- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-3dgmv)
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/array/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/array/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/array/joined(separator:)-7uber)
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-5do1g)
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-1ckod)

### Creating and Applying Differences

- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/array/applying(_:))
- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:by:))

### Comparing Arrays

- [static func == (Array<Element>, Array<Element>) -> Bool](/documentation/swift/array/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/array/!=(_:_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/array/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:by:))

### Manipulating Indices

- [var startIndex: Int](/documentation/swift/array/startindex)
- [var endIndex: Int](/documentation/swift/array/endindex)
- [func index(after: Int) -> Int](/documentation/swift/array/index(after:))
- [func formIndex(after: inout Int)](/documentation/swift/array/formindex(after:))
- [func index(before: Int) -> Int](/documentation/swift/array/index(before:))
- [func formIndex(before: inout Int)](/documentation/swift/array/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/array/index(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/array/formindex(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/array/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/array/formindex(_:offsetby:limitedby:))
- [func distance(from: Int, to: Int) -> Int](/documentation/swift/array/distance(from:to:))

### Accessing Underlying Storage

- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/array/withunsafebufferpointer(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/array/withunsafemutablebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/array/withunsafebytes(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/array/withunsafemutablebytes(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:))

### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/array/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/array/init(from:))

### Describing an Array

- [var description: String](/documentation/swift/array/description)
- [var debugDescription: String](/documentation/swift/array/debugdescription)
- [var customMirror: Mirror](/documentation/swift/array/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/array/hash(into:))

### Converting Between Arrays and Create ML Types

- [init(MLDataColumn<Element>)](/documentation/swift/array/init(_:)-2ln1a)
- [init(MLUntypedColumn)](/documentation/swift/array/init(_:)-86ka8)

### Related Array Types

- [ContiguousArray](/documentation/swift/contiguousarray)

#### Initializers

- [init<S>(S)](/documentation/swift/contiguousarray/init(_:))
- [init<E>(capacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/init(capacity:initializingwith:))
- [init<E>(unsafeUninitializedCapacity: Int, initializingWith: (inout UnsafeMutableBufferPointer<Element>, inout Int) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/init(unsafeuninitializedcapacity:initializingwith:))

#### Instance Properties

- [var capacity: Int](/documentation/swift/contiguousarray/capacity)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/contiguousarray/mutablespan)
- [var span: Span<Element>](/documentation/swift/contiguousarray/span)

#### Instance Methods

- [func append<E>(addingCapacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/append(addingcapacity:initializingwith:))
- [func insert(Element, at: Int)](/documentation/swift/contiguousarray/insert(_:at:))
- [func remove(at: Int) -> Element](/documentation/swift/contiguousarray/remove(at:))
- [func reserveCapacity(Int)](/documentation/swift/contiguousarray/reservecapacity(_:))
- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/contiguousarray/withunsafebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/contiguousarray/withunsafebytes(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/contiguousarray/withunsafemutablebufferpointer(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/contiguousarray/withunsafemutablebytes(_:))

#### Default Implementations

- [Attachable Implementations](/documentation/swift/contiguousarray/attachable-implementations)

##### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<ContiguousArray<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/contiguousarray/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/contiguousarray/bidirectionalcollection-implementations)

##### Instance Properties

- [var last: Self.Element?](/documentation/swift/contiguousarray/last)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/contiguousarray/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/contiguousarray/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/contiguousarray/joined(separator:)-cdql)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/contiguousarray/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/contiguousarray/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/suffix(_:))
- [Collection Implementations](/documentation/swift/contiguousarray/collection-implementations)

##### Instance Properties

- [var count: Int](/documentation/swift/contiguousarray/count)
- [var first: Self.Element?](/documentation/swift/contiguousarray/first)
- [var isEmpty: Bool](/documentation/swift/contiguousarray/isempty)
- [var underestimatedCount: Int](/documentation/swift/contiguousarray/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/contiguousarray/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/contiguousarray/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/contiguousarray/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/contiguousarray/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/contiguousarray/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/contiguousarray/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/contiguousarray/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/contiguousarray/map(_:)-8zwtw)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/contiguousarray/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/contiguousarray/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/contiguousarray/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/contiguousarray/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/contiguousarray/split(separator:maxsplits:omittingemptysubsequences:)-3y2q6)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/suffix(from:))

##### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/contiguousarray/subscript(_:)-57hw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-997ec)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-9rwz8)

##### Type Aliases

- [ContiguousArray.Iterator](/documentation/swift/contiguousarray/iterator)
- [ContiguousArray.SubSequence](/documentation/swift/contiguousarray/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/contiguousarray/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/contiguousarray/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/contiguousarray/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/contiguousarray/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/contiguousarray/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/contiguousarray/description)
- [Decodable Implementations](/documentation/swift/contiguousarray/decodable-implementations)

##### Initializers

- [init(from: any Decoder) throws](/documentation/swift/contiguousarray/init(from:))
- [Encodable Implementations](/documentation/swift/contiguousarray/encodable-implementations)

##### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/contiguousarray/encode(to:))
- [Equatable Implementations](/documentation/swift/contiguousarray/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/contiguousarray/!=(_:_:))
- [static func == (ContiguousArray<Element>, ContiguousArray<Element>) -> Bool](/documentation/swift/contiguousarray/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/contiguousarray/expressiblebyarrayliteral-implementations)

##### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/contiguousarray/init(arrayliteral:))

##### Type Aliases

- [ContiguousArray.ArrayLiteralElement](/documentation/swift/contiguousarray/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/contiguousarray/hashable-implementations)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/contiguousarray/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/contiguousarray/hash(into:))
- [MutableCollection Implementations](/documentation/swift/contiguousarray/mutablecollection-implementations)

##### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/contiguousarray/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/contiguousarray/partition(by:)-2g3t0)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/contiguousarray/partition(by:)-2uabq)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/contiguousarray/removesubranges(_:)-5ci4m)
- [func reverse()](/documentation/swift/contiguousarray/reverse())
- [func shuffle()](/documentation/swift/contiguousarray/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/contiguousarray/shuffle(using:))
- [func sort()](/documentation/swift/contiguousarray/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/contiguousarray/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousmutablestorageifavailable(_:)-5k8vo)

##### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-17v9t)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-27a3j)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/contiguousarray/subscript(_:)-6knxt)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-7ribf)
- [OperationParameter Implementations](/documentation/swift/contiguousarray/operationparameter-implementations)

##### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/contiguousarray/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/contiguousarray/randomaccesscollection-implementations)

##### Instance Properties

- [var endIndex: Int](/documentation/swift/contiguousarray/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/contiguousarray/indices-swift.property)
- [var startIndex: Int](/documentation/swift/contiguousarray/startindex)

##### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/contiguousarray/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/contiguousarray/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/contiguousarray/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/contiguousarray/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/contiguousarray/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/contiguousarray/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/contiguousarray/index(before:))

##### Subscripts

- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/contiguousarray/subscript(_:)-41wt7)
- [subscript(Int) -> Element](/documentation/swift/contiguousarray/subscript(_:)-899p6)

##### Type Aliases

- [ContiguousArray.Index](/documentation/swift/contiguousarray/index)
- [ContiguousArray.Indices](/documentation/swift/contiguousarray/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/contiguousarray/rangereplaceablecollection-implementations)

##### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/contiguousarray/+(_:_:)-1rz1t)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/contiguousarray/+(_:_:)-3ntif)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/contiguousarray/+(_:_:)-5igl)
- [static func += <Other>(inout Self, Other)](/documentation/swift/contiguousarray/+=(_:_:))

##### Initializers

- [init()](/documentation/swift/contiguousarray/init())
- [init<S>(S)](/documentation/swift/contiguousarray/init(_:)-19zub)
- [init(repeating: Element, count: Int)](/documentation/swift/contiguousarray/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/contiguousarray/init(repeating:count:)-47x84)

##### Instance Methods

- [func append(Element)](/documentation/swift/contiguousarray/append(_:))
- [func append(Self.Element)](/documentation/swift/contiguousarray/append(_:)-4na3g)
- [func append<S>(contentsOf: S)](/documentation/swift/contiguousarray/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/contiguousarray/append(contentsof:)-66qjk)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/contiguousarray/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/contiguousarray/insert(_:at:)-81ye7)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/contiguousarray/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/contiguousarray/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/contiguousarray/remove(at:)-6yx8z)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/contiguousarray/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/contiguousarray/removeall(keepingcapacity:)-2onkd)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/removeall(where:)-3or72)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/removeall(where:)-44y75)
- [func removeFirst() -> Self.Element](/documentation/swift/contiguousarray/removefirst())
- [func removeFirst(Int)](/documentation/swift/contiguousarray/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/contiguousarray/removelast())
- [func removeLast(Int)](/documentation/swift/contiguousarray/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/contiguousarray/removesubrange(_:)-3k98x)
- [func removeSubrange<R>(R)](/documentation/swift/contiguousarray/removesubrange(_:)-8cd5m)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/contiguousarray/removesubranges(_:)-147en)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:)-4iomk)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:)-95xhb)
- [func reserveCapacity(Int)](/documentation/swift/contiguousarray/reservecapacity(_:)-4601w)
- [Sequence Implementations](/documentation/swift/contiguousarray/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/contiguousarray/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/contiguousarray/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/contiguousarray/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/contiguousarray/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/contiguousarray/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/contiguousarray/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/contiguousarray/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/contiguousarray/flatmap(_:)-6m9od)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/contiguousarray/flatmap(_:)-7rx5w)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/contiguousarray/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/contiguousarray/joined())
- [func joined(separator: String) -> String](/documentation/swift/contiguousarray/joined(separator:)-3fljd)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/contiguousarray/joined(separator:)-7bjrf)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/contiguousarray/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/contiguousarray/map(_:)-6seys)
- [func max() -> Self.Element?](/documentation/swift/contiguousarray/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/max(by:))
- [func min() -> Self.Element?](/documentation/swift/contiguousarray/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/contiguousarray/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/contiguousarray/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/contiguousarray/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/contiguousarray/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/contiguousarray/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/contiguousarray/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/contiguousarray/split(separator:maxsplits:omittingemptysubsequences:)-3wzsn)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/contiguousarray/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousstorageifavailable(_:)-17uda)
- [ArraySlice](/documentation/swift/arrayslice)

#### Initializers

- [init<S>(S)](/documentation/swift/arrayslice/init(_:))

#### Instance Properties

- [var capacity: Int](/documentation/swift/arrayslice/capacity)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/arrayslice/mutablespan)
- [var span: Span<Element>](/documentation/swift/arrayslice/span)

#### Instance Methods

- [func insert(Element, at: Int)](/documentation/swift/arrayslice/insert(_:at:))
- [func remove(at: Int) -> Element](/documentation/swift/arrayslice/remove(at:))
- [func reserveCapacity(Int)](/documentation/swift/arrayslice/reservecapacity(_:))
- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/arrayslice/withunsafebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/arrayslice/withunsafebytes(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/arrayslice/withunsafemutablebufferpointer(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/arrayslice/withunsafemutablebytes(_:))

#### Default Implementations

- [Attachable Implementations](/documentation/swift/arrayslice/attachable-implementations)

##### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<ArraySlice<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/arrayslice/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/arrayslice/bidirectionalcollection-implementations)

##### Instance Properties

- [var last: Self.Element?](/documentation/swift/arrayslice/last)

##### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/arrayslice/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/arrayslice/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/arrayslice/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/arrayslice/joined(separator:)-9k2fw)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/arrayslice/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-3t0h0)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-2ndpz)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-8vsvg)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/arrayslice/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/arrayslice/suffix(_:))
- [Collection Implementations](/documentation/swift/arrayslice/collection-implementations)

##### Instance Properties

- [var count: Int](/documentation/swift/arrayslice/count)
- [var first: Self.Element?](/documentation/swift/arrayslice/first)
- [var isEmpty: Bool](/documentation/swift/arrayslice/isempty)
- [var underestimatedCount: Int](/documentation/swift/arrayslice/underestimatedcount)

##### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/arrayslice/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/arrayslice/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/arrayslice/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/arrayslice/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/arrayslice/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/arrayslice/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/arrayslice/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/arrayslice/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/arrayslice/map(_:)-5ink0)
- [func popFirst() -> Self.Element?](/documentation/swift/arrayslice/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/arrayslice/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/arrayslice/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/arrayslice/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-m0co)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-7hplr)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/arrayslice/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/arrayslice/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/arrayslice/split(separator:maxsplits:omittingemptysubsequences:)-c3jd)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/suffix(from:))

##### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/arrayslice/subscript(_:)-2l9zt)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-4bx21)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-4x3qz)

##### Type Aliases

- [ArraySlice.Iterator](/documentation/swift/arrayslice/iterator)
- [ArraySlice.SubSequence](/documentation/swift/arrayslice/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/arrayslice/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/arrayslice/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/arrayslice/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/arrayslice/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/arrayslice/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/arrayslice/description)
- [Equatable Implementations](/documentation/swift/arrayslice/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/arrayslice/!=(_:_:))
- [static func == (ArraySlice<Element>, ArraySlice<Element>) -> Bool](/documentation/swift/arrayslice/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/arrayslice/expressiblebyarrayliteral-implementations)

##### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/arrayslice/init(arrayliteral:))

##### Type Aliases

- [ArraySlice.ArrayLiteralElement](/documentation/swift/arrayslice/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/arrayslice/hashable-implementations)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/arrayslice/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/arrayslice/hash(into:))
- [MutableCollection Implementations](/documentation/swift/arrayslice/mutablecollection-implementations)

##### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/arrayslice/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/arrayslice/partition(by:)-2s919)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/arrayslice/partition(by:)-706dh)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/arrayslice/removesubranges(_:)-k50b)
- [func reverse()](/documentation/swift/arrayslice/reverse())
- [func shuffle()](/documentation/swift/arrayslice/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/arrayslice/shuffle(using:))
- [func sort()](/documentation/swift/arrayslice/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/arrayslice/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousmutablestorageifavailable(_:)-5vekj)

##### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-3f18y)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-6gtfn)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-7gag3)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/arrayslice/subscript(_:)-7xg8e)
- [OperationParameter Implementations](/documentation/swift/arrayslice/operationparameter-implementations)

##### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/arrayslice/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/arrayslice/randomaccesscollection-implementations)

##### Instance Properties

- [var endIndex: Int](/documentation/swift/arrayslice/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/arrayslice/indices-swift.property)
- [var startIndex: Int](/documentation/swift/arrayslice/startindex)

##### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/arrayslice/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/arrayslice/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/arrayslice/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/arrayslice/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/arrayslice/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/arrayslice/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/arrayslice/index(before:))

##### Subscripts

- [subscript(Int) -> Element](/documentation/swift/arrayslice/subscript(_:)-4e8d9)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/arrayslice/subscript(_:)-63qca)

##### Type Aliases

- [ArraySlice.Index](/documentation/swift/arrayslice/index)
- [ArraySlice.Indices](/documentation/swift/arrayslice/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/arrayslice/rangereplaceablecollection-implementations)

##### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/arrayslice/+(_:_:)-2jvah)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/arrayslice/+(_:_:)-3xq1b)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/arrayslice/+(_:_:)-8elcw)
- [static func += <Other>(inout Self, Other)](/documentation/swift/arrayslice/+=(_:_:))

##### Initializers

- [init()](/documentation/swift/arrayslice/init())
- [init<S>(S)](/documentation/swift/arrayslice/init(_:)-4qauj)
- [init(repeating: Element, count: Int)](/documentation/swift/arrayslice/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/arrayslice/init(repeating:count:)-95f9t)

##### Instance Methods

- [func append(Element)](/documentation/swift/arrayslice/append(_:))
- [func append(Self.Element)](/documentation/swift/arrayslice/append(_:)-88nog)
- [func append<S>(contentsOf: S)](/documentation/swift/arrayslice/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/arrayslice/append(contentsof:)-6pxfb)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/arrayslice/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/arrayslice/insert(_:at:)-2orxu)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/arrayslice/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-225tk)
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-ftzx)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/arrayslice/remove(at:)-8p8nf)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/arrayslice/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/arrayslice/removeall(keepingcapacity:)-1wh07)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/removeall(where:)-10tcx)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/removeall(where:)-23c5i)
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-60cu4)
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-svki)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-285s6)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-3up7n)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-67p7c)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-9iuw9)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-33c55)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-5oepe)
- [func removeSubrange<R>(R)](/documentation/swift/arrayslice/removesubrange(_:)-2zu9f)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/arrayslice/removesubrange(_:)-celt)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/arrayslice/removesubranges(_:)-947o4)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:)-5g1qk)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:)-9rz4g)
- [func reserveCapacity(Int)](/documentation/swift/arrayslice/reservecapacity(_:)-11kse)
- [Sequence Implementations](/documentation/swift/arrayslice/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/arrayslice/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/arrayslice/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/arrayslice/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/arrayslice/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/arrayslice/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/arrayslice/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/arrayslice/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/arrayslice/flatmap(_:)-7xqts)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/arrayslice/flatmap(_:)-85ysn)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/arrayslice/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/arrayslice/joined())
- [func joined(separator: String) -> String](/documentation/swift/arrayslice/joined(separator:)-4dlb8)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/arrayslice/joined(separator:)-9u907)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/arrayslice/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/arrayslice/map(_:)-4axhk)
- [func max() -> Self.Element?](/documentation/swift/arrayslice/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/max(by:))
- [func min() -> Self.Element?](/documentation/swift/arrayslice/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/arrayslice/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/arrayslice/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/arrayslice/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/arrayslice/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/arrayslice/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/arrayslice/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/arrayslice/split(separator:maxsplits:omittingemptysubsequences:)-4rp31)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/arrayslice/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousstorageifavailable(_:)-7e6xh)

### Reference Types

- [NSArray](/documentation/foundation/nsarray)
- [NSMutableArray](/documentation/foundation/nsmutablearray)

### Supporting Types

- [Array.Index](/documentation/swift/array/index)
- [Array.Indices](/documentation/swift/array/indices)
- [Array.Iterator](/documentation/swift/array/iterator)
- [Array.ArrayLiteralElement](/documentation/swift/array/arrayliteralelement)
- [Array.SubSequence](/documentation/swift/array/subsequence)

### Infrequently Used Functionality

- [init(arrayLiteral: Element...)](/documentation/swift/array/init(arrayliteral:))
- [var hashValue: Int](/documentation/swift/array/hashvalue)

### Initializers

- [init<E>(capacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/array/init(capacity:initializingwith:))
- [init(fromSplitComplex: DSPSplitComplex, scale: Float, count: Int)](/documentation/swift/array/init(fromsplitcomplex:scale:count:)-5eirc)
- [init(fromSplitComplex: DSPDoubleSplitComplex, scale: Double, count: Int)](/documentation/swift/array/init(fromsplitcomplex:scale:count:)-5kgr3)

### Instance Properties

- [var mutableSpan: MutableSpan<Element>](/documentation/swift/array/mutablespan)
- [var span: Span<Element>](/documentation/swift/array/span)

### Instance Methods

- [func append<E>(addingCapacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/array/append(addingcapacity:initializingwith:))
- [func withUnsafeTaggedBuffers<R>(([CMTaggedBuffer]) throws -> sending R) rethrows -> sending R](/documentation/swift/array/withunsafetaggedbuffers(_:))

### Type Aliases

- [Array.Specification](/documentation/swift/array/specification)
- [Array.UnderlyingSequence](/documentation/swift/array/underlyingsequence)
- [Array.UnwrappedType](/documentation/swift/array/unwrappedtype)
- [Array.ValueType](/documentation/swift/array/valuetype)

### Type Properties

- [static var defaultResolverSpecification: EmptyResolverSpecification<Array<Element>>](/documentation/swift/array/defaultresolverspecification)

### Type Methods

- [static func monoscopicForVideoOutput() -> [CMTag]](/documentation/swift/array/monoscopicforvideooutput())
- [static func stereoscopicForVideoOutput() -> [CMTag]](/documentation/swift/array/stereoscopicforvideooutput())

### Default Implementations

- [Attachable Implementations](/documentation/swift/array/attachable-implementations)

#### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<Array<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/array/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/array/bidirectionalcollection-implementations)

#### Instance Properties

- [var last: Self.Element?](/documentation/swift/array/last)

#### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/array/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-5do1g)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/array/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/array/suffix(_:))
- [Collection Implementations](/documentation/swift/array/collection-implementations)

#### Instance Properties

- [var count: Int](/documentation/swift/array/count)
- [var first: Self.Element?](/documentation/swift/array/first)
- [var isEmpty: Bool](/documentation/swift/array/isempty)
- [var underestimatedCount: Int](/documentation/swift/array/underestimatedcount)

#### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/array/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/array/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/array/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/array/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/array/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/array/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/array/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/array/map(_:)-5p6o3)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/array/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/array/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/array/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/array/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/array/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-3dgmv)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/array/suffix(from:))

#### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/array/subscript(_:)-392p1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4al8y)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4h7rl)

#### Type Aliases

- [Array.Iterator](/documentation/swift/array/iterator)
- [Array.SubSequence](/documentation/swift/array/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/array/customdebugstringconvertible-implementations)

#### Instance Properties

- [var debugDescription: String](/documentation/swift/array/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/array/customreflectable-implementations)

#### Instance Properties

- [var customMirror: Mirror](/documentation/swift/array/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/array/customstringconvertible-implementations)

#### Instance Properties

- [var description: String](/documentation/swift/array/description)
- [Decodable Implementations](/documentation/swift/array/decodable-implementations)

#### Initializers

- [init(from: any Decoder) throws](/documentation/swift/array/init(from:))
- [Encodable Implementations](/documentation/swift/array/encodable-implementations)

#### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/array/encode(to:))
- [Equatable Implementations](/documentation/swift/array/equatable-implementations)

#### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/array/!=(_:_:))
- [static func == (Array<Element>, Array<Element>) -> Bool](/documentation/swift/array/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/array/expressiblebyarrayliteral-implementations)

#### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/array/init(arrayliteral:))

#### Type Aliases

- [Array.ArrayLiteralElement](/documentation/swift/array/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/array/hashable-implementations)

#### Instance Properties

- [var hashValue: Int](/documentation/swift/array/hashvalue)

#### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/array/hash(into:))
- [MutableCollection Implementations](/documentation/swift/array/mutablecollection-implementations)

#### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/array/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-33stm)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-90po8)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/array/removesubranges(_:)-276ym)
- [func reverse()](/documentation/swift/array/reverse())
- [func shuffle()](/documentation/swift/array/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/array/shuffle(using:))
- [func sort()](/documentation/swift/array/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/array/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/array/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:)-7398r)

#### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/array/subscript(_:)-3i28)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3kwny)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3pmfg)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-9v9l6)
- [OperationParameter Implementations](/documentation/swift/array/operationparameter-implementations)

#### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/array/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/array/randomaccesscollection-implementations)

#### Instance Properties

- [var endIndex: Int](/documentation/swift/array/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/array/indices-swift.property)
- [var startIndex: Int](/documentation/swift/array/startindex)

#### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/array/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/array/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/array/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/array/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/array/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/array/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/array/index(before:))

#### Subscripts

- [subscript(Int) -> Element](/documentation/swift/array/subscript(_:)-25iat)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/array/subscript(_:)-53fvb)

#### Type Aliases

- [Array.Index](/documentation/swift/array/index)
- [Array.Indices](/documentation/swift/array/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/array/rangereplaceablecollection-implementations)

#### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/array/+(_:_:)-6h58k)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-9fm5l)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-n33n)
- [static func += <Other>(inout Self, Other)](/documentation/swift/array/+=(_:_:)-676ib)

#### Initializers

- [init()](/documentation/swift/array/init())
- [init<S>(S)](/documentation/swift/array/init(_:)-1ip9h)
- [init(repeating: Element, count: Int)](/documentation/swift/array/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/array/init(repeating:count:)-5y5f0)

#### Instance Methods

- [func append(Element)](/documentation/swift/array/append(_:))
- [func append(Self.Element)](/documentation/swift/array/append(_:)-1re55)
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:)-9foli)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/array/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/array/insert(_:at:)-88yqz)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/array/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/array/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/array/remove(at:)-5g0x0)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:)-6xw8v)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-5k61r)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-6bd6r)
- [func removeFirst() -> Self.Element](/documentation/swift/array/removefirst())
- [func removeFirst(Int)](/documentation/swift/array/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/array/removelast())
- [func removeLast(Int)](/documentation/swift/array/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/array/removesubrange(_:)-8may1)
- [func removeSubrange<R>(R)](/documentation/swift/array/removesubrange(_:)-9twou)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/array/removesubranges(_:)-5xi38)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/array/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/array/replacesubrange(_:with:)-3hkdk)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/array/replacesubrange(_:with:)-7293p)
- [func reserveCapacity(Int)](/documentation/swift/array/reservecapacity(_:)-8lw3t)
- [Sequence Implementations](/documentation/swift/array/sequence-implementations)

#### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/array/lazy)

#### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/array/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/array/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/array/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/flatmap(_:)-6chu8)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/array/flatmap(_:)-i3mr)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/array/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/array/joined())
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-1ckod)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/array/joined(separator:)-7uber)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/array/map(_:)-9jnp5)
- [func max() -> Self.Element?](/documentation/swift/array/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/max(by:))
- [func min() -> Self.Element?](/documentation/swift/array/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/array/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/array/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/array/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/array/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/array/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-9bdwk)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/array/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:)-1ynsc)
- [Dictionary](/documentation/swift/dictionary)

### Creating a Dictionary

- [init()](/documentation/swift/dictionary/init())
- [init(minimumCapacity: Int)](/documentation/swift/dictionary/init(minimumcapacity:))
- [init<S>(uniqueKeysWithValues: S)](/documentation/swift/dictionary/init(uniquekeyswithvalues:))
- [init<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/init(_:uniquingkeyswith:))
- [init<S>(grouping: S, by: (S.Element) throws -> Key) rethrows](/documentation/swift/dictionary/init(grouping:by:))

### Inspecting a Dictionary

- [var isEmpty: Bool](/documentation/swift/dictionary/isempty)
- [var count: Int](/documentation/swift/dictionary/count)
- [var capacity: Int](/documentation/swift/dictionary/capacity)

### Accessing Keys and Values

- [subscript(Key) -> Value?](/documentation/swift/dictionary/subscript(_:)-8rfql)
- [subscript(Key, default _: @autoclosure () -> Value) -> Value](/documentation/swift/dictionary/subscript(_:default:))
- [func index(forKey: Key) -> Dictionary<Key, Value>.Index?](/documentation/swift/dictionary/index(forkey:))
- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/subscript(_:)-4bhoo)
- [var keys: Dictionary<Key, Value>.Keys](/documentation/swift/dictionary/keys-swift.property)
- [var values: Dictionary<Key, Value>.Values](/documentation/swift/dictionary/values-swift.property)
- [var first: Self.Element?](/documentation/swift/dictionary/first)
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/randomelement(using:))

### Adding Keys and Values

- [func updateValue(Value, forKey: Key) -> Value?](/documentation/swift/dictionary/updatevalue(_:forkey:))
- [func merge([Key : Value], uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/merge(_:uniquingkeyswith:)-m2ub)
- [func merge<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/merge(_:uniquingkeyswith:)-7smbb)
- [func merging([Key : Value], uniquingKeysWith: (Value, Value) throws -> Value) rethrows -> [Key : Value]](/documentation/swift/dictionary/merging(_:uniquingkeyswith:)-3vtfs)
- [func merging<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows -> [Key : Value]](/documentation/swift/dictionary/merging(_:uniquingkeyswith:)-9bik6)
- [func reserveCapacity(Int)](/documentation/swift/dictionary/reservecapacity(_:))

### Removing Keys and Values

- [func filter((Dictionary<Key, Value>.Element) throws -> Bool) rethrows -> [Key : Value]](/documentation/swift/dictionary/filter(_:))
- [func removeValue(forKey: Key) -> Value?](/documentation/swift/dictionary/removevalue(forkey:))
- [func remove(at: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/dictionary/removeall(keepingcapacity:))

### Comparing Dictionaries

- [static func == ([Key : Value], [Key : Value]) -> Bool](/documentation/swift/dictionary/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/!=(_:_:))

### Iterating over Keys and Values

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/enumerated())
- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/lazy)
- [func makeIterator() -> Dictionary<Key, Value>.Iterator](/documentation/swift/dictionary/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/dictionary/underestimatedcount)

### Finding Elements

- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/first(where:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/firstindex(where:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/min(by:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/max(by:))

### Transforming a Dictionary

- [func mapValues<T>((Value) throws -> T) rethrows -> Dictionary<Key, T>](/documentation/swift/dictionary/mapvalues(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/reduce(into:_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/compactmap(_:))
- [func compactMapValues<T>((Value) throws -> T?) rethrows -> Dictionary<Key, T>](/documentation/swift/dictionary/compactmapvalues(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/flatmap(_:)-i3ly)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/flatmap(_:)-6chv9)
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/sorted(by:))
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/shuffled(using:))

### Performing Collection Operations

- [Order Dependent Operations on Dictionary](/documentation/swift/order-dependent-operations-on-dictionary)

#### Comparing Dictionaries

- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/lexicographicallyprecedes(_:by:))

#### Manipulating Indices

- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/startindex)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/endindex)
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/index(after:))
- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/index(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/formindex(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/formindex(_:offsetby:limitedby:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/distance(from:to:))
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/indices-swift.property)

#### Selecting Elements

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/dictionary/subscript(_:)-2ny9y)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4h7sk)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4al9z)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/suffix(from:))

#### Excluding Elements

- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/dropfirst(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/drop(while:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/droplast(_:))
- [func popFirst() -> Dictionary<Key, Value>.Element?](/documentation/swift/dictionary/popfirst())

#### Transforming a Dictionary’s Elements

- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/reversed())
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/withcontiguousstorageifavailable(_:))

### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/dictionary/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/dictionary/init(from:)-6e6js)

### Describing a Dictionary

- [var description: String](/documentation/swift/dictionary/description)
- [var debugDescription: String](/documentation/swift/dictionary/debugdescription)
- [var customMirror: Mirror](/documentation/swift/dictionary/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/dictionary/hash(into:))

### Using a Dictionary as a Data Value

- [init?(from: MLDataValue.DictionaryType)](/documentation/swift/dictionary/init(from:)-5zhfu)

### Reference Types

- [NSDictionary](/documentation/foundation/nsdictionary)
- [NSMutableDictionary](/documentation/foundation/nsmutabledictionary)

### Supporting Types

- [Dictionary.Keys](/documentation/swift/dictionary/keys-swift.struct)

#### Operators

- [static func == (Dictionary<Key, Value>.Keys, Dictionary<Key, Value>.Keys) -> Bool](/documentation/swift/dictionary/keys-swift.struct/==(_:_:))

#### Instance Properties

- [var count: Int](/documentation/swift/dictionary/keys-swift.struct/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/endindex)
- [var isEmpty: Bool](/documentation/swift/dictionary/keys-swift.struct/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/startindex)

#### Instance Methods

- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/keys-swift.struct/formindex(after:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/index(after:))

#### Subscripts

- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Keys.Element](/documentation/swift/dictionary/keys-swift.struct/subscript(_:))

#### Type Aliases

- [Dictionary.Keys.Element](/documentation/swift/dictionary/keys-swift.struct/element)
- [Dictionary.Keys.Index](/documentation/swift/dictionary/keys-swift.struct/index)
- [Dictionary.Keys.Indices](/documentation/swift/dictionary/keys-swift.struct/indices)
- [Dictionary.Keys.SubSequence](/documentation/swift/dictionary/keys-swift.struct/subsequence)

#### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/keys-swift.struct/collection-implementations)

##### Structures

- [Dictionary.Keys.Iterator](/documentation/swift/dictionary/keys-swift.struct/iterator)

###### Instance Methods

- [func next() -> Key?](/documentation/swift/dictionary/keys-swift.struct/iterator/next())

###### Type Aliases

- [Dictionary.Keys.Iterator.Element](/documentation/swift/dictionary/keys-swift.struct/iterator/element)

##### Instance Properties

- [var first: Self.Element?](/documentation/swift/dictionary/keys-swift.struct/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/keys-swift.struct/indices-swift.property)
- [var underestimatedCount: Int](/documentation/swift/dictionary/keys-swift.struct/underestimatedcount)

##### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/keys-swift.struct/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/keys-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/keys-swift.struct/formindex(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/keys-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/index(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/dictionary/keys-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/keys-swift.struct/indices(where:))
- [func makeIterator() -> Dictionary<Key, Value>.Keys.Iterator](/documentation/swift/dictionary/keys-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/keys-swift.struct/map(_:)-6ax5v)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/keys-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/keys-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/dictionary/keys-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/suffix(from:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/keys-swift.struct/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/keys-swift.struct/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/keys-swift.struct/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/dictionary/keys-swift.struct/description)
- [Equatable Implementations](/documentation/swift/dictionary/keys-swift.struct/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/keys-swift.struct/!=(_:_:))
- [Sequence Implementations](/documentation/swift/dictionary/keys-swift.struct/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/keys-swift.struct/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/keys-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dictionary/keys-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/keys-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/keys-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/keys-swift.struct/flatmap(_:)-3ae31)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/keys-swift.struct/flatmap(_:)-7ugeg)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/keys-swift.struct/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/joined())
- [func joined(separator: String) -> String](/documentation/swift/dictionary/keys-swift.struct/joined(separator:)-4ko61)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/joined(separator:)-97ue4)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/keys-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/keys-swift.struct/map(_:)-65dmp)
- [func max() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/keys-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/keys-swift.struct/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dictionary/keys-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/keys-swift.struct/withcontiguousstorageifavailable(_:))
- [Dictionary.Values](/documentation/swift/dictionary/values-swift.struct)

#### Instance Properties

- [var count: Int](/documentation/swift/dictionary/values-swift.struct/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/endindex)
- [var isEmpty: Bool](/documentation/swift/dictionary/values-swift.struct/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/startindex)

#### Instance Methods

- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/values-swift.struct/formindex(after:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/index(after:))
- [func swapAt(Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/values-swift.struct/swapat(_:_:))

#### Subscripts

- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Values.Element](/documentation/swift/dictionary/values-swift.struct/subscript(_:))

#### Type Aliases

- [Dictionary.Values.Element](/documentation/swift/dictionary/values-swift.struct/element)
- [Dictionary.Values.Index](/documentation/swift/dictionary/values-swift.struct/index)
- [Dictionary.Values.Indices](/documentation/swift/dictionary/values-swift.struct/indices)
- [Dictionary.Values.SubSequence](/documentation/swift/dictionary/values-swift.struct/subsequence)

#### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/values-swift.struct/collection-implementations)

##### Structures

- [Dictionary.Values.Iterator](/documentation/swift/dictionary/values-swift.struct/iterator)

###### Instance Methods

- [func next() -> Value?](/documentation/swift/dictionary/values-swift.struct/iterator/next())

###### Type Aliases

- [Dictionary.Values.Iterator.Element](/documentation/swift/dictionary/values-swift.struct/iterator/element)

##### Instance Properties

- [var first: Self.Element?](/documentation/swift/dictionary/values-swift.struct/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/values-swift.struct/indices-swift.property)
- [var underestimatedCount: Int](/documentation/swift/dictionary/values-swift.struct/underestimatedcount)

##### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/values-swift.struct/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/values-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/values-swift.struct/formindex(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/values-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/index(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/dictionary/values-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/values-swift.struct/indices(where:))
- [func makeIterator() -> Dictionary<Key, Value>.Values.Iterator](/documentation/swift/dictionary/values-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/values-swift.struct/map(_:)-8qoco)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/values-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/values-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/dictionary/values-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)-4wty7)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/suffix(from:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/values-swift.struct/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/values-swift.struct/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/values-swift.struct/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/swift/dictionary/values-swift.struct/description)
- [MutableCollection Implementations](/documentation/swift/dictionary/values-swift.struct/mutablecollection-implementations)

##### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/dictionary/values-swift.struct/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/dictionary/values-swift.struct/partition(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/dictionary/values-swift.struct/swapat(_:_:)-18i76)
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/values-swift.struct/withcontiguousmutablestorageifavailable(_:))
- [Sequence Implementations](/documentation/swift/dictionary/values-swift.struct/sequence-implementations)

##### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/values-swift.struct/lazy)

##### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/values-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dictionary/values-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/values-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/values-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/values-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/values-swift.struct/flatmap(_:)-5q6nn)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/values-swift.struct/flatmap(_:)-ibzs)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/values-swift.struct/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dictionary/values-swift.struct/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dictionary/values-swift.struct/joined(separator:)-2hpp2)
- [func joined(separator: String) -> String](/documentation/swift/dictionary/values-swift.struct/joined(separator:)-7q9rn)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/values-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/values-swift.struct/map(_:)-3eu5x)
- [func max() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/values-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/values-swift.struct/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/dictionary/values-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)-7qpti)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dictionary/values-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/values-swift.struct/withcontiguousstorageifavailable(_:))
- [Dictionary.Index](/documentation/swift/dictionary/index)

#### Default Implementations

- [Comparable Implementations](/documentation/swift/dictionary/index/comparable-implementations)

##### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/dictionary/index/'...(_:)-4p0eq)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/dictionary/index/'...(_:)-6z81l)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/dictionary/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/dictionary/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/dictionary/index/'.._(_:_:))
- [static func < (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/dictionary/index/_(_:_:)-7cwwa)
- [static func <= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-2svy0)
- [static func >= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-6o53l)
- [Equatable Implementations](/documentation/swift/dictionary/index/equatable-implementations)

##### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/index/!=(_:_:))
- [static func == (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/dictionary/index/hashable-implementations)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/index/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/index/hash(into:))
- [Dictionary.Indices](/documentation/swift/dictionary/indices)
- [Dictionary.Iterator](/documentation/swift/dictionary/iterator)

#### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/dictionary/iterator/customreflectable-implementations)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/dictionary/iterator/iteratorprotocol-implementations)

##### Instance Methods

- [func next() -> (key: Key, value: Value)?](/documentation/swift/dictionary/iterator/next())

##### Type Aliases

- [Dictionary.Iterator.Element](/documentation/swift/dictionary/iterator/element)

### Creating a Dictionary from an Attribute Container

- [init<S>(AttributeContainer, including: S.Type) throws](/documentation/swift/dictionary/init(_:including:)-7afz2)
- [init<S>(AttributeContainer, including: KeyPath<AttributeScopes, S.Type>) throws](/documentation/swift/dictionary/init(_:including:)-8ls7v)
- [init(AttributeContainer)](/documentation/swift/dictionary/init(_:))

### Infrequently Used Functionality

- [init(dictionaryLiteral: (Key, Value)...)](/documentation/swift/dictionary/init(dictionaryliteral:))
- [var hashValue: Int](/documentation/swift/dictionary/hashvalue)

### Type Aliases

- [Dictionary.Element](/documentation/swift/dictionary/element)

### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/collection-implementations)

#### Structures

- [Dictionary.Index](/documentation/swift/dictionary/index)

##### Default Implementations

- [Comparable Implementations](/documentation/swift/dictionary/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/dictionary/index/'...(_:)-4p0eq)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/dictionary/index/'...(_:)-6z81l)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/dictionary/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/dictionary/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/dictionary/index/'.._(_:_:))
- [static func < (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/dictionary/index/_(_:_:)-7cwwa)
- [static func <= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-2svy0)
- [static func >= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-6o53l)
- [Equatable Implementations](/documentation/swift/dictionary/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/index/!=(_:_:))
- [static func == (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/dictionary/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/index/hash(into:))

#### Instance Properties

- [var count: Int](/documentation/swift/dictionary/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/endindex)
- [var first: Self.Element?](/documentation/swift/dictionary/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/dictionary/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/startindex)
- [var underestimatedCount: Int](/documentation/swift/dictionary/underestimatedcount)

#### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/droplast(_:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/index(_:offsetby:limitedby:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/index(after:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/map(_:)-5p6p2)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/suffix(from:))

#### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/dictionary/subscript(_:)-2ny9y)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/subscript(_:)-392o0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4al9z)
- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/subscript(_:)-4bhoo)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4h7sk)

#### Type Aliases

- [Dictionary.Indices](/documentation/swift/dictionary/indices)
- [Dictionary.SubSequence](/documentation/swift/dictionary/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/customdebugstringconvertible-implementations)

#### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/dictionary/customreflectable-implementations)

#### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/customstringconvertible-implementations)

#### Instance Properties

- [var description: String](/documentation/swift/dictionary/description)
- [Decodable Implementations](/documentation/swift/dictionary/decodable-implementations)

#### Initializers

- [init(from: any Decoder) throws](/documentation/swift/dictionary/init(from:)-6e6js)
- [Encodable Implementations](/documentation/swift/dictionary/encodable-implementations)

#### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/dictionary/encode(to:))
- [Equatable Implementations](/documentation/swift/dictionary/equatable-implementations)

#### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/!=(_:_:))
- [static func == ([Key : Value], [Key : Value]) -> Bool](/documentation/swift/dictionary/==(_:_:))
- [ExpressibleByDictionaryLiteral Implementations](/documentation/swift/dictionary/expressiblebydictionaryliteral-implementations)

#### Initializers

- [init(dictionaryLiteral: (Key, Value)...)](/documentation/swift/dictionary/init(dictionaryliteral:))
- [Hashable Implementations](/documentation/swift/dictionary/hashable-implementations)

#### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/hashvalue)

#### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/hash(into:))
- [Sequence Implementations](/documentation/swift/dictionary/sequence-implementations)

#### Structures

- [Dictionary.Iterator](/documentation/swift/dictionary/iterator)

##### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/dictionary/iterator/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/dictionary/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> (key: Key, value: Value)?](/documentation/swift/dictionary/iterator/next())

###### Type Aliases

- [Dictionary.Iterator.Element](/documentation/swift/dictionary/iterator/element)

#### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/lazy)

#### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/flatmap(_:)-6chv9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/flatmap(_:)-i3ly)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Dictionary<Key, Value>.Iterator](/documentation/swift/dictionary/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/map(_:)-9jnoc)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/withcontiguousstorageifavailable(_:))
- [Swift Standard Library](/documentation/swift/swift-standard-library)

### Values and Collections

- [Numbers and Basic Values](/documentation/swift/numbers-and-basic-values)

#### Logical Values

- [Bool](/documentation/swift/bool)

##### Comparing Boolean Values

- [static func == (Bool, Bool) -> Bool](/documentation/swift/bool/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/bool/!=(_:_:))

##### Transforming a Boolean

- [func toggle()](/documentation/swift/bool/toggle())
- [static func ! (Bool) -> Bool](/documentation/swift/bool/!(_:))
- [static func || (Bool, @autoclosure () throws -> Bool) rethrows -> Bool](/documentation/swift/bool/__(_:_:))
- [static func && (Bool, @autoclosure () throws -> Bool) rethrows -> Bool](/documentation/swift/bool/&&(_:_:))

##### Creating a Random Value

- [static func random() -> Bool](/documentation/swift/bool/random())
- [static func random<T>(using: inout T) -> Bool](/documentation/swift/bool/random(using:))

##### Describing a Boolean

- [var description: String](/documentation/swift/bool/description)

##### Inspecting a Boolean

- [var customMirror: Mirror](/documentation/swift/bool/custommirror)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/bool/customplaygroundquicklook)
- [var hashValue: Int](/documentation/swift/bool/hashvalue)
- [func hash(into: inout Hasher)](/documentation/swift/bool/hash(into:))

##### Creating a Boolean From Another Value

- [init(Bool)](/documentation/swift/bool/init(_:)-25sp9)
- [init?(String)](/documentation/swift/bool/init(_:)-83vgw)

##### Converting an NSNumber to a Boolean

- [init(NSNumber)](/documentation/swift/bool/init(_:)-3mody)
- [init?(exactly: NSNumber)](/documentation/swift/bool/init(exactly:))
- [init(truncating: NSNumber)](/documentation/swift/bool/init(truncating:))

##### Encoding and Decoding

- [init(from: any Decoder) throws](/documentation/swift/bool/init(from:))
- [func encode(to: any Encoder) throws](/documentation/swift/bool/encode(to:))

##### Infrequently Used Intializers

- [init()](/documentation/swift/bool/init())
- [init(booleanLiteral: Bool)](/documentation/swift/bool/init(booleanliteral:))

##### Boolean Literals

- [true](/documentation/swift/true)
- [false](/documentation/swift/false)

##### Structures

- [Bool.IntentDisplayName](/documentation/swift/bool/intentdisplayname)

###### Initializers

- [init(true: LocalizedStringResource, false: LocalizedStringResource)](/documentation/swift/bool/intentdisplayname/init(true:false:))

###### Instance Properties

- [let `false`: LocalizedStringResource](/documentation/swift/bool/intentdisplayname/false)
- [let `true`: LocalizedStringResource](/documentation/swift/bool/intentdisplayname/true)

##### Type Aliases

- [Bool.Specification](/documentation/swift/bool/specification)
- [Bool.UnwrappedType](/documentation/swift/bool/unwrappedtype)
- [Bool.ValueType](/documentation/swift/bool/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/bool/defaultresolverspecification)

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/bool/atomicrepresentable-implementations)

###### Type Aliases

- [Bool.AtomicRepresentation](/documentation/swift/bool/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Bool.AtomicRepresentation) -> Bool](/documentation/swift/bool/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Bool) -> Bool.AtomicRepresentation](/documentation/swift/bool/encodeatomicrepresentation(_:))
- [CustomReflectable Implementations](/documentation/swift/bool/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/bool/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/bool/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/bool/description)
- [Decodable Implementations](/documentation/swift/bool/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/bool/init(from:))
- [Encodable Implementations](/documentation/swift/bool/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/bool/encode(to:))
- [Equatable Implementations](/documentation/swift/bool/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/bool/!=(_:_:))
- [static func == (Bool, Bool) -> Bool](/documentation/swift/bool/==(_:_:))
- [ExpressibleByBooleanLiteral Implementations](/documentation/swift/bool/expressiblebybooleanliteral-implementations)

###### Initializers

- [init(booleanLiteral: Bool)](/documentation/swift/bool/init(booleanliteral:))

###### Type Aliases

- [Bool.BooleanLiteralType](/documentation/swift/bool/booleanliteraltype)
- [Hashable Implementations](/documentation/swift/bool/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/bool/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/bool/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/bool/losslessstringconvertible-implementations)

###### Initializers

- [init?(String)](/documentation/swift/bool/init(_:)-83vgw)

#### Numeric Values

- [Int](/documentation/swift/int)

##### Converting Integers

- [init<T>(T)](/documentation/swift/int/init(_:)-4ekvl)
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-b1dy)
- [init<Other>(clamping: Other)](/documentation/swift/int/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int/init(truncatingifneeded:))
- [init(bitPattern: UInt)](/documentation/swift/int/init(bitpattern:)-72037)
- [init?(exactly: NSNumber)](/documentation/swift/int/init(exactly:)-177ax)
- [init(truncating: NSNumber)](/documentation/swift/int/init(truncating:))

##### Converting Floating-Point Values

- [init<T>(T)](/documentation/swift/int/init(_:)-6gt9z)
- [init(Double)](/documentation/swift/int/init(_:)-8vbwo)
- [init(Float)](/documentation/swift/int/init(_:)-2oscb)
- [init(Float16)](/documentation/swift/int/init(_:)-3huv0)
- [init(Float80)](/documentation/swift/int/init(_:)-66i0w)
- [init(CGFloat)](/documentation/swift/int/init(_:)-5q6q5)

##### Converting with No Loss of Precision

- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-7yhn6)
- [init?(exactly: Double)](/documentation/swift/int/init(exactly:)-77kq8)
- [init?(exactly: Float)](/documentation/swift/int/init(exactly:)-7qdwf)
- [init?(exactly: Float16)](/documentation/swift/int/init(exactly:)-5xh2s)
- [init?(exactly: Float80)](/documentation/swift/int/init(exactly:)-5kot1)

##### Converting Strings

- [init?(String)](/documentation/swift/int/init(_:)-2hmii)
- [init?<S>(S, radix: Int)](/documentation/swift/int/init(_:radix:))

##### Creating a Random Integer

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int/random(in:)-9mjpw)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-4lsb5)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int/random(in:)-8zzqh)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-3dwv4)

##### Performing Calculations

- [Integer Operators](/documentation/swift/integer-operators)

###### Arithmetic

- [static func + (Int, Int) -> Int](/documentation/swift/int/+(_:_:))
- [static func - (Int, Int) -> Int](/documentation/swift/int/-(_:_:))
- [static func * (Int, Int) -> Int](/documentation/swift/int/*(_:_:))
- [static func / (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-7j9bj)

###### Arithmetic with Assignment

- [static func += (inout Int, Int)](/documentation/swift/int/+=(_:_:))
- [static func *= (inout Int, Int)](/documentation/swift/int/*=(_:_:))
- [static func /= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-9lzpe)

###### Masked Arithmetic

- [static func &+ (Self, Self) -> Self](/documentation/swift/int/&+(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int/&-(_:_:))
- [static func &* (Self, Self) -> Self](/documentation/swift/int/&*(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int/&+=(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int/&-=(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int/&*=(_:_:))

###### Bitwise Operations

- [static func & (Int, Int) -> Int](/documentation/swift/int/&(_:_:))
- [static func &= (inout Int, Int)](/documentation/swift/int/&=(_:_:))
- [static func ~ (Self) -> Self](/documentation/swift/int/~(_:))

###### Negation

- [static func - (Self) -> Self](/documentation/swift/int/-(_:))
- [static func + (Self) -> Self](/documentation/swift/int/+(_:))

###### Comparison

- [static func == (Int, Int) -> Bool](/documentation/swift/int/==(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int/==(_:_:)-1zalu)
- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-1baz3)
- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int/!=(_:_:)-4jphg)

###### Range Expressions

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int/'...(_:_:))
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int/'...(_:)-6ct66)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int/'...(_:)-4mm5u)

###### Deprecated

- [static func -= (inout Int, Int)](/documentation/swift/int/-=(_:_:))
- [func negate()](/documentation/swift/int/negate())
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int/quotientandremainder(dividingby:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int/ismultiple(of:))

##### Performing Calculations with Overflow

- [func addingReportingOverflow(Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/addingreportingoverflow(_:))
- [func subtractingReportingOverflow(Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/subtractingreportingoverflow(_:))
- [func multipliedReportingOverflow(by: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/multipliedreportingoverflow(by:))
- [func dividedReportingOverflow(by: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/dividedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int) -> (partialValue: Int, overflow: Bool)](/documentation/swift/int/remainderreportingoverflow(dividingby:))

##### Performing Double-Width Calculations

- [func multipliedFullWidth(by: Int) -> (high: Int, low: Int.Magnitude)](/documentation/swift/int/multipliedfullwidth(by:))
- [func dividingFullWidth((high: Int, low: Int.Magnitude)) -> (quotient: Int, remainder: Int)](/documentation/swift/int/dividingfullwidth(_:))

##### Finding the Sign and Magnitude

- [var magnitude: UInt](/documentation/swift/int/magnitude-swift.property)
- [Int.Magnitude](/documentation/swift/int/magnitude-swift.typealias)
- [func abs<T>(T) -> T](/documentation/swift/abs(_:))
- [func signum() -> Int](/documentation/swift/int/signum())

##### Accessing Numeric Constants

- [static var zero: Self](/documentation/swift/int/zero)
- [static var min: Self](/documentation/swift/int/min)
- [static var max: Self](/documentation/swift/int/max)
- [static var isSigned: Bool](/documentation/swift/int/issigned)

##### Working with Byte Order

- [var byteSwapped: Int](/documentation/swift/int/byteswapped)
- [var littleEndian: Self](/documentation/swift/int/littleendian)
- [var bigEndian: Self](/documentation/swift/int/bigendian)
- [init(littleEndian: Self)](/documentation/swift/int/init(littleendian:))
- [init(bigEndian: Self)](/documentation/swift/int/init(bigendian:))

##### Working with Binary Representation

- [static var bitWidth: Int](/documentation/swift/int/bitwidth)
- [var bitWidth: Int](/documentation/swift/int/bitwidth-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int/nonzerobitcount)
- [var leadingZeroBitCount: Int](/documentation/swift/int/leadingzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int/trailingzerobitcount)
- [var words: Int.Words](/documentation/swift/int/words-swift.property)
- [Int.Words](/documentation/swift/int/words-swift.struct)

###### Initializers

- [init(Int)](/documentation/swift/int/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/int/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int/words-swift.struct/endindex)
- [var indices: Int.Words.Indices](/documentation/swift/int/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int/words-swift.struct/subscript(_:))

###### Type Aliases

- [Int.Words.Element](/documentation/swift/int/words-swift.struct/element)
- [Int.Words.Index](/documentation/swift/int/words-swift.struct/index)
- [Int.Words.Indices](/documentation/swift/int/words-swift.struct/indices-swift.typealias)
- [Int.Words.Iterator](/documentation/swift/int/words-swift.struct/iterator)
- [Int.Words.SubSequence](/documentation/swift/int/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/int/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/int/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int/words-swift.struct/map(_:)-1zq6m)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int/words-swift.struct/flatmap(_:)-37uwt)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int/words-swift.struct/flatmap(_:)-6jlsp)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int/words-swift.struct/map(_:)-p9yo)
- [func max() -> Self.Element?](/documentation/swift/int/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int/words-swift.struct/withcontiguousstorageifavailable(_:))

##### Working with Memory Addresses

- [init<P>(bitPattern: P?)](/documentation/swift/int/init(bitpattern:)-2i0qy)
- [init(bitPattern: ObjectIdentifier)](/documentation/swift/int/init(bitpattern:)-2o9co)
- [init(bitPattern: OpaquePointer?)](/documentation/swift/int/init(bitpattern:)-5qm7a)

##### Encoding and Decoding Values

- [func encode(to: any Encoder) throws](/documentation/swift/int/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/int/init(from:))

##### Describing an Integer

- [var description: String](/documentation/swift/int/description)
- [func hash(into: inout Hasher)](/documentation/swift/int/hash(into:))
- [var customMirror: Mirror](/documentation/swift/int/custommirror)

##### Infrequently Used Functionality

- [init()](/documentation/swift/int/init())
- [init(integerLiteral: Self)](/documentation/swift/int/init(integerliteral:))
- [Int.IntegerLiteralType](/documentation/swift/int/integerliteraltype)
- [func distance(to: Int) -> Int](/documentation/swift/int/distance(to:))
- [func advanced(by: Int) -> Int](/documentation/swift/int/advanced(by:))
- [Int.Stride](/documentation/swift/int/stride)
- [var hashValue: Int](/documentation/swift/int/hashvalue)

##### Deprecated

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int/customplaygroundquicklook)
- [init(NSNumber)](/documentation/swift/int/init(_:)-3mb3q)

##### SIMD-Supporting Types

- [Int.SIMDMaskScalar](/documentation/swift/int/simdmaskscalar)
- [Int.SIMD2Storage](/documentation/swift/int/simd2storage)

###### Initializers

- [init()](/documentation/swift/int/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd2storage/subscript(_:))

###### Type Aliases

- [Int.SIMD2Storage.Scalar](/documentation/swift/int/simd2storage/scalar)
- [Int.SIMD4Storage](/documentation/swift/int/simd4storage)

###### Initializers

- [init()](/documentation/swift/int/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd4storage/subscript(_:))

###### Type Aliases

- [Int.SIMD4Storage.Scalar](/documentation/swift/int/simd4storage/scalar)
- [Int.SIMD8Storage](/documentation/swift/int/simd8storage)

###### Initializers

- [init()](/documentation/swift/int/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd8storage/subscript(_:))

###### Type Aliases

- [Int.SIMD8Storage.Scalar](/documentation/swift/int/simd8storage/scalar)
- [Int.SIMD16Storage](/documentation/swift/int/simd16storage)

###### Initializers

- [init()](/documentation/swift/int/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd16storage/subscript(_:))

###### Type Aliases

- [Int.SIMD16Storage.Scalar](/documentation/swift/int/simd16storage/scalar)
- [Int.SIMD32Storage](/documentation/swift/int/simd32storage)

###### Initializers

- [init()](/documentation/swift/int/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd32storage/subscript(_:))

###### Type Aliases

- [Int.SIMD32Storage.Scalar](/documentation/swift/int/simd32storage/scalar)
- [Int.SIMD64Storage](/documentation/swift/int/simd64storage)

###### Initializers

- [init()](/documentation/swift/int/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd64storage/subscript(_:))

###### Type Aliases

- [Int.SIMD64Storage.Scalar](/documentation/swift/int/simd64storage/scalar)

##### Operators

- [static func != (Int, Int) -> Bool](/documentation/swift/int/!=(_:_:))
- [static func &>>= (inout Int, Int)](/documentation/swift/int/&__=(_:_:)-2i06i)
- [static func &<<= (inout Int, Int)](/documentation/swift/int/&__=(_:_:)-58orm)
- [static func < (Int, Int) -> Bool](/documentation/swift/int/_(_:_:)-3wpum)
- [static func ^= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-1ypi9)
- [static func %= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-30t77)
- [static func |= (inout Int, Int)](/documentation/swift/int/_=(_:_:)-4b29i)

##### Type Aliases

- [Int.Specification](/documentation/swift/int/specification)
- [Int.UnwrappedType](/documentation/swift/int/unwrappedtype)
- [Int.ValueType](/documentation/swift/int/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/int/defaultresolverspecification)

##### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int/+=(_:_:)-5g9ip)
- [static func -= (inout Self, Self)](/documentation/swift/int/-=(_:_:)-2aqsn)

###### Type Properties

- [static var zero: Self](/documentation/swift/int/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int/atomicrepresentable-implementations)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int.AtomicRepresentation) -> Int](/documentation/swift/int/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int) -> Int.AtomicRepresentation](/documentation/swift/int/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int/!=(_:_:)-4jphg)
- [static func & (Int, Int) -> Int](/documentation/swift/int/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int/&(_:_:)-1gv8r)
- [static func * (Int, Int) -> Int](/documentation/swift/int/*(_:_:))
- [static func + (Int, Int) -> Int](/documentation/swift/int/+(_:_:))
- [static func - (Int, Int) -> Int](/documentation/swift/int/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int/==(_:_:)-1zalu)
- [static func | (Self, Self) -> Self](/documentation/swift/int/_(_:_:)-1e0ee)
- [static func | (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-26x3w)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int/_(_:_:)-2yuui)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int/_(_:_:)-3r70c)
- [static func > (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-4e53i)
- [static func ^ (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-591r5)
- [static func % (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-6lyj3)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int/_(_:_:)-7d57p)
- [static func / (Int, Int) -> Int](/documentation/swift/int/_(_:_:)-7j9bj)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-6cfca)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-7tmrx)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int/_=(_:_:)-7v58y)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int/_=(_:_:)-yera)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int/__(_:_:)-2xfjq)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int/__(_:_:)-60q97)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int/__(_:_:)-635pg)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int/__(_:_:)-97tkh)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int/__=(_:_:)-66xgb)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int/__=(_:_:)-9p0ct)
- [static func ~ (Self) -> Self](/documentation/swift/int/~(_:))

###### Initializers

- [init()](/documentation/swift/int/init())
- [init<Other>(clamping: Other)](/documentation/swift/int/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int/bitwidth-swift.property)
- [var description: String](/documentation/swift/int/description)

###### Instance Methods

- [func isMultiple(of: Self) -> Bool](/documentation/swift/int/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int/quotientandremainder(dividingby:))
- [CodingKeyRepresentable Implementations](/documentation/swift/int/codingkeyrepresentable-implementations)

###### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/int/init(codingkey:))

###### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/int/codingkey)
- [Comparable Implementations](/documentation/swift/int/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int/'...(_:)-4mm5u)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int/'...(_:)-6ct66)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-24u4v)
- [static func > (Int, Int) -> Bool](/documentation/swift/int/_(_:_:)-9cdiy)
- [static func < (Self, Self) -> Bool](/documentation/swift/int/_(_:_:)-fe4g)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-1ii8)
- [static func <= (Int, Int) -> Bool](/documentation/swift/int/_=(_:_:)-28qlv)
- [static func >= (Int, Int) -> Bool](/documentation/swift/int/_=(_:_:)-443dp)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int/_=(_:_:)-8lyh0)
- [CustomReflectable Implementations](/documentation/swift/int/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int/custommirror)
- [Decodable Implementations](/documentation/swift/int/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int/init(from:))
- [Encodable Implementations](/documentation/swift/int/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int/encode(to:))
- [Equatable Implementations](/documentation/swift/int/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-1baz3)
- [static func != (Self, Self) -> Bool](/documentation/swift/int/!=(_:_:)-280fd)
- [static func == (Self, Self) -> Bool](/documentation/swift/int/==(_:_:)-4wfum)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int/&-=(_:_:))
- [static func &<< (Self, Self) -> Self](/documentation/swift/int/&__(_:_:)-2kxph)
- [static func &>> (Int, Int) -> Int](/documentation/swift/int/&__(_:_:)-35o0c)
- [static func &<< (Int, Int) -> Int](/documentation/swift/int/&__(_:_:)-3euzz)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int/&__(_:_:)-5zh5j)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int/&__(_:_:)-76ndv)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int/&__(_:_:)-voti)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int/&__=(_:_:)-13miv)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int/&__=(_:_:)-704vj)

###### Initializers

- [init?(String)](/documentation/swift/int/init(_:)-2hmii)
- [init<T>(T)](/documentation/swift/int/init(_:)-6gt9z)
- [init?<S>(S, radix: Int)](/documentation/swift/int/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-7yhn6)
- [init(littleEndian: Self)](/documentation/swift/int/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int/bigendian)
- [var littleEndian: Self](/documentation/swift/int/littleendian)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int/random(in:)-8zzqh)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/int/random(in:)-9mjpw)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-3dwv4)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int/random(in:using:)-4lsb5)
- [Hashable Implementations](/documentation/swift/int/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int/simdscalar-implementations)

###### Structures

- [Int.SIMD16Storage](/documentation/swift/int/simd16storage)

###### Initializers

- [init()](/documentation/swift/int/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd16storage/subscript(_:))

###### Type Aliases

- [Int.SIMD16Storage.Scalar](/documentation/swift/int/simd16storage/scalar)
- [Int.SIMD2Storage](/documentation/swift/int/simd2storage)

###### Initializers

- [init()](/documentation/swift/int/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd2storage/subscript(_:))

###### Type Aliases

- [Int.SIMD2Storage.Scalar](/documentation/swift/int/simd2storage/scalar)
- [Int.SIMD32Storage](/documentation/swift/int/simd32storage)

###### Initializers

- [init()](/documentation/swift/int/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd32storage/subscript(_:))

###### Type Aliases

- [Int.SIMD32Storage.Scalar](/documentation/swift/int/simd32storage/scalar)
- [Int.SIMD4Storage](/documentation/swift/int/simd4storage)

###### Initializers

- [init()](/documentation/swift/int/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd4storage/subscript(_:))

###### Type Aliases

- [Int.SIMD4Storage.Scalar](/documentation/swift/int/simd4storage/scalar)
- [Int.SIMD64Storage](/documentation/swift/int/simd64storage)

###### Initializers

- [init()](/documentation/swift/int/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd64storage/subscript(_:))

###### Type Aliases

- [Int.SIMD64Storage.Scalar](/documentation/swift/int/simd64storage/scalar)
- [Int.SIMD8Storage](/documentation/swift/int/simd8storage)

###### Initializers

- [init()](/documentation/swift/int/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int](/documentation/swift/int/simd8storage/subscript(_:))

###### Type Aliases

- [Int.SIMD8Storage.Scalar](/documentation/swift/int/simd8storage/scalar)

###### Type Aliases

- [Int.SIMDMaskScalar](/documentation/swift/int/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int/init(_:)-4ekvl)
- [init?<T>(exactly: T)](/documentation/swift/int/init(exactly:)-b1dy)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int/issigned)
- [static var max: Self](/documentation/swift/int/max)
- [static var min: Self](/documentation/swift/int/min)
- [SignedNumeric Implementations](/documentation/swift/int/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int/negate())
- [Strideable Implementations](/documentation/swift/int/strideable-implementations)

###### Instance Methods

- [func advanced(by: Int) -> Int](/documentation/swift/int/advanced(by:))
- [func distance(to: Int) -> Int](/documentation/swift/int/distance(to:))
- [Double](/documentation/swift/double)

##### Converting Integers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-5blrp)
- [init(Int)](/documentation/swift/double/init(_:)-84ohu)

##### Converting Strings

- [init?<S>(S)](/documentation/swift/double/init(_:)-5wmm8)
- [init?(Substring)](/documentation/swift/double/init(_:)-15kej)

##### Converting Floating-Point Values

- [init<Source>(Source)](/documentation/swift/double/init(_:)-1488d)
- [init(Double)](/documentation/swift/double/init(_:)-o1k9)
- [init(Float)](/documentation/swift/double/init(_:)-5h7qh)
- [init(Float16)](/documentation/swift/double/init(_:)-aeox)
- [init(Float80)](/documentation/swift/double/init(_:)-9z7ob)
- [init(CGFloat)](/documentation/swift/double/init(_:)-7ag2w)
- [init(sign: FloatingPointSign, exponent: Int, significand: Double)](/documentation/swift/double/init(sign:exponent:significand:))
- [init(signOf: Double, magnitudeOf: Double)](/documentation/swift/double/init(signof:magnitudeof:))
- [init<Source>(Source)](/documentation/swift/double/init(_:)-1oh9r)
- [init(truncating: NSNumber)](/documentation/swift/double/init(truncating:))

##### Converting with No Loss of Precision

- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-8esra)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-1h1oc)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-2uexo)
- [init?(exactly: Double)](/documentation/swift/double/init(exactly:)-2l6p1)
- [init?(exactly: Float)](/documentation/swift/double/init(exactly:)-7cl0t)
- [init?(exactly: Float16)](/documentation/swift/double/init(exactly:)-50ofc)
- [init?(exactly: Float80)](/documentation/swift/double/init(exactly:)-63925)
- [init?(exactly: NSNumber)](/documentation/swift/double/init(exactly:)-8e00y)

##### Creating a Random Value

- [static func random(in: Range<Self>) -> Self](/documentation/swift/double/random(in:)-6idef)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-1m6gd)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/double/random(in:)-5o5ha)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-613hz)

##### Performing Calculations

- [Floating-Point Operators for Double](/documentation/swift/floating-point-operators-for-double)

###### Arithmetic

- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))

###### Arithmetic with Assignment

- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))

###### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))

###### Negation

- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func + (Self) -> Self](/documentation/swift/double/+(_:))

###### Range Expressions

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/double/addingproduct(_:_:))
- [func addProduct(Double, Double)](/documentation/swift/double/addproduct(_:_:))
- [func squareRoot() -> Self](/documentation/swift/double/squareroot())
- [func formSquareRoot()](/documentation/swift/double/formsquareroot())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/double/remainder(dividingby:))
- [func formRemainder(dividingBy: Double)](/documentation/swift/double/formremainder(dividingby:))
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/double/truncatingremainder(dividingby:))
- [func formTruncatingRemainder(dividingBy: Double)](/documentation/swift/double/formtruncatingremainder(dividingby:))
- [func negate()](/documentation/swift/double/negate())

##### Rounding Values

- [func rounded() -> Self](/documentation/swift/double/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/double/rounded(_:))
- [func round()](/documentation/swift/double/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/double/round(_:))

##### Comparing Values

- [Floating-Point Operators for Double](/documentation/swift/floating-point-operators-for-double)

###### Arithmetic

- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))

###### Arithmetic with Assignment

- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))

###### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))

###### Negation

- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func + (Self) -> Self](/documentation/swift/double/+(_:))

###### Range Expressions

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [func isEqual(to: Double) -> Bool](/documentation/swift/double/isequal(to:))
- [func isLess(than: Double) -> Bool](/documentation/swift/double/isless(than:))
- [func isLessThanOrEqualTo(Double) -> Bool](/documentation/swift/double/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/double/istotallyordered(beloworequalto:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/double/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/double/minimummagnitude(_:_:))
- [static func maximum(Self, Self) -> Self](/documentation/swift/double/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/double/maximummagnitude(_:_:))

##### Finding the Sign and Magnitude

- [var magnitude: Double](/documentation/swift/double/magnitude-swift.property)
- [var sign: FloatingPointSign](/documentation/swift/double/sign)
- [Double.Magnitude](/documentation/swift/double/magnitude-swift.typealias)

##### Querying a Double

- [var ulp: Double](/documentation/swift/double/ulp)
- [var significand: Double](/documentation/swift/double/significand)
- [var exponent: Int](/documentation/swift/double/exponent-swift.property)
- [var nextUp: Double](/documentation/swift/double/nextup)
- [var nextDown: Self](/documentation/swift/double/nextdown)
- [var binade: Double](/documentation/swift/double/binade)

##### Accessing Numeric Constants

- [static var pi: Double](/documentation/swift/double/pi)
- [static var infinity: Double](/documentation/swift/double/infinity)
- [static var greatestFiniteMagnitude: Double](/documentation/swift/double/greatestfinitemagnitude)
- [static var nan: Double](/documentation/swift/double/nan)
- [static var signalingNaN: Double](/documentation/swift/double/signalingnan)
- [static var ulpOfOne: Double](/documentation/swift/double/ulpofone)
- [static var leastNonzeroMagnitude: Double](/documentation/swift/double/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Double](/documentation/swift/double/leastnormalmagnitude)
- [static var zero: Self](/documentation/swift/double/zero)

##### Working with Binary Representation

- [var bitPattern: UInt64](/documentation/swift/double/bitpattern)
- [var significandBitPattern: UInt64](/documentation/swift/double/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/double/significandwidth)
- [var exponentBitPattern: UInt](/documentation/swift/double/exponentbitpattern)
- [static var significandBitCount: Int](/documentation/swift/double/significandbitcount)
- [static var exponentBitCount: Int](/documentation/swift/double/exponentbitcount)
- [static var radix: Int](/documentation/swift/double/radix)
- [init(bitPattern: UInt64)](/documentation/swift/double/init(bitpattern:))
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt64)](/documentation/swift/double/init(sign:exponentbitpattern:significandbitpattern:))
- [init(nan: Double.RawSignificand, signaling: Bool)](/documentation/swift/double/init(nan:signaling:))
- [Double.Exponent](/documentation/swift/double/exponent-swift.typealias)
- [Double.RawSignificand](/documentation/swift/double/rawsignificand)
- [Double.RawExponent](/documentation/swift/double/rawexponent)

##### Querying a Double’s State

- [var isZero: Bool](/documentation/swift/double/iszero)
- [var isFinite: Bool](/documentation/swift/double/isfinite)
- [var isInfinite: Bool](/documentation/swift/double/isinfinite)
- [var isNaN: Bool](/documentation/swift/double/isnan)
- [var isSignalingNaN: Bool](/documentation/swift/double/issignalingnan)
- [var isNormal: Bool](/documentation/swift/double/isnormal)
- [var isSubnormal: Bool](/documentation/swift/double/issubnormal)
- [var isCanonical: Bool](/documentation/swift/double/iscanonical)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/double/floatingpointclass)

##### Encoding and Decoding Values

- [func encode(to: any Encoder) throws](/documentation/swift/double/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/double/init(from:))

##### Creating a Range

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/double/'...(_:_:))

##### Describing a Double

- [var description: String](/documentation/swift/double/description)
- [var debugDescription: String](/documentation/swift/double/debugdescription)
- [var customMirror: Mirror](/documentation/swift/double/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/double/hash(into:))

##### Infrequently Used Functionality

- [init()](/documentation/swift/double/init())
- [init(floatLiteral: Double)](/documentation/swift/double/init(floatliteral:))
- [init(integerLiteral: Int64)](/documentation/swift/double/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/double/init(integerliteral:)-6hc7j)
- [Double.FloatLiteralType](/documentation/swift/double/floatliteraltype)
- [Double.IntegerLiteralType](/documentation/swift/double/integerliteraltype)
- [func advanced(by: Double) -> Double](/documentation/swift/double/advanced(by:))
- [func distance(to: Double) -> Double](/documentation/swift/double/distance(to:))
- [Double.Stride](/documentation/swift/double/stride)
- [func write<Target>(to: inout Target)](/documentation/swift/double/write(to:))
- [var hashValue: Int](/documentation/swift/double/hashvalue)

##### SIMD-Supporting Types

- [Double.SIMDMaskScalar](/documentation/swift/double/simdmaskscalar)
- [Double.SIMD2Storage](/documentation/swift/double/simd2storage)

###### Initializers

- [init()](/documentation/swift/double/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd2storage/subscript(_:))

###### Type Aliases

- [Double.SIMD2Storage.Scalar](/documentation/swift/double/simd2storage/scalar)
- [Double.SIMD4Storage](/documentation/swift/double/simd4storage)

###### Initializers

- [init()](/documentation/swift/double/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd4storage/subscript(_:))

###### Type Aliases

- [Double.SIMD4Storage.Scalar](/documentation/swift/double/simd4storage/scalar)
- [Double.SIMD8Storage](/documentation/swift/double/simd8storage)

###### Initializers

- [init()](/documentation/swift/double/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd8storage/subscript(_:))

###### Type Aliases

- [Double.SIMD8Storage.Scalar](/documentation/swift/double/simd8storage/scalar)
- [Double.SIMD16Storage](/documentation/swift/double/simd16storage)

###### Initializers

- [init()](/documentation/swift/double/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd16storage/subscript(_:))

###### Type Aliases

- [Double.SIMD16Storage.Scalar](/documentation/swift/double/simd16storage/scalar)
- [Double.SIMD32Storage](/documentation/swift/double/simd32storage)

###### Initializers

- [init()](/documentation/swift/double/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd32storage/subscript(_:))

###### Type Aliases

- [Double.SIMD32Storage.Scalar](/documentation/swift/double/simd32storage/scalar)
- [Double.SIMD64Storage](/documentation/swift/double/simd64storage)

###### Initializers

- [init()](/documentation/swift/double/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd64storage/subscript(_:))

###### Type Aliases

- [Double.SIMD64Storage.Scalar](/documentation/swift/double/simd64storage/scalar)

##### Deprecated

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/double/customplaygroundquicklook)
- [init(NSNumber)](/documentation/swift/double/init(_:)-8kme5)

##### Type Aliases

- [Double.Specification](/documentation/swift/double/specification)
- [Double.UnwrappedType](/documentation/swift/double/unwrappedtype)
- [Double.ValueType](/documentation/swift/double/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/double/defaultresolverspecification)
- [static var mlMultiArrayDataType: MLMultiArrayDataType](/documentation/swift/double/mlmultiarraydatatype)

##### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/double/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/double/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/double/+=(_:_:)-5g9j0)
- [static func -= (inout Self, Self)](/documentation/swift/double/-=(_:_:)-2aqsq)

###### Type Properties

- [static var zero: Self](/documentation/swift/double/zero)
- [AtomicRepresentable Implementations](/documentation/swift/double/atomicrepresentable-implementations)

###### Type Aliases

- [Double.AtomicRepresentation](/documentation/swift/double/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Double.AtomicRepresentation) -> Double](/documentation/swift/double/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Double) -> Double.AtomicRepresentation](/documentation/swift/double/encodeatomicrepresentation(_:))
- [BinaryFloatingPoint Implementations](/documentation/swift/double/binaryfloatingpoint-implementations)

###### Initializers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-1488d)
- [init<Source>(Source)](/documentation/swift/double/init(_:)-1oh9r)
- [init(Float)](/documentation/swift/double/init(_:)-5h7qh)
- [init(Float80)](/documentation/swift/double/init(_:)-9z7ob)
- [init(Double)](/documentation/swift/double/init(_:)-o1k9)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-1h1oc)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-8esra)
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt64)](/documentation/swift/double/init(sign:exponentbitpattern:significandbitpattern:))

###### Instance Properties

- [var binade: Double](/documentation/swift/double/binade)
- [var exponentBitPattern: UInt](/documentation/swift/double/exponentbitpattern)
- [var significandBitPattern: UInt64](/documentation/swift/double/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/double/significandwidth)

###### Type Aliases

- [Double.RawExponent](/documentation/swift/double/rawexponent)
- [Double.RawSignificand](/documentation/swift/double/rawsignificand)

###### Type Properties

- [static var exponentBitCount: Int](/documentation/swift/double/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/double/significandbitcount)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/double/random(in:)-5o5ha)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/double/random(in:)-6idef)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-1m6gd)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/double/random(in:using:)-613hz)
- [Comparable Implementations](/documentation/swift/double/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/double/'...(_:)-4mm67)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/double/'...(_:)-6ct5v)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/double/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/double/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/double/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-24u4i)
- [static func < (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-7lwp5)
- [static func < (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-fe4t)
- [static func <= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-1iil)
- [static func >= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-8lyh5)
- [CustomDebugStringConvertible Implementations](/documentation/swift/double/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/double/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/double/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/double/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/double/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/double/description)
- [Decodable Implementations](/documentation/swift/double/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/double/init(from:))
- [Encodable Implementations](/documentation/swift/double/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/double/encode(to:))
- [Equatable Implementations](/documentation/swift/double/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/double/!=(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-12hdv)
- [static func == (Self, Self) -> Bool](/documentation/swift/double/==(_:_:)-4wfub)
- [ExpressibleByFloatLiteral Implementations](/documentation/swift/double/expressiblebyfloatliteral-implementations)

###### Initializers

- [init(floatLiteral: Double)](/documentation/swift/double/init(floatliteral:))

###### Type Aliases

- [Double.FloatLiteralType](/documentation/swift/double/floatliteraltype)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/double/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Int64)](/documentation/swift/double/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/double/init(integerliteral:)-6hc7j)

###### Type Aliases

- [Double.IntegerLiteralType](/documentation/swift/double/integerliteraltype)
- [FloatingPoint Implementations](/documentation/swift/double/floatingpoint-implementations)

###### Operators

- [static func * (Double, Double) -> Double](/documentation/swift/double/*(_:_:))
- [static func *= (inout Double, Double)](/documentation/swift/double/*=(_:_:))
- [static func + (Double, Double) -> Double](/documentation/swift/double/+(_:_:))
- [static func += (inout Double, Double)](/documentation/swift/double/+=(_:_:))
- [static func - (Double) -> Double](/documentation/swift/double/-(_:))
- [static func - (Double, Double) -> Double](/documentation/swift/double/-(_:_:))
- [static func -= (inout Double, Double)](/documentation/swift/double/-=(_:_:))
- [static func / (Double, Double) -> Double](/documentation/swift/double/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/double/_(_:_:)-552jp)
- [static func /= (inout Double, Double)](/documentation/swift/double/_=(_:_:))
- [static func <= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-5yoz7)
- [static func >= (Self, Self) -> Bool](/documentation/swift/double/_=(_:_:)-9o6h8)

###### Initializers

- [init<Source>(Source)](/documentation/swift/double/init(_:)-5blrp)
- [init(Int)](/documentation/swift/double/init(_:)-84ohu)
- [init?<Source>(exactly: Source)](/documentation/swift/double/init(exactly:)-2uexo)
- [init(sign: FloatingPointSign, exponent: Int, significand: Double)](/documentation/swift/double/init(sign:exponent:significand:))
- [init(signOf: Double, magnitudeOf: Double)](/documentation/swift/double/init(signof:magnitudeof:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/double/init(signof:magnitudeof:)-6i9uy)

###### Instance Properties

- [var exponent: Int](/documentation/swift/double/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/double/floatingpointclass)
- [var isCanonical: Bool](/documentation/swift/double/iscanonical)
- [var isFinite: Bool](/documentation/swift/double/isfinite)
- [var isInfinite: Bool](/documentation/swift/double/isinfinite)
- [var isNaN: Bool](/documentation/swift/double/isnan)
- [var isNormal: Bool](/documentation/swift/double/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/double/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/double/issubnormal)
- [var isZero: Bool](/documentation/swift/double/iszero)
- [var nextDown: Self](/documentation/swift/double/nextdown)
- [var nextUp: Double](/documentation/swift/double/nextup)
- [var sign: FloatingPointSign](/documentation/swift/double/sign)
- [var significand: Double](/documentation/swift/double/significand)
- [var ulp: Double](/documentation/swift/double/ulp)

###### Instance Methods

- [func addProduct(Double, Double)](/documentation/swift/double/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/double/addingproduct(_:_:))
- [func formRemainder(dividingBy: Double)](/documentation/swift/double/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/double/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Double)](/documentation/swift/double/formtruncatingremainder(dividingby:))
- [func isEqual(to: Double) -> Bool](/documentation/swift/double/isequal(to:))
- [func isLess(than: Double) -> Bool](/documentation/swift/double/isless(than:))
- [func isLessThanOrEqualTo(Double) -> Bool](/documentation/swift/double/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/double/istotallyordered(beloworequalto:))
- [func negate()](/documentation/swift/double/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/double/remainder(dividingby:))
- [func round()](/documentation/swift/double/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/double/round(_:))
- [func rounded() -> Self](/documentation/swift/double/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/double/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/double/squareroot())
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/double/truncatingremainder(dividingby:))

###### Type Aliases

- [Double.Exponent](/documentation/swift/double/exponent-swift.typealias)

###### Type Properties

- [static var greatestFiniteMagnitude: Double](/documentation/swift/double/greatestfinitemagnitude)
- [static var infinity: Double](/documentation/swift/double/infinity)
- [static var leastNonzeroMagnitude: Double](/documentation/swift/double/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Double](/documentation/swift/double/leastnormalmagnitude)
- [static var nan: Double](/documentation/swift/double/nan)
- [static var pi: Double](/documentation/swift/double/pi)
- [static var radix: Int](/documentation/swift/double/radix)
- [static var signalingNaN: Double](/documentation/swift/double/signalingnan)
- [static var ulpOfOne: Double](/documentation/swift/double/ulpofone)
- [static var ulpOfOne: Self](/documentation/swift/double/ulpofone-1s81x)

###### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/double/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/double/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/double/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/double/minimummagnitude(_:_:))
- [Hashable Implementations](/documentation/swift/double/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/double/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/double/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/double/losslessstringconvertible-implementations)

###### Initializers

- [init?<S>(S)](/documentation/swift/double/init(_:)-5wmm8)
- [Numeric Implementations](/documentation/swift/double/numeric-implementations)

###### Instance Properties

- [var magnitude: Double](/documentation/swift/double/magnitude-swift.property)

###### Type Aliases

- [Double.Magnitude](/documentation/swift/double/magnitude-swift.typealias)
- [SIMDScalar Implementations](/documentation/swift/double/simdscalar-implementations)

###### Structures

- [Double.SIMD16Storage](/documentation/swift/double/simd16storage)

###### Initializers

- [init()](/documentation/swift/double/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd16storage/subscript(_:))

###### Type Aliases

- [Double.SIMD16Storage.Scalar](/documentation/swift/double/simd16storage/scalar)
- [Double.SIMD2Storage](/documentation/swift/double/simd2storage)

###### Initializers

- [init()](/documentation/swift/double/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd2storage/subscript(_:))

###### Type Aliases

- [Double.SIMD2Storage.Scalar](/documentation/swift/double/simd2storage/scalar)
- [Double.SIMD32Storage](/documentation/swift/double/simd32storage)

###### Initializers

- [init()](/documentation/swift/double/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd32storage/subscript(_:))

###### Type Aliases

- [Double.SIMD32Storage.Scalar](/documentation/swift/double/simd32storage/scalar)
- [Double.SIMD4Storage](/documentation/swift/double/simd4storage)

###### Initializers

- [init()](/documentation/swift/double/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd4storage/subscript(_:))

###### Type Aliases

- [Double.SIMD4Storage.Scalar](/documentation/swift/double/simd4storage/scalar)
- [Double.SIMD64Storage](/documentation/swift/double/simd64storage)

###### Initializers

- [init()](/documentation/swift/double/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd64storage/subscript(_:))

###### Type Aliases

- [Double.SIMD64Storage.Scalar](/documentation/swift/double/simd64storage/scalar)
- [Double.SIMD8Storage](/documentation/swift/double/simd8storage)

###### Initializers

- [init()](/documentation/swift/double/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/double/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Double](/documentation/swift/double/simd8storage/subscript(_:))

###### Type Aliases

- [Double.SIMD8Storage.Scalar](/documentation/swift/double/simd8storage/scalar)

###### Type Aliases

- [Double.SIMDMaskScalar](/documentation/swift/double/simdmaskscalar)
- [SignedNumeric Implementations](/documentation/swift/double/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/double/-(_:)-41os0)

###### Instance Methods

- [func negate()](/documentation/swift/double/negate()-jfhr)
- [Strideable Implementations](/documentation/swift/double/strideable-implementations)

###### Instance Methods

- [func advanced(by: Double) -> Double](/documentation/swift/double/advanced(by:))
- [func distance(to: Double) -> Double](/documentation/swift/double/distance(to:))

###### Type Aliases

- [Double.Stride](/documentation/swift/double/stride)
- [TextOutputStreamable Implementations](/documentation/swift/double/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/double/write(to:))
- [Float](/documentation/swift/float)

##### Converting Integers

- [init<Source>(Source)](/documentation/swift/float/init(_:)-7e965)
- [init(Int)](/documentation/swift/float/init(_:)-6cvkq)

##### Converting Strings

- [init?<S>(S)](/documentation/swift/float/init(_:)-h2f4)
- [init?(Substring)](/documentation/swift/float/init(_:)-4xsj6)

##### Converting Floating-Point Values

- [init<Source>(Source)](/documentation/swift/float/init(_:)-1488f)
- [init<Source>(Source)](/documentation/swift/float/init(_:)-1oh9p)
- [init(Double)](/documentation/swift/float/init(_:)-1kp2p)
- [init(Float)](/documentation/swift/float/init(_:)-975tv)
- [init(Float80)](/documentation/swift/float/init(_:)-11orc)
- [init(CGFloat)](/documentation/swift/float/init(_:)-5soww)
- [init(Float16)](/documentation/swift/float/init(_:)-ussz)
- [init(signOf: Float, magnitudeOf: Float)](/documentation/swift/float/init(signof:magnitudeof:))
- [init(sign: FloatingPointSign, exponent: Int, significand: Float)](/documentation/swift/float/init(sign:exponent:significand:))
- [init(truncating: NSNumber)](/documentation/swift/float/init(truncating:))

##### Converting with No Loss of Precision

- [init?<Source>(exactly: Source)](/documentation/swift/float/init(exactly:)-8esr8)
- [init?(exactly: Double)](/documentation/swift/float/init(exactly:)-89na7)
- [init?(exactly: Float)](/documentation/swift/float/init(exactly:)-89pn7)
- [init?(exactly: Float80)](/documentation/swift/float/init(exactly:)-6l5fa)
- [init?(exactly: NSNumber)](/documentation/swift/float/init(exactly:)-zknq)
- [init?<Source>(exactly: Source)](/documentation/swift/float/init(exactly:)-1h1oe)
- [init?(exactly: Float16)](/documentation/swift/float/init(exactly:)-8ho5q)

##### Creating a Random Value

- [static func random(in: Range<Self>) -> Self](/documentation/swift/float/random(in:)-6ided)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/float/random(in:using:)-1m6gf)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/float/random(in:)-5o5h8)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/float/random(in:using:)-613hx)

##### Performing Calculations

- [Floating-Point Operators for Float](/documentation/swift/floating-point-operators-for-float)

###### Arithmetic

- [static func + (Float, Float) -> Float](/documentation/swift/float/+(_:_:))
- [static func - (Float, Float) -> Float](/documentation/swift/float/-(_:_:))
- [static func * (Float, Float) -> Float](/documentation/swift/float/*(_:_:))
- [static func / (Float, Float) -> Float](/documentation/swift/float/_(_:_:))

###### Arithmetic with Assignment

- [static func += (inout Float, Float)](/documentation/swift/float/+=(_:_:))
- [static func -= (inout Float, Float)](/documentation/swift/float/-=(_:_:))
- [static func *= (inout Float, Float)](/documentation/swift/float/*=(_:_:))
- [static func /= (inout Float, Float)](/documentation/swift/float/_=(_:_:))

###### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/float/==(_:_:)-12hdt)
- [static func != (Self, Self) -> Bool](/documentation/swift/float/!=(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-7lwp7)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-5yoz5)
- [static func > (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-552jr)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-9o6ha)

###### Negation

- [static func - (Float) -> Float](/documentation/swift/float/-(_:))
- [static func + (Self) -> Self](/documentation/swift/float/+(_:))

###### Range Expressions

- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/float/'.._(_:))
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/float/'...(_:)-4mm65)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/float/'...(_:)-6ct5t)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/float/addingproduct(_:_:))
- [func addProduct(Float, Float)](/documentation/swift/float/addproduct(_:_:))
- [func squareRoot() -> Self](/documentation/swift/float/squareroot())
- [func formSquareRoot()](/documentation/swift/float/formsquareroot())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/float/remainder(dividingby:))
- [func formRemainder(dividingBy: Float)](/documentation/swift/float/formremainder(dividingby:))
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/float/truncatingremainder(dividingby:))
- [func formTruncatingRemainder(dividingBy: Float)](/documentation/swift/float/formtruncatingremainder(dividingby:))
- [func negate()](/documentation/swift/float/negate())

##### Rounding Values

- [func rounded() -> Self](/documentation/swift/float/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/float/rounded(_:))
- [func round()](/documentation/swift/float/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/float/round(_:))

##### Comparing Values

- [Floating-Point Operators for Float](/documentation/swift/floating-point-operators-for-float)

###### Arithmetic

- [static func + (Float, Float) -> Float](/documentation/swift/float/+(_:_:))
- [static func - (Float, Float) -> Float](/documentation/swift/float/-(_:_:))
- [static func * (Float, Float) -> Float](/documentation/swift/float/*(_:_:))
- [static func / (Float, Float) -> Float](/documentation/swift/float/_(_:_:))

###### Arithmetic with Assignment

- [static func += (inout Float, Float)](/documentation/swift/float/+=(_:_:))
- [static func -= (inout Float, Float)](/documentation/swift/float/-=(_:_:))
- [static func *= (inout Float, Float)](/documentation/swift/float/*=(_:_:))
- [static func /= (inout Float, Float)](/documentation/swift/float/_=(_:_:))

###### Comparison

- [static func == (Self, Self) -> Bool](/documentation/swift/float/==(_:_:)-12hdt)
- [static func != (Self, Self) -> Bool](/documentation/swift/float/!=(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-7lwp7)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-5yoz5)
- [static func > (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-552jr)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-9o6ha)

###### Negation

- [static func - (Float) -> Float](/documentation/swift/float/-(_:))
- [static func + (Self) -> Self](/documentation/swift/float/+(_:))

###### Range Expressions

- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/float/'.._(_:))
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/float/'...(_:)-4mm65)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/float/'...(_:)-6ct5t)
- [func isEqual(to: Float) -> Bool](/documentation/swift/float/isequal(to:))
- [func isLess(than: Float) -> Bool](/documentation/swift/float/isless(than:))
- [func isLessThanOrEqualTo(Float) -> Bool](/documentation/swift/float/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/float/istotallyordered(beloworequalto:))
- [static func maximum(Self, Self) -> Self](/documentation/swift/float/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/float/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/float/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/float/minimummagnitude(_:_:))

##### Finding the Sign and Magnitude

- [var magnitude: Float](/documentation/swift/float/magnitude-swift.property)
- [var sign: FloatingPointSign](/documentation/swift/float/sign)
- [Float.Magnitude](/documentation/swift/float/magnitude-swift.typealias)

##### Querying a Float

- [var ulp: Float](/documentation/swift/float/ulp)
- [var significand: Float](/documentation/swift/float/significand)
- [var exponent: Int](/documentation/swift/float/exponent-swift.property)
- [var nextUp: Float](/documentation/swift/float/nextup)
- [var nextDown: Self](/documentation/swift/float/nextdown)
- [var binade: Float](/documentation/swift/float/binade)

##### Accessing Numeric Constants

- [static var pi: Float](/documentation/swift/float/pi)
- [static var infinity: Float](/documentation/swift/float/infinity)
- [static var greatestFiniteMagnitude: Float](/documentation/swift/float/greatestfinitemagnitude)
- [static var nan: Float](/documentation/swift/float/nan)
- [static var signalingNaN: Float](/documentation/swift/float/signalingnan)
- [static var ulpOfOne: Float](/documentation/swift/float/ulpofone)
- [static var leastNormalMagnitude: Float](/documentation/swift/float/leastnormalmagnitude)
- [static var leastNonzeroMagnitude: Float](/documentation/swift/float/leastnonzeromagnitude)
- [static var zero: Self](/documentation/swift/float/zero)

##### Working with Binary Representation

- [var bitPattern: UInt32](/documentation/swift/float/bitpattern)
- [var significandBitPattern: UInt32](/documentation/swift/float/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/float/significandwidth)
- [var exponentBitPattern: UInt](/documentation/swift/float/exponentbitpattern)
- [static var significandBitCount: Int](/documentation/swift/float/significandbitcount)
- [static var exponentBitCount: Int](/documentation/swift/float/exponentbitcount)
- [static var radix: Int](/documentation/swift/float/radix)
- [init(bitPattern: UInt32)](/documentation/swift/float/init(bitpattern:))
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt32)](/documentation/swift/float/init(sign:exponentbitpattern:significandbitpattern:))
- [init(nan: Float.RawSignificand, signaling: Bool)](/documentation/swift/float/init(nan:signaling:))
- [Float.Exponent](/documentation/swift/float/exponent-swift.typealias)
- [Float.RawSignificand](/documentation/swift/float/rawsignificand)

##### Querying a Float’s State

- [var isZero: Bool](/documentation/swift/float/iszero)
- [var isFinite: Bool](/documentation/swift/float/isfinite)
- [var isInfinite: Bool](/documentation/swift/float/isinfinite)
- [var isNaN: Bool](/documentation/swift/float/isnan)
- [var isSignalingNaN: Bool](/documentation/swift/float/issignalingnan)
- [var isNormal: Bool](/documentation/swift/float/isnormal)
- [var isSubnormal: Bool](/documentation/swift/float/issubnormal)
- [var isCanonical: Bool](/documentation/swift/float/iscanonical)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/float/floatingpointclass)

##### Encoding and Decoding Values

- [func encode(to: any Encoder) throws](/documentation/swift/float/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/float/init(from:))

##### Creating a Range

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/float/'...(_:_:))

##### Describing a Float

- [func hash(into: inout Hasher)](/documentation/swift/float/hash(into:))
- [var description: String](/documentation/swift/float/description)
- [var debugDescription: String](/documentation/swift/float/debugdescription)
- [var customMirror: Mirror](/documentation/swift/float/custommirror)
- [var hashValue: Int](/documentation/swift/float/hashvalue)

##### SIMD-Supporting Types

- [Float.SIMDMaskScalar](/documentation/swift/float/simdmaskscalar)
- [Float.SIMD2Storage](/documentation/swift/float/simd2storage)

###### Initializers

- [init()](/documentation/swift/float/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd2storage/subscript(_:))

###### Type Aliases

- [Float.SIMD2Storage.Scalar](/documentation/swift/float/simd2storage/scalar)
- [Float.SIMD4Storage](/documentation/swift/float/simd4storage)

###### Initializers

- [init()](/documentation/swift/float/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd4storage/subscript(_:))

###### Type Aliases

- [Float.SIMD4Storage.Scalar](/documentation/swift/float/simd4storage/scalar)
- [Float.SIMD8Storage](/documentation/swift/float/simd8storage)

###### Initializers

- [init()](/documentation/swift/float/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd8storage/subscript(_:))

###### Type Aliases

- [Float.SIMD8Storage.Scalar](/documentation/swift/float/simd8storage/scalar)
- [Float.SIMD16Storage](/documentation/swift/float/simd16storage)

###### Initializers

- [init()](/documentation/swift/float/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd16storage/subscript(_:))

###### Type Aliases

- [Float.SIMD16Storage.Scalar](/documentation/swift/float/simd16storage/scalar)
- [Float.SIMD32Storage](/documentation/swift/float/simd32storage)

###### Initializers

- [init()](/documentation/swift/float/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd32storage/subscript(_:))

###### Type Aliases

- [Float.SIMD32Storage.Scalar](/documentation/swift/float/simd32storage/scalar)
- [Float.SIMD64Storage](/documentation/swift/float/simd64storage)

###### Initializers

- [init()](/documentation/swift/float/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd64storage/subscript(_:))

###### Type Aliases

- [Float.SIMD64Storage.Scalar](/documentation/swift/float/simd64storage/scalar)

##### Infrequently Used Functionality

- [init()](/documentation/swift/float/init())
- [init(integerLiteral: Int64)](/documentation/swift/float/init(integerliteral:))
- [init(floatLiteral: Float)](/documentation/swift/float/init(floatliteral:))
- [init(integerLiteral: Self)](/documentation/swift/float/init(integerliteral:)-6hc7h)
- [func advanced(by: Float) -> Float](/documentation/swift/float/advanced(by:))
- [func distance(to: Float) -> Float](/documentation/swift/float/distance(to:))
- [func write<Target>(to: inout Target)](/documentation/swift/float/write(to:))

##### Deprecated

- [init(NSNumber)](/documentation/swift/float/init(_:)-7dbrz)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/float/customplaygroundquicklook)

##### Type Properties

- [static var mlMultiArrayDataType: MLMultiArrayDataType](/documentation/swift/float/mlmultiarraydatatype)

##### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/float/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/float/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/float/+=(_:_:)-5g9j2)
- [static func -= (inout Self, Self)](/documentation/swift/float/-=(_:_:)-2aqso)

###### Type Properties

- [static var zero: Self](/documentation/swift/float/zero)
- [AtomicRepresentable Implementations](/documentation/swift/float/atomicrepresentable-implementations)

###### Type Aliases

- [Float.AtomicRepresentation](/documentation/swift/float/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Float.AtomicRepresentation) -> Float](/documentation/swift/float/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Float) -> Float.AtomicRepresentation](/documentation/swift/float/encodeatomicrepresentation(_:))
- [BinaryFloatingPoint Implementations](/documentation/swift/float/binaryfloatingpoint-implementations)

###### Initializers

- [init(Float80)](/documentation/swift/float/init(_:)-11orc)
- [init<Source>(Source)](/documentation/swift/float/init(_:)-1488f)
- [init(Double)](/documentation/swift/float/init(_:)-1kp2p)
- [init<Source>(Source)](/documentation/swift/float/init(_:)-1oh9p)
- [init(Float)](/documentation/swift/float/init(_:)-975tv)
- [init?<Source>(exactly: Source)](/documentation/swift/float/init(exactly:)-1h1oe)
- [init?<Source>(exactly: Source)](/documentation/swift/float/init(exactly:)-8esr8)
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt32)](/documentation/swift/float/init(sign:exponentbitpattern:significandbitpattern:))

###### Instance Properties

- [var binade: Float](/documentation/swift/float/binade)
- [var exponentBitPattern: UInt](/documentation/swift/float/exponentbitpattern)
- [var significandBitPattern: UInt32](/documentation/swift/float/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/float/significandwidth)

###### Type Aliases

- [Float.RawExponent](/documentation/swift/float/rawexponent)
- [Float.RawSignificand](/documentation/swift/float/rawsignificand)

###### Type Properties

- [static var exponentBitCount: Int](/documentation/swift/float/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/float/significandbitcount)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/float/random(in:)-5o5h8)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/float/random(in:)-6ided)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/float/random(in:using:)-1m6gf)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/float/random(in:using:)-613hx)
- [Comparable Implementations](/documentation/swift/float/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/float/'...(_:)-4mm65)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/float/'...(_:)-6ct5t)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/float/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/float/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/float/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-24u4g)
- [static func < (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-7lwp7)
- [static func < (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-fe4v)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-1iin)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-8lyh7)
- [CustomDebugStringConvertible Implementations](/documentation/swift/float/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/float/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/float/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/float/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/float/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/float/description)
- [Decodable Implementations](/documentation/swift/float/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/float/init(from:))
- [Encodable Implementations](/documentation/swift/float/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/float/encode(to:))
- [Equatable Implementations](/documentation/swift/float/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/float/!=(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/float/==(_:_:)-12hdt)
- [static func == (Self, Self) -> Bool](/documentation/swift/float/==(_:_:)-4wfu9)
- [ExpressibleByFloatLiteral Implementations](/documentation/swift/float/expressiblebyfloatliteral-implementations)

###### Initializers

- [init(floatLiteral: Float)](/documentation/swift/float/init(floatliteral:))

###### Type Aliases

- [Float.FloatLiteralType](/documentation/swift/float/floatliteraltype)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/float/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Int64)](/documentation/swift/float/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/float/init(integerliteral:)-6hc7h)

###### Type Aliases

- [Float.IntegerLiteralType](/documentation/swift/float/integerliteraltype)
- [FloatingPoint Implementations](/documentation/swift/float/floatingpoint-implementations)

###### Operators

- [static func * (Float, Float) -> Float](/documentation/swift/float/*(_:_:))
- [static func *= (inout Float, Float)](/documentation/swift/float/*=(_:_:))
- [static func + (Float, Float) -> Float](/documentation/swift/float/+(_:_:))
- [static func += (inout Float, Float)](/documentation/swift/float/+=(_:_:))
- [static func - (Float) -> Float](/documentation/swift/float/-(_:))
- [static func - (Float, Float) -> Float](/documentation/swift/float/-(_:_:))
- [static func -= (inout Float, Float)](/documentation/swift/float/-=(_:_:))
- [static func / (Float, Float) -> Float](/documentation/swift/float/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/float/_(_:_:)-552jr)
- [static func /= (inout Float, Float)](/documentation/swift/float/_=(_:_:))
- [static func <= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-5yoz5)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float/_=(_:_:)-9o6ha)

###### Initializers

- [init(Int)](/documentation/swift/float/init(_:)-6cvkq)
- [init<Source>(Source)](/documentation/swift/float/init(_:)-7e965)
- [init?<Source>(exactly: Source)](/documentation/swift/float/init(exactly:)-uz92)
- [init(sign: FloatingPointSign, exponent: Int, significand: Float)](/documentation/swift/float/init(sign:exponent:significand:))
- [init(signOf: Float, magnitudeOf: Float)](/documentation/swift/float/init(signof:magnitudeof:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/float/init(signof:magnitudeof:)-6i9uw)

###### Instance Properties

- [var exponent: Int](/documentation/swift/float/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/float/floatingpointclass)
- [var isCanonical: Bool](/documentation/swift/float/iscanonical)
- [var isFinite: Bool](/documentation/swift/float/isfinite)
- [var isInfinite: Bool](/documentation/swift/float/isinfinite)
- [var isNaN: Bool](/documentation/swift/float/isnan)
- [var isNormal: Bool](/documentation/swift/float/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/float/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/float/issubnormal)
- [var isZero: Bool](/documentation/swift/float/iszero)
- [var nextDown: Self](/documentation/swift/float/nextdown)
- [var nextUp: Float](/documentation/swift/float/nextup)
- [var sign: FloatingPointSign](/documentation/swift/float/sign)
- [var significand: Float](/documentation/swift/float/significand)
- [var ulp: Float](/documentation/swift/float/ulp)

###### Instance Methods

- [func addProduct(Float, Float)](/documentation/swift/float/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/float/addingproduct(_:_:))
- [func formRemainder(dividingBy: Float)](/documentation/swift/float/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/float/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Float)](/documentation/swift/float/formtruncatingremainder(dividingby:))
- [func isEqual(to: Float) -> Bool](/documentation/swift/float/isequal(to:))
- [func isLess(than: Float) -> Bool](/documentation/swift/float/isless(than:))
- [func isLessThanOrEqualTo(Float) -> Bool](/documentation/swift/float/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/float/istotallyordered(beloworequalto:))
- [func negate()](/documentation/swift/float/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/float/remainder(dividingby:))
- [func round()](/documentation/swift/float/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/float/round(_:))
- [func rounded() -> Self](/documentation/swift/float/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/float/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/float/squareroot())
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/float/truncatingremainder(dividingby:))

###### Type Aliases

- [Float.Exponent](/documentation/swift/float/exponent-swift.typealias)

###### Type Properties

- [static var greatestFiniteMagnitude: Float](/documentation/swift/float/greatestfinitemagnitude)
- [static var infinity: Float](/documentation/swift/float/infinity)
- [static var leastNonzeroMagnitude: Float](/documentation/swift/float/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Float](/documentation/swift/float/leastnormalmagnitude)
- [static var nan: Float](/documentation/swift/float/nan)
- [static var pi: Float](/documentation/swift/float/pi)
- [static var radix: Int](/documentation/swift/float/radix)
- [static var signalingNaN: Float](/documentation/swift/float/signalingnan)
- [static var ulpOfOne: Float](/documentation/swift/float/ulpofone)
- [static var ulpOfOne: Self](/documentation/swift/float/ulpofone-1s81z)

###### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/float/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/float/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/float/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/float/minimummagnitude(_:_:))
- [Hashable Implementations](/documentation/swift/float/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/float/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/float/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/float/losslessstringconvertible-implementations)

###### Initializers

- [init?<S>(S)](/documentation/swift/float/init(_:)-h2f4)
- [Numeric Implementations](/documentation/swift/float/numeric-implementations)

###### Instance Properties

- [var magnitude: Float](/documentation/swift/float/magnitude-swift.property)

###### Type Aliases

- [Float.Magnitude](/documentation/swift/float/magnitude-swift.typealias)
- [OperationParameter Implementations](/documentation/swift/float/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Float>](/documentation/swift/float/graphbuildertensor(_:))
- [SIMDScalar Implementations](/documentation/swift/float/simdscalar-implementations)

###### Structures

- [Float.SIMD16Storage](/documentation/swift/float/simd16storage)

###### Initializers

- [init()](/documentation/swift/float/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd16storage/subscript(_:))

###### Type Aliases

- [Float.SIMD16Storage.Scalar](/documentation/swift/float/simd16storage/scalar)
- [Float.SIMD2Storage](/documentation/swift/float/simd2storage)

###### Initializers

- [init()](/documentation/swift/float/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd2storage/subscript(_:))

###### Type Aliases

- [Float.SIMD2Storage.Scalar](/documentation/swift/float/simd2storage/scalar)
- [Float.SIMD32Storage](/documentation/swift/float/simd32storage)

###### Initializers

- [init()](/documentation/swift/float/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd32storage/subscript(_:))

###### Type Aliases

- [Float.SIMD32Storage.Scalar](/documentation/swift/float/simd32storage/scalar)
- [Float.SIMD4Storage](/documentation/swift/float/simd4storage)

###### Initializers

- [init()](/documentation/swift/float/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd4storage/subscript(_:))

###### Type Aliases

- [Float.SIMD4Storage.Scalar](/documentation/swift/float/simd4storage/scalar)
- [Float.SIMD64Storage](/documentation/swift/float/simd64storage)

###### Initializers

- [init()](/documentation/swift/float/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd64storage/subscript(_:))

###### Type Aliases

- [Float.SIMD64Storage.Scalar](/documentation/swift/float/simd64storage/scalar)
- [Float.SIMD8Storage](/documentation/swift/float/simd8storage)

###### Initializers

- [init()](/documentation/swift/float/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float](/documentation/swift/float/simd8storage/subscript(_:))

###### Type Aliases

- [Float.SIMD8Storage.Scalar](/documentation/swift/float/simd8storage/scalar)

###### Type Aliases

- [Float.SIMDMaskScalar](/documentation/swift/float/simdmaskscalar)
- [SignedNumeric Implementations](/documentation/swift/float/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/float/-(_:)-41os2)

###### Instance Methods

- [func negate()](/documentation/swift/float/negate()-jfhp)
- [Strideable Implementations](/documentation/swift/float/strideable-implementations)

###### Instance Methods

- [func advanced(by: Float) -> Float](/documentation/swift/float/advanced(by:))
- [func distance(to: Float) -> Float](/documentation/swift/float/distance(to:))

###### Type Aliases

- [Float.Stride](/documentation/swift/float/stride)
- [TextOutputStreamable Implementations](/documentation/swift/float/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/float/write(to:))

#### Ranges

- [Range](/documentation/swift/range)

##### Creating a Range

- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/comparable/'.._(_:_:))

##### Converting Ranges

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/range/relative(to:))
- [init?(NSRange, in: String)](/documentation/swift/range/init(_:in:)-5cclx)
- [init?<S>(NSRange, in: S)](/documentation/swift/range/init(_:in:)-5qfor)

##### Inspecting a Range

- [var isEmpty: Bool](/documentation/swift/range/isempty)
- [let lowerBound: Bound](/documentation/swift/range/lowerbound)
- [let upperBound: Bound](/documentation/swift/range/upperbound)

##### Checking for Containment

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/range/~=(_:_:))

##### Clamping a Range

- [func clamped(to: Range<Bound>) -> Range<Bound>](/documentation/swift/range/clamped(to:))

##### Working with Foundation Ranges

- [init?(NSRange)](/documentation/swift/range/init(_:)-15u6b)
- [init?(NSRange)](/documentation/swift/range/init(_:)-1q7lu)

##### Comparing Ranges

- [static func == (Range<Bound>, Range<Bound>) -> Bool](/documentation/swift/range/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/range/!=(_:_:))
- [func overlaps(Range<Bound>) -> Bool](/documentation/swift/range/overlaps(_:)-7osha)
- [func overlaps(ClosedRange<Bound>) -> Bool](/documentation/swift/range/overlaps(_:)-9fkb2)

##### Manipulating Indices

- [func hash(into: inout Hasher)](/documentation/swift/range/hash(into:))

##### Describing a Range

- [var description: String](/documentation/swift/range/description)
- [var debugDescription: String](/documentation/swift/range/debugdescription)
- [var customMirror: Mirror](/documentation/swift/range/custommirror)

##### Encoding and Decoding a Range

- [func encode(to: any Encoder) throws](/documentation/swift/range/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/range/init(from:))

##### Infrequently Used Functionality

- [init(uncheckedBounds: (lower: Bound, upper: Bound))](/documentation/swift/range/init(uncheckedbounds:))
- [var hashValue: Int](/documentation/swift/range/hashvalue)

##### Initializers

- [init(Range<Bound>)](/documentation/swift/range/init(_:)-35b1j)
- [init(ClosedRange<Bound>)](/documentation/swift/range/init(_:)-79g1a)
- [init?<S>(NSRange, in: S)](/documentation/swift/range/init(_:in:)-24465)
- [init?<R, S>(R, in: S)](/documentation/swift/range/init(_:in:)-612lr)
- [init?<R, S>(R, in: S)](/documentation/swift/range/init(_:in:)-75xo3)
- [init?<S>(AttributedString.MarkdownSourcePosition, in: S)](/documentation/swift/range/init(_:in:)-9vre5)

##### Instance Methods

- [func contains(Range<Bound>) -> Bool](/documentation/swift/range/contains(_:)-4xxju)
- [func contains(ClosedRange<Bound>) -> Bool](/documentation/swift/range/contains(_:)-680jp)
- [func contains(Bound) -> Bool](/documentation/swift/range/contains(_:)-76nb4)
- [func formatted() -> String](/documentation/swift/range/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/range/formatted(_:))
- [func formatted(date: Date.IntervalFormatStyle.DateStyle, time: Date.IntervalFormatStyle.TimeStyle) -> String](/documentation/swift/range/formatted(date:time:))
- [func isValid(within: some AttributedStringProtocol) -> Bool](/documentation/swift/range/isvalid(within:)-2fba2)
- [func isValid(within: DiscontiguousAttributedSubstring) -> Bool](/documentation/swift/range/isvalid(within:)-8h4h8)

##### Type Methods

- [static func upToNextMajor(from: Version) -> Range<Bound>](/documentation/swift/range/uptonextmajor(from:))
- [static func upToNextMinor(from: Version) -> Range<Bound>](/documentation/swift/range/uptonextminor(from:))

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/range/bidirectionalcollection-implementations)

###### Instance Methods

- [func index(before: Range<Bound>.Index) -> Range<Bound>.Index](/documentation/swift/range/index(before:))
- [Collection Implementations](/documentation/swift/range/collection-implementations)

###### Instance Properties

- [var endIndex: Range<Bound>.Index](/documentation/swift/range/endindex)
- [var indices: Range<Bound>.Indices](/documentation/swift/range/indices-swift.property)
- [var startIndex: Range<Bound>.Index](/documentation/swift/range/startindex)

###### Instance Methods

- [func distance(from: Range<Bound>.Index, to: Range<Bound>.Index) -> Int](/documentation/swift/range/distance(from:to:))
- [func index(Range<Bound>.Index, offsetBy: Int) -> Range<Bound>.Index](/documentation/swift/range/index(_:offsetby:))
- [func index(after: Range<Bound>.Index) -> Range<Bound>.Index](/documentation/swift/range/index(after:))

###### Subscripts

- [subscript(Range<Range<Bound>.Index>) -> Range<Bound>](/documentation/swift/range/subscript(_:)-358vm)
- [subscript(Range<Bound>.Index) -> Range<Bound>.Element](/documentation/swift/range/subscript(_:)-84ykx)

###### Type Aliases

- [Range.Index](/documentation/swift/range/index)
- [Range.Indices](/documentation/swift/range/indices-swift.typealias)
- [Range.SubSequence](/documentation/swift/range/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/range/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/range/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/range/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/range/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/range/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/range/description)
- [Decodable Implementations](/documentation/swift/range/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/range/init(from:))
- [Encodable Implementations](/documentation/swift/range/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/range/encode(to:))
- [Equatable Implementations](/documentation/swift/range/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/range/!=(_:_:))
- [static func == (Range<Bound>, Range<Bound>) -> Bool](/documentation/swift/range/==(_:_:))
- [Hashable Implementations](/documentation/swift/range/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/range/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/range/hash(into:))
- [RangeExpression Implementations](/documentation/swift/range/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/range/~=(_:_:))

###### Instance Methods

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/range/relative(to:))
- [Sequence Implementations](/documentation/swift/range/sequence-implementations)

###### Type Aliases

- [Range.Element](/documentation/swift/range/element)
- [Range.Iterator](/documentation/swift/range/iterator)
- [ClosedRange](/documentation/swift/closedrange)

##### Creating a Range

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/comparable/'...(_:_:))

##### Converting Ranges

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/closedrange/relative(to:))

##### Inspecting a Range

- [var isEmpty: Bool](/documentation/swift/closedrange/isempty)
- [let lowerBound: Bound](/documentation/swift/closedrange/lowerbound)
- [let upperBound: Bound](/documentation/swift/closedrange/upperbound)

##### Checking for Containment

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/closedrange/~=(_:_:))

##### Clamping a Range

- [func clamped(to: ClosedRange<Bound>) -> ClosedRange<Bound>](/documentation/swift/closedrange/clamped(to:))

##### Comparing Ranges

- [static func == (ClosedRange<Bound>, ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/!=(_:_:))
- [func overlaps(Range<Bound>) -> Bool](/documentation/swift/closedrange/overlaps(_:)-947dt)
- [func overlaps(ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/overlaps(_:)-7dfep)

##### Manipulating Indices

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/hash(into:))

##### Describing a Range

- [var description: String](/documentation/swift/closedrange/description)
- [var debugDescription: String](/documentation/swift/closedrange/debugdescription)
- [var customMirror: Mirror](/documentation/swift/closedrange/custommirror)

##### Encoding and Decoding a Range

- [func encode(to: any Encoder) throws](/documentation/swift/closedrange/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/closedrange/init(from:))

##### Infrequently Used Functionality

- [init(uncheckedBounds: (lower: Bound, upper: Bound))](/documentation/swift/closedrange/init(uncheckedbounds:))
- [var hashValue: Int](/documentation/swift/closedrange/hashvalue)

##### Initializers

- [init(Range<Bound>)](/documentation/swift/closedrange/init(_:)-er19)
- [init(ClosedRange<Bound>)](/documentation/swift/closedrange/init(_:)-rhzn)

##### Instance Methods

- [func contains(Range<Bound>) -> Bool](/documentation/swift/closedrange/contains(_:)-29358)
- [func contains(ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/contains(_:)-822cl)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/closedrange/bidirectionalcollection-implementations)

###### Instance Methods

- [func index(before: ClosedRange<Bound>.Index) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(before:))
- [Collection Implementations](/documentation/swift/closedrange/collection-implementations)

###### Instance Properties

- [var endIndex: ClosedRange<Bound>.Index](/documentation/swift/closedrange/endindex)
- [var isEmpty: Bool](/documentation/swift/closedrange/isempty)
- [var startIndex: ClosedRange<Bound>.Index](/documentation/swift/closedrange/startindex)

###### Instance Methods

- [func distance(from: ClosedRange<Bound>.Index, to: ClosedRange<Bound>.Index) -> Int](/documentation/swift/closedrange/distance(from:to:))
- [func index(ClosedRange<Bound>.Index, offsetBy: Int) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(_:offsetby:))
- [func index(after: ClosedRange<Bound>.Index) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(after:))

###### Subscripts

- [subscript(ClosedRange<Bound>.Index) -> Bound](/documentation/swift/closedrange/subscript(_:)-60m0l)
- [subscript(Range<ClosedRange<Bound>.Index>) -> Slice<ClosedRange<Bound>>](/documentation/swift/closedrange/subscript(_:)-vph6)

###### Type Aliases

- [ClosedRange.Indices](/documentation/swift/closedrange/indices)
- [ClosedRange.SubSequence](/documentation/swift/closedrange/subsequence)

###### Enumerations

- [ClosedRange.Index](/documentation/swift/closedrange/index)

###### Enumeration Cases

- [case inRange(Bound)](/documentation/swift/closedrange/index/inrange(_:))
- [case pastEnd](/documentation/swift/closedrange/index/pastend)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/closedrange/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/closedrange/index/'...(_:)-5e4wo)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/closedrange/index/'...(_:)-63ber)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/closedrange/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/closedrange/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/closedrange/index/'.._(_:_:))
- [static func < (ClosedRange<Bound>.Index, ClosedRange<Bound>.Index) -> Bool](/documentation/swift/closedrange/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/closedrange/index/_(_:_:)-1fc79)
- [static func >= (Self, Self) -> Bool](/documentation/swift/closedrange/index/_=(_:_:)-52920)
- [static func <= (Self, Self) -> Bool](/documentation/swift/closedrange/index/_=(_:_:)-divd)
- [Equatable Implementations](/documentation/swift/closedrange/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/index/!=(_:_:))
- [static func == (ClosedRange<Bound>.Index, ClosedRange<Bound>.Index) -> Bool](/documentation/swift/closedrange/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/closedrange/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/closedrange/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/index/hash(into:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/closedrange/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/closedrange/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/closedrange/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/closedrange/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/closedrange/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/closedrange/description)
- [Decodable Implementations](/documentation/swift/closedrange/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/closedrange/init(from:))
- [Encodable Implementations](/documentation/swift/closedrange/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/closedrange/encode(to:))
- [Equatable Implementations](/documentation/swift/closedrange/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/!=(_:_:))
- [static func == (ClosedRange<Bound>, ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/==(_:_:))
- [Hashable Implementations](/documentation/swift/closedrange/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/closedrange/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/hash(into:))
- [RangeExpression Implementations](/documentation/swift/closedrange/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/closedrange/~=(_:_:))

###### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/closedrange/contains(_:)-9hh5n)
- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/closedrange/relative(to:))
- [Sequence Implementations](/documentation/swift/closedrange/sequence-implementations)

###### Type Aliases

- [ClosedRange.Element](/documentation/swift/closedrange/element)
- [ClosedRange.Iterator](/documentation/swift/closedrange/iterator)

#### Errors

- [Error](/documentation/swift/error)

##### Describing an Error

- [var localizedDescription: String](/documentation/swift/error/localizeddescription)
- [Result](/documentation/swift/result)

##### Representing a Result

- [case success(Success)](/documentation/swift/result/success(_:))
- [case failure(Failure)](/documentation/swift/result/failure(_:))
- [Writing Failable Asynchronous APIs](/documentation/swift/writing-failable-asynchronous-apis)

##### Converting a Throwing Expression to a Result

- [Preserving the Results of a Throwing Expression](/documentation/swift/preserving-the-results-of-a-throwing-expression)
- [init(catching: () throws(Failure) -> Success)](/documentation/swift/result/init(catching:))

##### Converting a Result to a Throwing Expression

- [func get() throws(Failure) -> Success](/documentation/swift/result/get())

##### Transforming a Result

- [func map<NewSuccess>((Success) -> NewSuccess) -> Result<NewSuccess, Failure>](/documentation/swift/result/map(_:))
- [func mapError<NewFailure>((Failure) -> NewFailure) -> Result<Success, NewFailure>](/documentation/swift/result/maperror(_:))
- [func flatMap<NewSuccess>((Success) -> Result<NewSuccess, Failure>) -> Result<NewSuccess, Failure>](/documentation/swift/result/flatmap(_:))
- [func flatMapError<NewFailure>((Failure) -> Result<Success, NewFailure>) -> Result<Success, NewFailure>](/documentation/swift/result/flatmaperror(_:))

##### Comparing Results

- [static func == (Result<Success, Failure>, Result<Success, Failure>) -> Bool](/documentation/swift/result/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/result/!=(_:_:))

##### Publishing a Result

- [var publisher: Result<Success, Failure>.Publisher](/documentation/swift/result/publisher-swift.property)
- [Result.Publisher](/documentation/swift/result/publisher-swift.struct)

###### Creating a Result Publisher

- [init(Result<Result<Success, Failure>.Publisher.Output, Failure>)](/documentation/swift/result/publisher-swift.struct/init(_:)-516t)
- [init(Failure)](/documentation/swift/result/publisher-swift.struct/init(_:)-69fv4)
- [init(Result<Success, Failure>.Publisher.Output)](/documentation/swift/result/publisher-swift.struct/init(_:)-7t2tt)

###### Inspecting Publisher Properties

- [let result: Result<Result<Success, Failure>.Publisher.Output, Failure>](/documentation/swift/result/publisher-swift.struct/result)

###### Instance Methods

- [func allSatisfy((Result<Success, Failure>.Publisher.Output) -> Bool) -> Result<Bool, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/allsatisfy(_:))
- [func collect() -> Result<[Result<Success, Failure>.Publisher.Output], Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/collect())
- [func contains(Result<Success, Failure>.Publisher.Output) -> Result<Bool, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/contains(_:))
- [func contains(where: (Result<Success, Failure>.Publisher.Output) -> Bool) -> Result<Bool, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/contains(where:))
- [func count() -> Result<Int, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/count())
- [func first() -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/first())
- [func ignoreOutput() -> Empty<Result<Success, Failure>.Publisher.Output, Failure>](/documentation/swift/result/publisher-swift.struct/ignoreoutput())
- [func last() -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/last())
- [func map<T>((Result<Success, Failure>.Publisher.Output) -> T) -> Result<T, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/map(_:))
- [func mapError<E>((Failure) -> E) -> Result<Result<Success, Failure>.Publisher.Output, E>.Publisher](/documentation/swift/result/publisher-swift.struct/maperror(_:))
- [func max() -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/max())
- [func max(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/max(by:))
- [func min() -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/min())
- [func min(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/min(by:))
- [func reduce<T>(T, (T, Result<Success, Failure>.Publisher.Output) -> T) -> Result<T, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/reduce(_:_:))
- [func removeDuplicates() -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/removeduplicates())
- [func removeDuplicates(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/removeduplicates(by:))
- [func replaceEmpty(with: Result<Success, Failure>.Publisher.Output) -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/replaceempty(with:))
- [func replaceError(with: Result<Success, Failure>.Publisher.Output) -> Result<Result<Success, Failure>.Publisher.Output, Never>.Publisher](/documentation/swift/result/publisher-swift.struct/replaceerror(with:))
- [func retry(Int) -> Result<Result<Success, Failure>.Publisher.Output, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/retry(_:))
- [func scan<T>(T, (T, Result<Success, Failure>.Publisher.Output) -> T) -> Result<T, Failure>.Publisher](/documentation/swift/result/publisher-swift.struct/scan(_:_:))
- [func setFailureType<E>(to: E.Type) -> Result<Result<Success, Failure>.Publisher.Output, E>.Publisher](/documentation/swift/result/publisher-swift.struct/setfailuretype(to:))
- [func tryAllSatisfy((Result<Success, Failure>.Publisher.Output) throws -> Bool) -> Result<Bool, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/tryallsatisfy(_:))
- [func tryContains(where: (Result<Success, Failure>.Publisher.Output) throws -> Bool) -> Result<Bool, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/trycontains(where:))
- [func tryMap<T>((Result<Success, Failure>.Publisher.Output) throws -> T) -> Result<T, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/trymap(_:))
- [func tryMax(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) throws -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/trymax(by:))
- [func tryMin(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) throws -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/trymin(by:))
- [func tryReduce<T>(T, (T, Result<Success, Failure>.Publisher.Output) throws -> T) -> Result<T, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/tryreduce(_:_:))
- [func tryRemoveDuplicates(by: (Result<Success, Failure>.Publisher.Output, Result<Success, Failure>.Publisher.Output) throws -> Bool) -> Result<Result<Success, Failure>.Publisher.Output, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/tryremoveduplicates(by:))
- [func tryScan<T>(T, (T, Result<Success, Failure>.Publisher.Output) throws -> T) -> Result<T, any Error>.Publisher](/documentation/swift/result/publisher-swift.struct/tryscan(_:_:))

##### Default Implementations

- [Equatable Implementations](/documentation/swift/result/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/result/!=(_:_:))
- [static func == (Result<Success, Failure>, Result<Success, Failure>) -> Bool](/documentation/swift/result/==(_:_:))
- [Hashable Implementations](/documentation/swift/result/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/result/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/result/hash(into:))

#### Optionals

- [Optional](/documentation/swift/optional)

##### Creating an Optional Value

- [case some(Wrapped)](/documentation/swift/optional/some(_:))

##### Creating a Nil Value

- [case none](/documentation/swift/optional/none)
- [init(nilLiteral: ())](/documentation/swift/optional/init(nilliteral:))

##### Transforming an Optional Value

- [func map<E, U>((Wrapped) throws(E) -> U) throws(E) -> U?](/documentation/swift/optional/map(_:))
- [func flatMap<E, U>((Wrapped) throws(E) -> U?) throws(E) -> U?](/documentation/swift/optional/flatmap(_:))

##### Coalescing Nil Values

- [func ?? <T>(consuming T?, @autoclosure () throws -> T) rethrows -> T](/documentation/swift/__(_:_:)-9xjze)
- [func ?? <T>(consuming T?, @autoclosure () throws -> T?) rethrows -> T?](/documentation/swift/__(_:_:)-1fjjj)

##### Comparing Optional Values

- [static func ~= (_OptionalNilComparisonType, borrowing Wrapped?) -> Bool](/documentation/swift/optional/~=(_:_:))

##### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/optional/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/optional/init(from:))

##### Inspecting an Optional

- [func hash(into: inout Hasher)](/documentation/swift/optional/hash(into:))
- [var unsafelyUnwrapped: Wrapped](/documentation/swift/optional/unsafelyunwrapped)
- [var debugDescription: String](/documentation/swift/optional/debugdescription)
- [var customMirror: Mirror](/documentation/swift/optional/custommirror)

##### Publishing an Optional

- [var publisher: Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.property)
- [Optional.Publisher](/documentation/swift/optional/publisher-swift.struct)

###### Declaring Publisher Topography

- [Optional.Publisher.Output](/documentation/swift/optional/publisher-swift.struct/output-swift.typealias)
- [Optional.Publisher.Failure](/documentation/swift/optional/publisher-swift.struct/failure)

###### Creating an Optional Publisher

- [init(Optional<Wrapped>.Publisher.Output?)](/documentation/swift/optional/publisher-swift.struct/init(_:))

###### Inpsecting Publisher Properties

- [let output: Optional<Wrapped>.Publisher.Output?](/documentation/swift/optional/publisher-swift.struct/output-swift.property)

###### Working with Subscribers

- [func receive<S>(subscriber: S)](/documentation/swift/optional/publisher-swift.struct/receive(subscriber:))

###### Instance Methods

- [func allSatisfy((Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Bool>.Publisher](/documentation/swift/optional/publisher-swift.struct/allsatisfy(_:))
- [func collect() -> Optional<[Optional<Wrapped>.Publisher.Output]>.Publisher](/documentation/swift/optional/publisher-swift.struct/collect())
- [func compactMap<T>((Optional<Wrapped>.Publisher.Output) -> T?) -> Optional<T>.Publisher](/documentation/swift/optional/publisher-swift.struct/compactmap(_:))
- [func contains(Optional<Wrapped>.Publisher.Output) -> Optional<Bool>.Publisher](/documentation/swift/optional/publisher-swift.struct/contains(_:))
- [func contains(where: (Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Bool>.Publisher](/documentation/swift/optional/publisher-swift.struct/contains(where:))
- [func count() -> Optional<Int>.Publisher](/documentation/swift/optional/publisher-swift.struct/count())
- [func drop(while: (Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/drop(while:))
- [func dropFirst(Int) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/dropfirst(_:))
- [func filter((Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/filter(_:))
- [func first() -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/first())
- [func first(where: (Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/first(where:))
- [func ignoreOutput() -> Empty<Optional<Wrapped>.Publisher.Output, Optional<Wrapped>.Publisher.Failure>](/documentation/swift/optional/publisher-swift.struct/ignoreoutput())
- [func last() -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/last())
- [func last(where: (Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/last(where:))
- [func map<T>((Optional<Wrapped>.Publisher.Output) -> T) -> Optional<T>.Publisher](/documentation/swift/optional/publisher-swift.struct/map(_:))
- [func max() -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/max())
- [func max(by: (Optional<Wrapped>.Publisher.Output, Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/max(by:))
- [func min() -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/min())
- [func min(by: (Optional<Wrapped>.Publisher.Output, Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/min(by:))
- [func output(at: Int) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/output(at:))
- [func output<R>(in: R) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/output(in:))
- [func prefix(Int) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/prefix(_:))
- [func prefix(while: (Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/prefix(while:))
- [func reduce<T>(T, (T, Optional<Wrapped>.Publisher.Output) -> T) -> Optional<T>.Publisher](/documentation/swift/optional/publisher-swift.struct/reduce(_:_:))
- [func removeDuplicates() -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/removeduplicates())
- [func removeDuplicates(by: (Optional<Wrapped>.Publisher.Output, Optional<Wrapped>.Publisher.Output) -> Bool) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/removeduplicates(by:))
- [func replaceEmpty(with: Optional<Wrapped>.Publisher.Output) -> Just<Wrapped>](/documentation/swift/optional/publisher-swift.struct/replaceempty(with:))
- [func replaceError(with: Optional<Wrapped>.Publisher.Output) -> Optional<Optional<Wrapped>.Publisher.Output>.Publisher](/documentation/swift/optional/publisher-swift.struct/replaceerror(with:))
- [func retry(Int) -> Optional<Wrapped>.Publisher](/documentation/swift/optional/publisher-swift.struct/retry(_:))
- [func scan<T>(T, (T, Optional<Wrapped>.Publisher.Output) -> T) -> Optional<T>.Publisher](/documentation/swift/optional/publisher-swift.struct/scan(_:_:))

##### Deprecated

- [var hashValue: Int](/documentation/swift/optional/hashvalue)

##### Operators

- [static func != (_OptionalNilComparisonType, borrowing Wrapped?) -> Bool](/documentation/swift/optional/!=(_:_:)-6y4t6)
- [static func != (borrowing Wrapped?, _OptionalNilComparisonType) -> Bool](/documentation/swift/optional/!=(_:_:)-9e46a)
- [static func == (_OptionalNilComparisonType, borrowing Wrapped?) -> Bool](/documentation/swift/optional/==(_:_:)-1j2c8)
- [static func == (borrowing Wrapped?, _OptionalNilComparisonType) -> Bool](/documentation/swift/optional/==(_:_:)-2tyup)

##### Initializers

- [init(consuming Wrapped)](/documentation/swift/optional/init(_:)-1j774)
- [init(consuming Wrapped)](/documentation/swift/optional/init(_:)-46x3s)

##### Instance Methods

- [func take() -> Optional<Wrapped>](/documentation/swift/optional/take())

##### Type Aliases

- [Optional.Body](/documentation/swift/optional/body)
- [Optional.PartiallyGenerated](/documentation/swift/optional/partiallygenerated)
- [Optional.Specification](/documentation/swift/optional/specification)
- [Optional.TableRowBody](/documentation/swift/optional/tablerowbody)
- [Optional.TicksCollection](/documentation/swift/optional/tickscollection)
- [Optional.UnwrappedType](/documentation/swift/optional/unwrappedtype)
- [Optional.ValueType](/documentation/swift/optional/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: Wrapped.UnwrappedType.Specification](/documentation/swift/optional/defaultresolverspecification)

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/optional/atomicrepresentable-implementations)

###### Type Aliases

- [Optional.AtomicRepresentation](/documentation/swift/optional/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Optional<Wrapped>.AtomicRepresentation) -> Wrapped?](/documentation/swift/optional/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Wrapped?) -> Optional<Wrapped>.AtomicRepresentation](/documentation/swift/optional/encodeatomicrepresentation(_:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/optional/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/optional/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/optional/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/optional/custommirror)
- [Decodable Implementations](/documentation/swift/optional/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/optional/init(from:))
- [Encodable Implementations](/documentation/swift/optional/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/optional/encode(to:))
- [Equatable Implementations](/documentation/swift/optional/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/optional/!=(_:_:)-1bazb)
- [static func == (Wrapped?, Wrapped?) -> Bool](/documentation/swift/optional/==(_:_:)-m6x)
- [ExpressibleByNilLiteral Implementations](/documentation/swift/optional/expressiblebynilliteral-implementations)

###### Initializers

- [init(nilLiteral: ())](/documentation/swift/optional/init(nilliteral:))
- [Hashable Implementations](/documentation/swift/optional/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/optional/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/optional/hash(into:))

#### Advanced Numerics

- [Numeric Protocols](/documentation/swift/numeric-protocols)

##### Basic Arithmetic

- [AdditiveArithmetic](/documentation/swift/additivearithmetic)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/additivearithmetic/+(_:))
- [static func + (Self, Self) -> Self](/documentation/swift/additivearithmetic/+(_:_:))
- [static func += (inout Self, Self)](/documentation/swift/additivearithmetic/+=(_:_:))

###### AdditiveArithmetic Implementations

- [static func += (inout Self, Self)](/documentation/swift/additivearithmetic/+=(_:_:)-qjxp)
- [static func - (Self, Self) -> Self](/documentation/swift/additivearithmetic/-(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/additivearithmetic/-=(_:_:))

###### AdditiveArithmetic Implementations

- [static func -= (inout Self, Self)](/documentation/swift/additivearithmetic/-=(_:_:)-27vve)

###### Type Properties

- [static var zero: Self](/documentation/swift/additivearithmetic/zero)

###### AdditiveArithmetic Implementations

- [static var zero: Self](/documentation/swift/additivearithmetic/zero-7ss88)
- [Numeric](/documentation/swift/numeric)

###### Operators

- [static func * (Self, Self) -> Self](/documentation/swift/numeric/*(_:_:))
- [static func *= (inout Self, Self)](/documentation/swift/numeric/*=(_:_:))

###### Associated Types

- [Magnitude](/documentation/swift/numeric/magnitude-swift.associatedtype)

###### Initializers

- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:))

###### BinaryFloatingPoint Implementations

- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-6fobm)
- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-9lyid)

###### Numeric Implementations

- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-1dg3p)
- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-8briw)
- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-uz93)

###### Instance Properties

- [var magnitude: Self.Magnitude](/documentation/swift/numeric/magnitude-1v49u)

###### Numeric Implementations

- [var magnitude: Self](/documentation/swift/numeric/magnitude-5ma51)
- [SignedNumeric](/documentation/swift/signednumeric)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/signednumeric/-(_:))

###### SignedNumeric Implementations

- [static func - (Self) -> Self](/documentation/swift/signednumeric/-(_:)-2q7oc)

###### Instance Methods

- [func negate()](/documentation/swift/signednumeric/negate())

###### SignedNumeric Implementations

- [func negate()](/documentation/swift/signednumeric/negate()-4f1ov)
- [Strideable](/documentation/swift/strideable)

###### Getting an Offset Value

- [func advanced(by: Self.Stride) -> Self](/documentation/swift/strideable/advanced(by:))

###### Strideable Implementations

- [func advanced(by: Int) -> Self](/documentation/swift/strideable/advanced(by:)-9b2es)
- [static func + (Self, Self.Stride) -> Self](/documentation/swift/strideable/+(_:_:)-8m1px)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/strideable/+(_:_:)-94mlm)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/strideable/-(_:_:)-1kjns)
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/strideable/-(_:_:)-2mot7)

###### Comparing Values

- [func distance(to: Self) -> Self.Stride](/documentation/swift/strideable/distance(to:))

###### Strideable Implementations

- [func distance(to: Self) -> Int](/documentation/swift/strideable/distance(to:)-1mibk)

###### Operators

- [static func += (inout Self, Self.Stride)](/documentation/swift/strideable/+=(_:_:))
- [static func -= (inout Self, Self.Stride)](/documentation/swift/strideable/-=(_:_:))

###### Associated Types

- [Stride](/documentation/swift/strideable/stride)

##### Integer

- [BinaryInteger](/documentation/swift/binaryinteger)

###### Creating a Binary Integer

- [init()](/documentation/swift/binaryinteger/init())

###### Converting Integers

- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-8gmdl)

###### BinaryInteger Implementations

- [init?(String)](/documentation/swift/binaryinteger/init(_:)-3cx61)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-5yrn0)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-62cdc)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-6u4mr)

###### FixedWidthInteger Implementations

- [init?(Backtrace.Address)](/documentation/swift/fixedwidthinteger/init(_:))
- [init<T>(clamping: T)](/documentation/swift/binaryinteger/init(clamping:))

###### BinaryInteger Implementations

- [init<Other>(clamping: Other)](/documentation/swift/binaryinteger/init(clamping:)-6bply)
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/binaryinteger/init(truncatingifneeded:))

###### BinaryInteger Implementations

- [init<T>(truncatingIfNeeded: T)](/documentation/swift/binaryinteger/init(truncatingifneeded:)-54a40)

###### Converting Floating-Point Values

- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-2ln0u)

###### BinaryInteger Implementations

- [init?(String)](/documentation/swift/binaryinteger/init(_:)-3cx61)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-5yrn0)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-62cdc)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-6u4mr)

###### FixedWidthInteger Implementations

- [init?(Backtrace.Address)](/documentation/swift/fixedwidthinteger/init(_:))

###### Converting with No Loss of Precision

- [init?<T>(exactly: T)](/documentation/swift/binaryinteger/init(exactly:))

###### Numeric Implementations

- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-1dg3p)
- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-8briw)
- [init?<T>(exactly: T)](/documentation/swift/numeric/init(exactly:)-uz93)

###### Performing Calculations

- [Binary Integer Operators](/documentation/swift/binary-integer-operators)

###### Arithmetic

- [static func + (Self, Self) -> Self](/documentation/swift/binaryinteger/+(_:_:))
- [static func - (Self, Self) -> Self](/documentation/swift/binaryinteger/-(_:_:))
- [static func * (Self, Self) -> Self](/documentation/swift/binaryinteger/*(_:_:))
- [static func / (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-8zc6l)

###### Arithmetic with Assignment

- [static func += (inout Self, Self)](/documentation/swift/binaryinteger/+=(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/binaryinteger/-=(_:_:))
- [static func *= (inout Self, Self)](/documentation/swift/binaryinteger/*=(_:_:))
- [static func /= (inout Self, Self)](/documentation/swift/binaryinteger/_=(_:_:)-20xv1)

###### Bitwise Operations

- [static func & (Self, Self) -> Self](/documentation/swift/binaryinteger/&(_:_:))

###### BinaryInteger Implementations

- [static func & (Self, Self) -> Self](/documentation/swift/binaryinteger/&(_:_:)-685zl)
- [static func &= (inout Self, Self)](/documentation/swift/binaryinteger/&=(_:_:))
- [static func ~ (Self) -> Self](/documentation/swift/binaryinteger/~(_:))

###### BinaryInteger Implementations

- [static func ~ (Self) -> Self](/documentation/swift/binaryinteger/~(_:)-6mr7y)

###### Comparison

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/binaryinteger/!=(_:_:)-9ooa7)
- [static func != (Self, Self) -> Bool](/documentation/swift/binaryinteger/!=(_:_:)-4ljme)
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/binaryinteger/quotientandremainder(dividingby:))

###### BinaryInteger Implementations

- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/binaryinteger/quotientandremainder(dividingby:)-3pj1x)
- [func isMultiple(of: Self) -> Bool](/documentation/swift/binaryinteger/ismultiple(of:))

###### BinaryInteger Implementations

- [func isMultiple(of: Self) -> Bool](/documentation/swift/binaryinteger/ismultiple(of:)-3ings)
- [func isMultiple(of: Self) -> Bool](/documentation/swift/binaryinteger/ismultiple(of:)-8eqba)

###### Finding the Sign and Magnitude

- [func signum() -> Self](/documentation/swift/binaryinteger/signum())

###### BinaryInteger Implementations

- [func signum() -> Self](/documentation/swift/binaryinteger/signum()-1xj79)

###### Accessing Numeric Constants

- [static var isSigned: Bool](/documentation/swift/binaryinteger/issigned)

###### BinaryInteger Implementations

- [static var isSigned: Bool](/documentation/swift/binaryinteger/issigned-1e7u9)
- [static var isSigned: Bool](/documentation/swift/binaryinteger/issigned-9pdrm)

###### Working with Binary Representation

- [var bitWidth: Int](/documentation/swift/binaryinteger/bitwidth)

###### BinaryInteger Implementations

- [var bitWidth: Int](/documentation/swift/binaryinteger/bitwidth-57x70)
- [var trailingZeroBitCount: Int](/documentation/swift/binaryinteger/trailingzerobitcount)
- [var words: Self.Words](/documentation/swift/binaryinteger/words-swift.property)
- [Words](/documentation/swift/binaryinteger/words-swift.associatedtype)

###### Operators

- [static func % (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-30ngi)
- [static func ^ (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-3qw5d)

###### BinaryInteger Implementations

- [static func ^ (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-1nppt)
- [static func | (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-6qhsw)

###### BinaryInteger Implementations

- [static func | (Self, Self) -> Self](/documentation/swift/binaryinteger/_(_:_:)-3hhq)
- [static func ^= (inout Self, Self)](/documentation/swift/binaryinteger/_=(_:_:)-1fatv)
- [static func |= (inout Self, Self)](/documentation/swift/binaryinteger/_=(_:_:)-4vfmj)
- [static func %= (inout Self, Self)](/documentation/swift/binaryinteger/_=(_:_:)-79wgi)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/binaryinteger/__(_:_:)-28lmu)

###### BinaryInteger Implementations

- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/binaryinteger/__(_:_:)-570t7)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/binaryinteger/__(_:_:)-9f03g)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/binaryinteger/__(_:_:)-4vnij)

###### BinaryInteger Implementations

- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/binaryinteger/__(_:_:)-6ne6o)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/binaryinteger/__(_:_:)-7llmt)
- [static func >>= <RHS>(inout Self, RHS)](/documentation/swift/binaryinteger/__=(_:_:)-5lhky)

###### BinaryInteger Implementations

- [static func >>= <Other>(inout Self, Other)](/documentation/swift/binaryinteger/__=(_:_:)-9725q)
- [static func <<= <RHS>(inout Self, RHS)](/documentation/swift/binaryinteger/__=(_:_:)-9pzpp)

###### BinaryInteger Implementations

- [static func <<= <Other>(inout Self, Other)](/documentation/swift/binaryinteger/__=(_:_:)-6b58i)

###### Initializers

- [init(String, format: IntegerFormatStyle<Self>, lenient: Bool) throws](/documentation/swift/binaryinteger/init(_:format:lenient:)-2qv61)
- [init(String, format: IntegerFormatStyle<Self>.Currency, lenient: Bool) throws](/documentation/swift/binaryinteger/init(_:format:lenient:)-50z9r)
- [init(String, format: IntegerFormatStyle<Self>.Percent, lenient: Bool) throws](/documentation/swift/binaryinteger/init(_:format:lenient:)-86j1g)
- [init<S>(S.ParseInput, strategy: S) throws](/documentation/swift/binaryinteger/init(_:strategy:)-207i8)

###### Instance Methods

- [func formatted() -> String](/documentation/swift/binaryinteger/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/binaryinteger/formatted(_:)-4qd73)
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/binaryinteger/formatted(_:)-73k3e)

###### Default Implementations

- [BinaryInteger Implementations](/documentation/swift/binaryinteger/binaryinteger-implementations)

###### Initializers

- [init<S>(S.ParseInput, strategy: S) throws](/documentation/swift/binaryinteger/init(_:strategy:)-1jz6v)
- [Equatable Implementations](/documentation/swift/binaryinteger/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/binaryinteger/!=(_:_:)-4ljme)
- [FixedWidthInteger](/documentation/swift/fixedwidthinteger)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&*(_:_:))

###### FixedWidthInteger Implementations

- [static func &* (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&*(_:_:)-8uc7d)
- [static func &*= (inout Self, Self)](/documentation/swift/fixedwidthinteger/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/fixedwidthinteger/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/fixedwidthinteger/&-=(_:_:))
- [static func &>> (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-1sn91)

###### FixedWidthInteger Implementations

- [static func &>> (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-6o5at)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-9b5yu)
- [static func &<< (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-4j1s7)

###### FixedWidthInteger Implementations

- [static func &<< (Self, Self) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-1dnt)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/fixedwidthinteger/&__(_:_:)-6pggx)
- [static func &>>= (inout Self, Self)](/documentation/swift/fixedwidthinteger/&__=(_:_:)-2ffyd)

###### FixedWidthInteger Implementations

- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/fixedwidthinteger/&__=(_:_:)-k22q)
- [static func &<<= (inout Self, Self)](/documentation/swift/fixedwidthinteger/&__=(_:_:)-q186)

###### FixedWidthInteger Implementations

- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/fixedwidthinteger/&__=(_:_:)-5s3cx)

###### Initializers

- [init?<S>(S, radix: Int)](/documentation/swift/fixedwidthinteger/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/fixedwidthinteger/init(bigendian:))

###### FixedWidthInteger Implementations

- [init(bigEndian: Self)](/documentation/swift/fixedwidthinteger/init(bigendian:)-7m4au)
- [init(littleEndian: Self)](/documentation/swift/fixedwidthinteger/init(littleendian:))

###### FixedWidthInteger Implementations

- [init(littleEndian: Self)](/documentation/swift/fixedwidthinteger/init(littleendian:)-16nn4)

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/fixedwidthinteger/bigendian)

###### FixedWidthInteger Implementations

- [var bigEndian: Self](/documentation/swift/fixedwidthinteger/bigendian-3he9)
- [var byteSwapped: Self](/documentation/swift/fixedwidthinteger/byteswapped)
- [var leadingZeroBitCount: Int](/documentation/swift/fixedwidthinteger/leadingzerobitcount)
- [var littleEndian: Self](/documentation/swift/fixedwidthinteger/littleendian)

###### FixedWidthInteger Implementations

- [var littleEndian: Self](/documentation/swift/fixedwidthinteger/littleendian-13phi)
- [var nonzeroBitCount: Int](/documentation/swift/fixedwidthinteger/nonzerobitcount)

###### Instance Methods

- [func addingReportingOverflow(Self) -> (partialValue: Self, overflow: Bool)](/documentation/swift/fixedwidthinteger/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Self) -> (partialValue: Self, overflow: Bool)](/documentation/swift/fixedwidthinteger/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)](/documentation/swift/fixedwidthinteger/dividingfullwidth(_:))
- [func multipliedFullWidth(by: Self) -> (high: Self, low: Self.Magnitude)](/documentation/swift/fixedwidthinteger/multipliedfullwidth(by:))

###### FixedWidthInteger Implementations

- [func multipliedFullWidth(by: Self) -> (high: Self, low: Self.Magnitude)](/documentation/swift/fixedwidthinteger/multipliedfullwidth(by:)-3n598)
- [func multipliedReportingOverflow(by: Self) -> (partialValue: Self, overflow: Bool)](/documentation/swift/fixedwidthinteger/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Self) -> (partialValue: Self, overflow: Bool)](/documentation/swift/fixedwidthinteger/remainderreportingoverflow(dividingby:))
- [func subtractingReportingOverflow(Self) -> (partialValue: Self, overflow: Bool)](/documentation/swift/fixedwidthinteger/subtractingreportingoverflow(_:))

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/fixedwidthinteger/bitwidth)

###### BinaryInteger Implementations

- [var bitWidth: Int](/documentation/swift/binaryinteger/bitwidth-57x70)
- [static var max: Self](/documentation/swift/fixedwidthinteger/max)
- [static var min: Self](/documentation/swift/fixedwidthinteger/min)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/fixedwidthinteger/random(in:)-3uaq4)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/fixedwidthinteger/random(in:)-467fr)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/fixedwidthinteger/random(in:using:)-33n1n)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/fixedwidthinteger/random(in:using:)-4byak)
- [SignedInteger](/documentation/swift/signedinteger)

###### Instance Methods

- [func dividingFullWidth((high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)](/documentation/swift/signedinteger/dividingfullwidth(_:))

###### Type Properties

- [static var max: Self](/documentation/swift/signedinteger/max)
- [static var min: Self](/documentation/swift/signedinteger/min)
- [UnsignedInteger](/documentation/swift/unsignedinteger)

###### Instance Methods

- [func dividingFullWidth((high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)](/documentation/swift/unsignedinteger/dividingfullwidth(_:))

###### Type Properties

- [static var max: Self](/documentation/swift/unsignedinteger/max)
- [static var min: Self](/documentation/swift/unsignedinteger/min)

##### Floating Point

- [FloatingPoint](/documentation/swift/floatingpoint)

###### Operators

- [static func * (Self, Self) -> Self](/documentation/swift/floatingpoint/*(_:_:))
- [static func *= (inout Self, Self)](/documentation/swift/floatingpoint/*=(_:_:))
- [static func + (Self, Self) -> Self](/documentation/swift/floatingpoint/+(_:_:))
- [static func += (inout Self, Self)](/documentation/swift/floatingpoint/+=(_:_:))
- [static func - (Self) -> Self](/documentation/swift/floatingpoint/-(_:))
- [static func - (Self, Self) -> Self](/documentation/swift/floatingpoint/-(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/floatingpoint/-=(_:_:))
- [static func / (Self, Self) -> Self](/documentation/swift/floatingpoint/_(_:_:))
- [static func /= (inout Self, Self)](/documentation/swift/floatingpoint/_=(_:_:))

###### Associated Types

- [Exponent](/documentation/swift/floatingpoint/exponent-swift.associatedtype)

###### Initializers

- [init<Source>(Source)](/documentation/swift/floatingpoint/init(_:)-2f8bx)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)
- [init(Int)](/documentation/swift/floatingpoint/init(_:)-2xwlo)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)
- [init?<Source>(exactly: Source)](/documentation/swift/floatingpoint/init(exactly:))

###### BinaryFloatingPoint Implementations

- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-6fobm)
- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-9lyid)
- [init(sign: FloatingPointSign, exponent: Self.Exponent, significand: Self)](/documentation/swift/floatingpoint/init(sign:exponent:significand:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/floatingpoint/init(signof:magnitudeof:))

###### FloatingPoint Implementations

- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/floatingpoint/init(signof:magnitudeof:)-9n676)

###### Instance Properties

- [var exponent: Self.Exponent](/documentation/swift/floatingpoint/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/floatingpoint/floatingpointclass)

###### FloatingPoint Implementations

- [var floatingPointClass: FloatingPointClassification](/documentation/swift/floatingpoint/floatingpointclass-2cj4n)
- [var isCanonical: Bool](/documentation/swift/floatingpoint/iscanonical)
- [var isFinite: Bool](/documentation/swift/floatingpoint/isfinite)
- [var isInfinite: Bool](/documentation/swift/floatingpoint/isinfinite)
- [var isNaN: Bool](/documentation/swift/floatingpoint/isnan)
- [var isNormal: Bool](/documentation/swift/floatingpoint/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/floatingpoint/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/floatingpoint/issubnormal)
- [var isZero: Bool](/documentation/swift/floatingpoint/iszero)
- [var nextDown: Self](/documentation/swift/floatingpoint/nextdown)

###### FloatingPoint Implementations

- [var nextDown: Self](/documentation/swift/floatingpoint/nextdown-92vef)
- [var nextUp: Self](/documentation/swift/floatingpoint/nextup)
- [var sign: FloatingPointSign](/documentation/swift/floatingpoint/sign)
- [var significand: Self](/documentation/swift/floatingpoint/significand)
- [var ulp: Self](/documentation/swift/floatingpoint/ulp)

###### Instance Methods

- [func addProduct(Self, Self)](/documentation/swift/floatingpoint/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/floatingpoint/addingproduct(_:_:))

###### FloatingPoint Implementations

- [func addingProduct(Self, Self) -> Self](/documentation/swift/floatingpoint/addingproduct(_:_:)-81yl5)
- [func formRemainder(dividingBy: Self)](/documentation/swift/floatingpoint/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/floatingpoint/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Self)](/documentation/swift/floatingpoint/formtruncatingremainder(dividingby:))
- [func isEqual(to: Self) -> Bool](/documentation/swift/floatingpoint/isequal(to:))
- [func isLess(than: Self) -> Bool](/documentation/swift/floatingpoint/isless(than:))
- [func isLessThanOrEqualTo(Self) -> Bool](/documentation/swift/floatingpoint/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/floatingpoint/istotallyordered(beloworequalto:))

###### FloatingPoint Implementations

- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/floatingpoint/istotallyordered(beloworequalto:)-itx6)
- [func negate()](/documentation/swift/floatingpoint/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/floatingpoint/remainder(dividingby:))

###### FloatingPoint Implementations

- [func remainder(dividingBy: Self) -> Self](/documentation/swift/floatingpoint/remainder(dividingby:)-15z1e)
- [func round()](/documentation/swift/floatingpoint/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/floatingpoint/round(_:))
- [func rounded() -> Self](/documentation/swift/floatingpoint/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/floatingpoint/rounded(_:))

###### FloatingPoint Implementations

- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/floatingpoint/rounded(_:)-rkwb)
- [func squareRoot() -> Self](/documentation/swift/floatingpoint/squareroot())

###### FloatingPoint Implementations

- [func squareRoot() -> Self](/documentation/swift/floatingpoint/squareroot()-7bo35)
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/floatingpoint/truncatingremainder(dividingby:))

###### FloatingPoint Implementations

- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/floatingpoint/truncatingremainder(dividingby:)-6ay9c)

###### Type Properties

- [static var greatestFiniteMagnitude: Self](/documentation/swift/floatingpoint/greatestfinitemagnitude)
- [static var infinity: Self](/documentation/swift/floatingpoint/infinity)
- [static var leastNonzeroMagnitude: Self](/documentation/swift/floatingpoint/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Self](/documentation/swift/floatingpoint/leastnormalmagnitude)
- [static var nan: Self](/documentation/swift/floatingpoint/nan)
- [static var pi: Self](/documentation/swift/floatingpoint/pi)
- [static var radix: Int](/documentation/swift/floatingpoint/radix)

###### FloatingPoint Implementations

- [static var radix: Int](/documentation/swift/floatingpoint/radix-322z3)
- [static var signalingNaN: Self](/documentation/swift/floatingpoint/signalingnan)
- [static var ulpOfOne: Self](/documentation/swift/floatingpoint/ulpofone)

###### FloatingPoint Implementations

- [static var ulpOfOne: Self](/documentation/swift/floatingpoint/ulpofone-3j2pj)

###### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/floatingpoint/maximum(_:_:))

###### FloatingPoint Implementations

- [static func maximum(Self, Self) -> Self](/documentation/swift/floatingpoint/maximum(_:_:)-1dfa)
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/floatingpoint/maximummagnitude(_:_:))

###### FloatingPoint Implementations

- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/floatingpoint/maximummagnitude(_:_:)-1e1x7)
- [static func minimum(Self, Self) -> Self](/documentation/swift/floatingpoint/minimum(_:_:))

###### FloatingPoint Implementations

- [static func minimum(Self, Self) -> Self](/documentation/swift/floatingpoint/minimum(_:_:)-cb9c)
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/floatingpoint/minimummagnitude(_:_:))

###### FloatingPoint Implementations

- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/floatingpoint/minimummagnitude(_:_:)-8oqx4)
- [BinaryFloatingPoint](/documentation/swift/binaryfloatingpoint)

###### Converting Floating-Point Values

- [init(Float)](/documentation/swift/binaryfloatingpoint/init(_:)-57jx7)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)
- [init(Double)](/documentation/swift/binaryfloatingpoint/init(_:)-7ft14)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)
- [init(Float80)](/documentation/swift/binaryfloatingpoint/init(_:)-1nijh)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-shau)

###### BinaryFloatingPoint Implementations

- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-17tah)
- [init<Source>(Source)](/documentation/swift/binaryfloatingpoint/init(_:)-5p0og)

###### Converting with No Loss of Precision

- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:))

###### BinaryFloatingPoint Implementations

- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-6fobm)
- [init?<Source>(exactly: Source)](/documentation/swift/binaryfloatingpoint/init(exactly:)-9lyid)

###### Creating a Random Value

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/binaryfloatingpoint/random(in:)-2j16p)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/binaryfloatingpoint/random(in:)-8jkjb)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/binaryfloatingpoint/random(in:using:)-6pf7f)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/binaryfloatingpoint/random(in:using:)-2awm8)

###### Working with Binary Representation

- [var binade: Self](/documentation/swift/binaryfloatingpoint/binade)
- [var exponentBitPattern: Self.RawExponent](/documentation/swift/binaryfloatingpoint/exponentbitpattern)
- [var significandBitPattern: Self.RawSignificand](/documentation/swift/binaryfloatingpoint/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/binaryfloatingpoint/significandwidth)
- [static var exponentBitCount: Int](/documentation/swift/binaryfloatingpoint/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/binaryfloatingpoint/significandbitcount)
- [init(sign: FloatingPointSign, exponentBitPattern: Self.RawExponent, significandBitPattern: Self.RawSignificand)](/documentation/swift/binaryfloatingpoint/init(sign:exponentbitpattern:significandbitpattern:))
- [RawExponent](/documentation/swift/binaryfloatingpoint/rawexponent)
- [RawSignificand](/documentation/swift/binaryfloatingpoint/rawsignificand)

###### Initializers

- [init(String, format: FloatingPointFormatStyle<Self>.Percent, lenient: Bool) throws](/documentation/swift/binaryfloatingpoint/init(_:format:lenient:)-166j0)
- [init(String, format: FloatingPointFormatStyle<Self>.Currency, lenient: Bool) throws](/documentation/swift/binaryfloatingpoint/init(_:format:lenient:)-2b9qt)
- [init(String, format: FloatingPointFormatStyle<Self>, lenient: Bool) throws](/documentation/swift/binaryfloatingpoint/init(_:format:lenient:)-2p118)
- [init<S>(S.ParseInput, strategy: S) throws](/documentation/swift/binaryfloatingpoint/init(_:strategy:)-4vta0)

###### Instance Methods

- [func formatted() -> String](/documentation/swift/binaryfloatingpoint/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/binaryfloatingpoint/formatted(_:)-4ksqj)
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/binaryfloatingpoint/formatted(_:)-83x4n)

###### Default Implementations

- [BinaryFloatingPoint Implementations](/documentation/swift/binaryfloatingpoint/binaryfloatingpoint-implementations)

###### Initializers

- [init<S>(S.ParseInput, strategy: S) throws](/documentation/swift/binaryfloatingpoint/init(_:strategy:)-15mod)

##### Floating-Point Characteristics

- [FloatingPointClassification](/documentation/swift/floatingpointclassification)

###### Operators

- [static func == (FloatingPointClassification, FloatingPointClassification) -> Bool](/documentation/swift/floatingpointclassification/==(_:_:))

###### Enumeration Cases

- [case negativeInfinity](/documentation/swift/floatingpointclassification/negativeinfinity)
- [case negativeNormal](/documentation/swift/floatingpointclassification/negativenormal)
- [case negativeSubnormal](/documentation/swift/floatingpointclassification/negativesubnormal)
- [case negativeZero](/documentation/swift/floatingpointclassification/negativezero)
- [case positiveInfinity](/documentation/swift/floatingpointclassification/positiveinfinity)
- [case positiveNormal](/documentation/swift/floatingpointclassification/positivenormal)
- [case positiveSubnormal](/documentation/swift/floatingpointclassification/positivesubnormal)
- [case positiveZero](/documentation/swift/floatingpointclassification/positivezero)
- [case quietNaN](/documentation/swift/floatingpointclassification/quietnan)
- [case signalingNaN](/documentation/swift/floatingpointclassification/signalingnan)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/floatingpointclassification/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/floatingpointclassification/hash(into:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/floatingpointclassification/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/floatingpointclassification/!=(_:_:))
- [FloatingPointRoundingRule](/documentation/swift/floatingpointroundingrule)

###### Operators

- [static func == (FloatingPointRoundingRule, FloatingPointRoundingRule) -> Bool](/documentation/swift/floatingpointroundingrule/==(_:_:))

###### Enumeration Cases

- [case awayFromZero](/documentation/swift/floatingpointroundingrule/awayfromzero)
- [case down](/documentation/swift/floatingpointroundingrule/down)
- [case toNearestOrAwayFromZero](/documentation/swift/floatingpointroundingrule/tonearestorawayfromzero)
- [case toNearestOrEven](/documentation/swift/floatingpointroundingrule/tonearestoreven)
- [case towardZero](/documentation/swift/floatingpointroundingrule/towardzero)
- [case up](/documentation/swift/floatingpointroundingrule/up)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/floatingpointroundingrule/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/floatingpointroundingrule/hash(into:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/floatingpointroundingrule/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/floatingpointroundingrule/!=(_:_:))
- [FloatingPointSign](/documentation/swift/floatingpointsign)

###### Operators

- [static func == (FloatingPointSign, FloatingPointSign) -> Bool](/documentation/swift/floatingpointsign/==(_:_:))

###### Enumeration Cases

- [case minus](/documentation/swift/floatingpointsign/minus)
- [case plus](/documentation/swift/floatingpointsign/plus)

###### Initializers

- [init?(rawValue: Int)](/documentation/swift/floatingpointsign/init(rawvalue:))

###### Instance Properties

- [var hashValue: Int](/documentation/swift/floatingpointsign/hashvalue)
- [var rawValue: Int](/documentation/swift/floatingpointsign/rawvalue-swift.property)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/floatingpointsign/hash(into:))

###### Type Aliases

- [FloatingPointSign.RawValue](/documentation/swift/floatingpointsign/rawvalue-swift.typealias)

###### Default Implementations

- [Equatable Implementations](/documentation/swift/floatingpointsign/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/floatingpointsign/!=(_:_:))
- [Special-Use Numeric Types](/documentation/swift/special-use-numeric-types)

##### Unsigned Integers

- [UInt](/documentation/swift/uint)

###### Structures

- [UInt.Words](/documentation/swift/uint/words-swift.struct)

###### Initializers

- [init(UInt)](/documentation/swift/uint/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/uint/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint/words-swift.struct/endindex)
- [var indices: UInt.Words.Indices](/documentation/swift/uint/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/uint/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/uint/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt.Words.Element](/documentation/swift/uint/words-swift.struct/element)
- [UInt.Words.Index](/documentation/swift/uint/words-swift.struct/index)
- [UInt.Words.Indices](/documentation/swift/uint/words-swift.struct/indices-swift.typealias)
- [UInt.Words.Iterator](/documentation/swift/uint/words-swift.struct/iterator)
- [UInt.Words.SubSequence](/documentation/swift/uint/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/uint/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/uint/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint/words-swift.struct/map(_:)-2w7k9)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/uint/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/uint/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint/words-swift.struct/flatmap(_:)-7sppg)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint/words-swift.struct/flatmap(_:)-96vxu)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint/words-swift.struct/map(_:)-21vam)
- [func max() -> Self.Element?](/documentation/swift/uint/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (UInt, UInt) -> Bool](/documentation/swift/uint/!=(_:_:))
- [static func &= (inout UInt, UInt)](/documentation/swift/uint/&=(_:_:))
- [static func &<<= (inout UInt, UInt)](/documentation/swift/uint/&__=(_:_:)-5hags)
- [static func &>>= (inout UInt, UInt)](/documentation/swift/uint/&__=(_:_:)-69f19)
- [static func *= (inout UInt, UInt)](/documentation/swift/uint/*=(_:_:))
- [static func += (inout UInt, UInt)](/documentation/swift/uint/+=(_:_:))
- [static func -= (inout UInt, UInt)](/documentation/swift/uint/-=(_:_:))
- [static func == (UInt, UInt) -> Bool](/documentation/swift/uint/==(_:_:))
- [static func < (UInt, UInt) -> Bool](/documentation/swift/uint/_(_:_:)-9v225)
- [static func /= (inout UInt, UInt)](/documentation/swift/uint/_=(_:_:)-22lsj)
- [static func ^= (inout UInt, UInt)](/documentation/swift/uint/_=(_:_:)-2p0vs)
- [static func |= (inout UInt, UInt)](/documentation/swift/uint/_=(_:_:)-4bs9t)
- [static func %= (inout UInt, UInt)](/documentation/swift/uint/_=(_:_:)-85oek)

###### Initializers

- [init(Double)](/documentation/swift/uint/init(_:)-117g)
- [init(NSNumber)](/documentation/swift/uint/init(_:)-5lcnv)
- [init(Float80)](/documentation/swift/uint/init(_:)-7mzx8)
- [init(Float)](/documentation/swift/uint/init(_:)-8jtgk)
- [init(Float16)](/documentation/swift/uint/init(_:)-9lrzt)
- [init(CGFloat)](/documentation/swift/uint/init(_:)-jl4r)
- [init<P>(bitPattern: P?)](/documentation/swift/uint/init(bitpattern:)-3qf8b)
- [init(bitPattern: OpaquePointer?)](/documentation/swift/uint/init(bitpattern:)-7sd72)
- [init(bitPattern: Int)](/documentation/swift/uint/init(bitpattern:)-9qvv7)
- [init(bitPattern: ObjectIdentifier)](/documentation/swift/uint/init(bitpattern:)-gk5x)
- [init?(exactly: NSNumber)](/documentation/swift/uint/init(exactly:)-22ddn)
- [init?(exactly: Float80)](/documentation/swift/uint/init(exactly:)-8zm2w)
- [init?(exactly: Double)](/documentation/swift/uint/init(exactly:)-9cl5x)
- [init?(exactly: Float)](/documentation/swift/uint/init(exactly:)-9ve7w)
- [init?(exactly: Float16)](/documentation/swift/uint/init(exactly:)-wmyv)
- [init(truncating: NSNumber)](/documentation/swift/uint/init(truncating:))

###### Instance Properties

- [var byteSwapped: UInt](/documentation/swift/uint/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/uint/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/uint/leadingzerobitcount)
- [var nonzeroBitCount: Int](/documentation/swift/uint/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/uint/trailingzerobitcount)
- [var words: UInt.Words](/documentation/swift/uint/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(UInt) -> (partialValue: UInt, overflow: Bool)](/documentation/swift/uint/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt) -> (partialValue: UInt, overflow: Bool)](/documentation/swift/uint/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: UInt, low: UInt.Magnitude)) -> (quotient: UInt, remainder: UInt)](/documentation/swift/uint/dividingfullwidth(_:))
- [func multipliedFullWidth(by: UInt) -> (high: UInt, low: UInt.Magnitude)](/documentation/swift/uint/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt) -> (partialValue: UInt, overflow: Bool)](/documentation/swift/uint/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt) -> (partialValue: UInt, overflow: Bool)](/documentation/swift/uint/remainderreportingoverflow(dividingby:))
- [func signum() -> UInt](/documentation/swift/uint/signum())
- [func subtractingReportingOverflow(UInt) -> (partialValue: UInt, overflow: Bool)](/documentation/swift/uint/subtractingreportingoverflow(_:))

###### Type Aliases

- [UInt.IntegerLiteralType](/documentation/swift/uint/integerliteraltype)
- [UInt.Magnitude](/documentation/swift/uint/magnitude)
- [UInt.Stride](/documentation/swift/uint/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/uint/+=(_:_:)-5g9il)
- [static func -= (inout Self, Self)](/documentation/swift/uint/-=(_:_:)-2aqt7)

###### Type Properties

- [static var zero: Self](/documentation/swift/uint/zero)
- [AtomicRepresentable Implementations](/documentation/swift/uint/atomicrepresentable-implementations)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt.AtomicRepresentation) -> UInt](/documentation/swift/uint/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt) -> UInt.AtomicRepresentation](/documentation/swift/uint/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint/!=(_:_:)-4jpi0)
- [static func & (UInt, UInt) -> UInt](/documentation/swift/uint/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/uint/&(_:_:)-1gv93)
- [static func * (UInt, UInt) -> UInt](/documentation/swift/uint/*(_:_:))
- [static func + (UInt, UInt) -> UInt](/documentation/swift/uint/+(_:_:))
- [static func - (UInt, UInt) -> UInt](/documentation/swift/uint/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint/==(_:_:)-1zalq)
- [static func | (Self, Self) -> Self](/documentation/swift/uint/_(_:_:)-1e0ey)
- [static func / (UInt, UInt) -> UInt](/documentation/swift/uint/_(_:_:)-1w9sv)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint/_(_:_:)-2yuuu)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint/_(_:_:)-3r6zk)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint/_(_:_:)-4e53m)
- [static func % (UInt, UInt) -> UInt](/documentation/swift/uint/_(_:_:)-5hyxb)
- [static func | (UInt, UInt) -> UInt](/documentation/swift/uint/_(_:_:)-70g4r)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint/_(_:_:)-7d589)
- [static func ^ (UInt, UInt) -> UInt](/documentation/swift/uint/_(_:_:)-e9z4)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint/_=(_:_:)-6cfcm)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint/_=(_:_:)-7tms1)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint/_=(_:_:)-7v58u)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint/_=(_:_:)-yeqy)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint/__(_:_:)-2xfje)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint/__(_:_:)-60q9j)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint/__(_:_:)-635q0)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint/__(_:_:)-97tkd)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint/__=(_:_:)-66xfr)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint/__=(_:_:)-9p0cx)
- [static func ~ (Self) -> Self](/documentation/swift/uint/~(_:))

###### Initializers

- [init()](/documentation/swift/uint/init())
- [init<Other>(clamping: Other)](/documentation/swift/uint/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/uint/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint/'...(_:)-4mm5q)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint/'...(_:)-6ct6a)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/uint/_(_:_:)-24u4z)
- [static func > (UInt, UInt) -> Bool](/documentation/swift/uint/_(_:_:)-4iyb6)
- [static func < (Self, Self) -> Bool](/documentation/swift/uint/_(_:_:)-fe58)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint/_=(_:_:)-1ii4)
- [static func <= (UInt, UInt) -> Bool](/documentation/swift/uint/_=(_:_:)-5txp)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint/_=(_:_:)-8lyhk)
- [static func >= (UInt, UInt) -> Bool](/documentation/swift/uint/_=(_:_:)-9x0o8)
- [CustomReflectable Implementations](/documentation/swift/uint/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint/custommirror)
- [Decodable Implementations](/documentation/swift/uint/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint/init(from:))
- [Encodable Implementations](/documentation/swift/uint/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint/encode(to:))
- [Equatable Implementations](/documentation/swift/uint/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint/!=(_:_:)-1baz7)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint/!=(_:_:)-280fp)
- [static func == (Self, Self) -> Bool](/documentation/swift/uint/==(_:_:)-4wftu)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/uint/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint/&-=(_:_:))
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint/&__(_:_:)-2kxq1)
- [static func &<< (UInt, UInt) -> UInt](/documentation/swift/uint/&__(_:_:)-4xvpf)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint/&__(_:_:)-5zh57)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint/&__(_:_:)-76nen)
- [static func &>> (UInt, UInt) -> UInt](/documentation/swift/uint/&__(_:_:)-83cmc)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint/&__(_:_:)-vou2)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint/&__=(_:_:)-13mjf)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint/&__=(_:_:)-704vn)

###### Initializers

- [init?(String)](/documentation/swift/uint/init(_:)-2hmhy)
- [init<T>(T)](/documentation/swift/uint/init(_:)-6gt9n)
- [init?<S>(S, radix: Int)](/documentation/swift/uint/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint/init(exactly:)-7yhn2)
- [init(littleEndian: Self)](/documentation/swift/uint/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint/bigendian)
- [var littleEndian: Self](/documentation/swift/uint/littleendian)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint/random(in:)-8zzqt)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint/random(in:)-9mjpk)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint/random(in:using:)-3dwvw)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint/random(in:using:)-4lsb1)
- [Hashable Implementations](/documentation/swift/uint/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/uint/simdscalar-implementations)

###### Structures

- [UInt.SIMD16Storage](/documentation/swift/uint/simd16storage)

###### Initializers

- [init()](/documentation/swift/uint/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd16storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD16Storage.Scalar](/documentation/swift/uint/simd16storage/scalar)
- [UInt.SIMD2Storage](/documentation/swift/uint/simd2storage)

###### Initializers

- [init()](/documentation/swift/uint/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd2storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD2Storage.Scalar](/documentation/swift/uint/simd2storage/scalar)
- [UInt.SIMD32Storage](/documentation/swift/uint/simd32storage)

###### Initializers

- [init()](/documentation/swift/uint/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd32storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD32Storage.Scalar](/documentation/swift/uint/simd32storage/scalar)
- [UInt.SIMD4Storage](/documentation/swift/uint/simd4storage)

###### Initializers

- [init()](/documentation/swift/uint/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd4storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD4Storage.Scalar](/documentation/swift/uint/simd4storage/scalar)
- [UInt.SIMD64Storage](/documentation/swift/uint/simd64storage)

###### Initializers

- [init()](/documentation/swift/uint/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd64storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD64Storage.Scalar](/documentation/swift/uint/simd64storage/scalar)
- [UInt.SIMD8Storage](/documentation/swift/uint/simd8storage)

###### Initializers

- [init()](/documentation/swift/uint/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint/simd8storage/subscript(_:))

###### Type Aliases

- [UInt.SIMD8Storage.Scalar](/documentation/swift/uint/simd8storage/scalar)

###### Type Aliases

- [UInt.SIMDMaskScalar](/documentation/swift/uint/simdmaskscalar)
- [UnsignedInteger Implementations](/documentation/swift/uint/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint/init(_:)-2lidr)
- [init?<T>(exactly: T)](/documentation/swift/uint/init(exactly:)-568o1)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint/magnitude-swift.property)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint/issigned)
- [static var max: Self](/documentation/swift/uint/max)
- [static var min: Self](/documentation/swift/uint/min)
- [UInt8](/documentation/swift/uint8)

###### Structures

- [UInt8.Words](/documentation/swift/uint8/words-swift.struct)

###### Initializers

- [init(UInt8)](/documentation/swift/uint8/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/uint8/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint8/words-swift.struct/endindex)
- [var indices: UInt8.Words.Indices](/documentation/swift/uint8/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/uint8/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/uint8/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint8/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint8/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt8.Words.Element](/documentation/swift/uint8/words-swift.struct/element)
- [UInt8.Words.Index](/documentation/swift/uint8/words-swift.struct/index)
- [UInt8.Words.Indices](/documentation/swift/uint8/words-swift.struct/indices-swift.typealias)
- [UInt8.Words.Iterator](/documentation/swift/uint8/words-swift.struct/iterator)
- [UInt8.Words.SubSequence](/documentation/swift/uint8/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint8/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint8/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint8/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint8/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint8/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint8/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint8/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint8/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint8/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint8/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/uint8/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint8/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/uint8/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint8/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint8/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint8/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint8/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint8/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint8/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint8/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint8/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint8/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint8/words-swift.struct/map(_:)-8uu3w)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint8/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint8/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint8/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint8/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint8/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint8/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/uint8/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint8/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint8/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint8/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/uint8/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint8/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint8/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint8/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint8/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint8/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint8/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint8/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint8/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint8/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint8/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint8/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint8/words-swift.struct/flatmap(_:)-6lkmv)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint8/words-swift.struct/flatmap(_:)-7hnem)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint8/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint8/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint8/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint8/words-swift.struct/map(_:)-48kvf)
- [func max() -> Self.Element?](/documentation/swift/uint8/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint8/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint8/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint8/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint8/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint8/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint8/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint8/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint8/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint8/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint8/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint8/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint8/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (UInt8, UInt8) -> Bool](/documentation/swift/uint8/!=(_:_:))
- [static func &= (inout UInt8, UInt8)](/documentation/swift/uint8/&=(_:_:))
- [static func &>>= (inout UInt8, UInt8)](/documentation/swift/uint8/&__=(_:_:)-172l7)
- [static func &<<= (inout UInt8, UInt8)](/documentation/swift/uint8/&__=(_:_:)-5wuaw)
- [static func *= (inout UInt8, UInt8)](/documentation/swift/uint8/*=(_:_:))
- [static func += (inout UInt8, UInt8)](/documentation/swift/uint8/+=(_:_:))
- [static func -= (inout UInt8, UInt8)](/documentation/swift/uint8/-=(_:_:))
- [static func == (UInt8, UInt8) -> Bool](/documentation/swift/uint8/==(_:_:))
- [static func < (UInt8, UInt8) -> Bool](/documentation/swift/uint8/_(_:_:)-140g8)
- [static func %= (inout UInt8, UInt8)](/documentation/swift/uint8/_=(_:_:)-12hmo)
- [static func ^= (inout UInt8, UInt8)](/documentation/swift/uint8/_=(_:_:)-23lmz)
- [static func |= (inout UInt8, UInt8)](/documentation/swift/uint8/_=(_:_:)-56yu9)
- [static func /= (inout UInt8, UInt8)](/documentation/swift/uint8/_=(_:_:)-7a5f0)

###### Initializers

- [init(Float16)](/documentation/swift/uint8/init(_:)-4e13y)
- [init(Float80)](/documentation/swift/uint8/init(_:)-535b5)
- [init(CGFloat)](/documentation/swift/uint8/init(_:)-8f7wu)
- [init(Double)](/documentation/swift/uint8/init(_:)-8hqkq)
- [init(NSNumber)](/documentation/swift/uint8/init(_:)-ey6q)
- [init(Float)](/documentation/swift/uint8/init(_:)-qdzq)
- [init(ascii: Unicode.Scalar)](/documentation/swift/uint8/init(ascii:))
- [init(bitPattern: Int8)](/documentation/swift/uint8/init(bitpattern:))
- [init?(exactly: Double)](/documentation/swift/uint8/init(exactly:)-1ljfr)
- [init?(exactly: NSNumber)](/documentation/swift/uint8/init(exactly:)-3la4a)
- [init?(exactly: Float)](/documentation/swift/uint8/init(exactly:)-4mc0a)
- [init?(exactly: Float16)](/documentation/swift/uint8/init(exactly:)-7wsjq)
- [init?(exactly: Float80)](/documentation/swift/uint8/init(exactly:)-8rr3e)
- [init(truncating: NSNumber)](/documentation/swift/uint8/init(truncating:))

###### Instance Properties

- [var byteSwapped: UInt8](/documentation/swift/uint8/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/uint8/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/uint8/leadingzerobitcount)
- [var nonzeroBitCount: Int](/documentation/swift/uint8/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/uint8/trailingzerobitcount)
- [var words: UInt8.Words](/documentation/swift/uint8/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(UInt8) -> (partialValue: UInt8, overflow: Bool)](/documentation/swift/uint8/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt8) -> (partialValue: UInt8, overflow: Bool)](/documentation/swift/uint8/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: UInt8, low: UInt8.Magnitude)) -> (quotient: UInt8, remainder: UInt8)](/documentation/swift/uint8/dividingfullwidth(_:))
- [func multipliedFullWidth(by: UInt8) -> (high: UInt8, low: UInt8.Magnitude)](/documentation/swift/uint8/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt8) -> (partialValue: UInt8, overflow: Bool)](/documentation/swift/uint8/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt8) -> (partialValue: UInt8, overflow: Bool)](/documentation/swift/uint8/remainderreportingoverflow(dividingby:))
- [func signum() -> UInt8](/documentation/swift/uint8/signum())
- [func subtractingReportingOverflow(UInt8) -> (partialValue: UInt8, overflow: Bool)](/documentation/swift/uint8/subtractingreportingoverflow(_:))

###### Type Aliases

- [UInt8.IntegerLiteralType](/documentation/swift/uint8/integerliteraltype)
- [UInt8.Magnitude](/documentation/swift/uint8/magnitude)
- [UInt8.Stride](/documentation/swift/uint8/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint8/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint8/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint8/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/uint8/+=(_:_:)-4vs0u)
- [static func -= (inout Self, Self)](/documentation/swift/uint8/-=(_:_:)-45l1)

###### Type Properties

- [static var zero: Self](/documentation/swift/uint8/zero)
- [AtomicRepresentable Implementations](/documentation/swift/uint8/atomicrepresentable-implementations)

###### Type Aliases

- [UInt8.AtomicRepresentation](/documentation/swift/uint8/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt8.AtomicRepresentation) -> UInt8](/documentation/swift/uint8/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt8) -> UInt8.AtomicRepresentation](/documentation/swift/uint8/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint8/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint8/!=(_:_:)-99bok)
- [static func & (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/uint8/&(_:_:)-4psmt)
- [static func * (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/*(_:_:))
- [static func + (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/+(_:_:))
- [static func - (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint8/==(_:_:)-156b9)
- [static func | (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/_(_:_:)-17p9c)
- [static func ^ (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/_(_:_:)-2kgmz)
- [static func / (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/_(_:_:)-327b5)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint8/_(_:_:)-4eiav)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint8/_(_:_:)-5kmc9)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint8/_(_:_:)-6ieix)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint8/_(_:_:)-7nbqc)
- [static func | (Self, Self) -> Self](/documentation/swift/uint8/_(_:_:)-865lu)
- [static func % (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/_(_:_:)-9tmal)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint8/_=(_:_:)-6b690)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint8/_=(_:_:)-7efxq)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint8/_=(_:_:)-8oubr)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint8/_=(_:_:)-9rm29)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint8/__(_:_:)-2qqlb)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint8/__(_:_:)-56eg9)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint8/__(_:_:)-7yxgh)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint8/__(_:_:)-jtqk)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint8/__=(_:_:)-1p711)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint8/__=(_:_:)-8pj4c)
- [static func ~ (Self) -> Self](/documentation/swift/uint8/~(_:))

###### Initializers

- [init()](/documentation/swift/uint8/init())
- [init<Other>(clamping: Other)](/documentation/swift/uint8/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint8/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint8/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint8/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint8/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint8/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint8/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint8/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/uint8/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint8/'...(_:)-29jcj)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint8/'...(_:)-6irj6)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint8/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint8/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint8/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/uint8/_(_:_:)-5a3l3)
- [static func > (UInt8, UInt8) -> Bool](/documentation/swift/uint8/_(_:_:)-5fz9k)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint8/_(_:_:)-98y10)
- [static func >= (UInt8, UInt8) -> Bool](/documentation/swift/uint8/_=(_:_:)-469h1)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint8/_=(_:_:)-5i45a)
- [static func <= (UInt8, UInt8) -> Bool](/documentation/swift/uint8/_=(_:_:)-5nmsv)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint8/_=(_:_:)-6uljh)
- [CustomReflectable Implementations](/documentation/swift/uint8/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint8/custommirror)
- [Decodable Implementations](/documentation/swift/uint8/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint8/init(from:))
- [Encodable Implementations](/documentation/swift/uint8/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint8/encode(to:))
- [Equatable Implementations](/documentation/swift/uint8/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint8/!=(_:_:)-6q87z)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint8/!=(_:_:)-8fy9h)
- [static func == (Self, Self) -> Bool](/documentation/swift/uint8/==(_:_:)-4aoew)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint8/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint8/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/uint8/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint8/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint8/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint8/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint8/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint8/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint8/&-=(_:_:))
- [static func &>> (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/&__(_:_:)-1fquv)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint8/&__(_:_:)-3qwyl)
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint8/&__(_:_:)-5m6yb)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint8/&__(_:_:)-60i6u)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint8/&__(_:_:)-6jqbr)
- [static func &<< (UInt8, UInt8) -> UInt8](/documentation/swift/uint8/&__(_:_:)-7gp0b)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint8/&__=(_:_:)-16yhm)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint8/&__=(_:_:)-60dw2)

###### Initializers

- [init?(String)](/documentation/swift/uint8/init(_:)-1iroc)
- [init<T>(T)](/documentation/swift/uint8/init(_:)-5e02)
- [init?<S>(S, radix: Int)](/documentation/swift/uint8/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint8/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint8/init(exactly:)-8szg6)
- [init(littleEndian: Self)](/documentation/swift/uint8/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint8/bigendian)
- [var littleEndian: Self](/documentation/swift/uint8/littleendian)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint8/random(in:)-6wnz5)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint8/random(in:)-85h4o)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint8/random(in:using:)-3zjsj)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint8/random(in:using:)-6l2z5)
- [Hashable Implementations](/documentation/swift/uint8/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint8/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint8/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/uint8/simdscalar-implementations)

###### Structures

- [UInt8.SIMD16Storage](/documentation/swift/uint8/simd16storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd16storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD16Storage.Scalar](/documentation/swift/uint8/simd16storage/scalar)
- [UInt8.SIMD2Storage](/documentation/swift/uint8/simd2storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd2storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD2Storage.Scalar](/documentation/swift/uint8/simd2storage/scalar)
- [UInt8.SIMD32Storage](/documentation/swift/uint8/simd32storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd32storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD32Storage.Scalar](/documentation/swift/uint8/simd32storage/scalar)
- [UInt8.SIMD4Storage](/documentation/swift/uint8/simd4storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd4storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD4Storage.Scalar](/documentation/swift/uint8/simd4storage/scalar)
- [UInt8.SIMD64Storage](/documentation/swift/uint8/simd64storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd64storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD64Storage.Scalar](/documentation/swift/uint8/simd64storage/scalar)
- [UInt8.SIMD8Storage](/documentation/swift/uint8/simd8storage)

###### Initializers

- [init()](/documentation/swift/uint8/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint8/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt8](/documentation/swift/uint8/simd8storage/subscript(_:))

###### Type Aliases

- [UInt8.SIMD8Storage.Scalar](/documentation/swift/uint8/simd8storage/scalar)

###### Type Aliases

- [UInt8.SIMDMaskScalar](/documentation/swift/uint8/simdmaskscalar)
- [UnsignedInteger Implementations](/documentation/swift/uint8/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint8/init(_:)-5kvfz)
- [init?<T>(exactly: T)](/documentation/swift/uint8/init(exactly:)-41wk8)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint8/magnitude-swift.property)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint8/issigned)
- [static var max: Self](/documentation/swift/uint8/max)
- [static var min: Self](/documentation/swift/uint8/min)
- [UInt16](/documentation/swift/uint16)

###### Structures

- [UInt16.Words](/documentation/swift/uint16/words-swift.struct)

###### Initializers

- [init(UInt16)](/documentation/swift/uint16/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/uint16/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint16/words-swift.struct/endindex)
- [var indices: UInt16.Words.Indices](/documentation/swift/uint16/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/uint16/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/uint16/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint16/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint16/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt16.Words.Element](/documentation/swift/uint16/words-swift.struct/element)
- [UInt16.Words.Index](/documentation/swift/uint16/words-swift.struct/index)
- [UInt16.Words.Indices](/documentation/swift/uint16/words-swift.struct/indices-swift.typealias)
- [UInt16.Words.Iterator](/documentation/swift/uint16/words-swift.struct/iterator)
- [UInt16.Words.SubSequence](/documentation/swift/uint16/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint16/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint16/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint16/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint16/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint16/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint16/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint16/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint16/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint16/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint16/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/uint16/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint16/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/uint16/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint16/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint16/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint16/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint16/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint16/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint16/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint16/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint16/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint16/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint16/words-swift.struct/map(_:)-2jx8u)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint16/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint16/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint16/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint16/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint16/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint16/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/uint16/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint16/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint16/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint16/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/uint16/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint16/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint16/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint16/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint16/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint16/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint16/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint16/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint16/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint16/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint16/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint16/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint16/words-swift.struct/flatmap(_:)-4075a)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint16/words-swift.struct/flatmap(_:)-4v65l)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint16/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint16/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint16/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint16/words-swift.struct/map(_:)-72zme)
- [func max() -> Self.Element?](/documentation/swift/uint16/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint16/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint16/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint16/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint16/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint16/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint16/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint16/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint16/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint16/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint16/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint16/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint16/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (UInt16, UInt16) -> Bool](/documentation/swift/uint16/!=(_:_:))
- [static func &= (inout UInt16, UInt16)](/documentation/swift/uint16/&=(_:_:))
- [static func &<<= (inout UInt16, UInt16)](/documentation/swift/uint16/&__=(_:_:)-4uh81)
- [static func &>>= (inout UInt16, UInt16)](/documentation/swift/uint16/&__=(_:_:)-54gew)
- [static func *= (inout UInt16, UInt16)](/documentation/swift/uint16/*=(_:_:))
- [static func += (inout UInt16, UInt16)](/documentation/swift/uint16/+=(_:_:))
- [static func -= (inout UInt16, UInt16)](/documentation/swift/uint16/-=(_:_:))
- [static func == (UInt16, UInt16) -> Bool](/documentation/swift/uint16/==(_:_:))
- [static func < (UInt16, UInt16) -> Bool](/documentation/swift/uint16/_(_:_:)-9tmro)
- [static func |= (inout UInt16, UInt16)](/documentation/swift/uint16/_=(_:_:)-2tboh)
- [static func %= (inout UInt16, UInt16)](/documentation/swift/uint16/_=(_:_:)-5c5xh)
- [static func /= (inout UInt16, UInt16)](/documentation/swift/uint16/_=(_:_:)-7gmk4)
- [static func ^= (inout UInt16, UInt16)](/documentation/swift/uint16/_=(_:_:)-7q4om)

###### Initializers

- [init(CGFloat)](/documentation/swift/uint16/init(_:)-1x3ws)
- [init(Double)](/documentation/swift/uint16/init(_:)-2gsqf)
- [init(Float16)](/documentation/swift/uint16/init(_:)-5vkwt)
- [init(NSNumber)](/documentation/swift/uint16/init(_:)-67c9u)
- [init(Float80)](/documentation/swift/uint16/init(_:)-754ls)
- [init(Float)](/documentation/swift/uint16/init(_:)-8jre)
- [init(bitPattern: Int16)](/documentation/swift/uint16/init(bitpattern:))
- [init?(exactly: Double)](/documentation/swift/uint16/init(exactly:)-1l0o7)
- [init?(exactly: NSNumber)](/documentation/swift/uint16/init(exactly:)-1n42w)
- [init?(exactly: Float80)](/documentation/swift/uint16/init(exactly:)-3qv86)
- [init?(exactly: Float16)](/documentation/swift/uint16/init(exactly:)-4ljt)
- [init?(exactly: Float)](/documentation/swift/uint16/init(exactly:)-8jto3)
- [init(truncating: NSNumber)](/documentation/swift/uint16/init(truncating:))

###### Instance Properties

- [var byteSwapped: UInt16](/documentation/swift/uint16/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/uint16/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/uint16/leadingzerobitcount)
- [var nonzeroBitCount: Int](/documentation/swift/uint16/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/uint16/trailingzerobitcount)
- [var words: UInt16.Words](/documentation/swift/uint16/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(UInt16) -> (partialValue: UInt16, overflow: Bool)](/documentation/swift/uint16/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt16) -> (partialValue: UInt16, overflow: Bool)](/documentation/swift/uint16/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: UInt16, low: UInt16.Magnitude)) -> (quotient: UInt16, remainder: UInt16)](/documentation/swift/uint16/dividingfullwidth(_:))
- [func multipliedFullWidth(by: UInt16) -> (high: UInt16, low: UInt16.Magnitude)](/documentation/swift/uint16/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt16) -> (partialValue: UInt16, overflow: Bool)](/documentation/swift/uint16/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt16) -> (partialValue: UInt16, overflow: Bool)](/documentation/swift/uint16/remainderreportingoverflow(dividingby:))
- [func signum() -> UInt16](/documentation/swift/uint16/signum())
- [func subtractingReportingOverflow(UInt16) -> (partialValue: UInt16, overflow: Bool)](/documentation/swift/uint16/subtractingreportingoverflow(_:))

###### Type Aliases

- [UInt16.IntegerLiteralType](/documentation/swift/uint16/integerliteraltype)
- [UInt16.Magnitude](/documentation/swift/uint16/magnitude)
- [UInt16.Stride](/documentation/swift/uint16/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint16/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint16/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint16/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/uint16/+=(_:_:)-4tslw)
- [static func -= (inout Self, Self)](/documentation/swift/uint16/-=(_:_:)-9z9m1)

###### Type Properties

- [static var zero: Self](/documentation/swift/uint16/zero)
- [AtomicRepresentable Implementations](/documentation/swift/uint16/atomicrepresentable-implementations)

###### Type Aliases

- [UInt16.AtomicRepresentation](/documentation/swift/uint16/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt16.AtomicRepresentation) -> UInt16](/documentation/swift/uint16/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt16) -> UInt16.AtomicRepresentation](/documentation/swift/uint16/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint16/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint16/!=(_:_:)-6oo9x)
- [static func & (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/uint16/&(_:_:)-3mlmk)
- [static func * (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/*(_:_:))
- [static func + (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/+(_:_:))
- [static func - (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint16/==(_:_:)-69b04)
- [static func / (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/_(_:_:)-1a3d4)
- [static func | (Self, Self) -> Self](/documentation/swift/uint16/_(_:_:)-1s8m4)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint16/_(_:_:)-297tf)
- [static func | (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/_(_:_:)-50tep)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint16/_(_:_:)-67pzh)
- [static func % (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/_(_:_:)-6nw45)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint16/_(_:_:)-7mpvu)
- [static func ^ (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/_(_:_:)-drxc)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint16/_(_:_:)-y91e)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint16/_=(_:_:)-4shca)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint16/_=(_:_:)-6ddld)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint16/_=(_:_:)-6h9fs)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint16/_=(_:_:)-ob5s)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint16/__(_:_:)-2m9b8)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint16/__(_:_:)-5wx7k)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint16/__(_:_:)-8745o)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint16/__(_:_:)-89hsa)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint16/__=(_:_:)-2u0d3)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint16/__=(_:_:)-9qkzb)
- [static func ~ (Self) -> Self](/documentation/swift/uint16/~(_:))

###### Initializers

- [init()](/documentation/swift/uint16/init())
- [init<Other>(clamping: Other)](/documentation/swift/uint16/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint16/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint16/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint16/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint16/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint16/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint16/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint16/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/uint16/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint16/'...(_:)-5nnpz)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint16/'...(_:)-6ornx)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint16/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint16/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint16/'.._(_:_:))
- [static func > (UInt16, UInt16) -> Bool](/documentation/swift/uint16/_(_:_:)-3unk9)
- [static func < (Self, Self) -> Bool](/documentation/swift/uint16/_(_:_:)-5oqcr)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint16/_(_:_:)-606yp)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint16/_=(_:_:)-3l8yn)
- [static func <= (UInt16, UInt16) -> Bool](/documentation/swift/uint16/_=(_:_:)-5wxfd)
- [static func >= (UInt16, UInt16) -> Bool](/documentation/swift/uint16/_=(_:_:)-6slvy)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint16/_=(_:_:)-9k2em)
- [CustomReflectable Implementations](/documentation/swift/uint16/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint16/custommirror)
- [Decodable Implementations](/documentation/swift/uint16/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint16/init(from:))
- [Encodable Implementations](/documentation/swift/uint16/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint16/encode(to:))
- [Equatable Implementations](/documentation/swift/uint16/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint16/!=(_:_:)-1aiom)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint16/!=(_:_:)-4n2dq)
- [static func == (Self, Self) -> Bool](/documentation/swift/uint16/==(_:_:)-4cq0f)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint16/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint16/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/uint16/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint16/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint16/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint16/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint16/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint16/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint16/&-=(_:_:))
- [static func &<< (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/&__(_:_:)-1s44o)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint16/&__(_:_:)-23wlt)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint16/&__(_:_:)-4pl2m)
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint16/&__(_:_:)-5j3zt)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint16/&__(_:_:)-6qf3)
- [static func &>> (UInt16, UInt16) -> UInt16](/documentation/swift/uint16/&__(_:_:)-u6vr)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint16/&__=(_:_:)-4eicd)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint16/&__=(_:_:)-4iwdg)

###### Initializers

- [init<T>(T)](/documentation/swift/uint16/init(_:)-5nfkl)
- [init?(String)](/documentation/swift/uint16/init(_:)-6powq)
- [init?<S>(S, radix: Int)](/documentation/swift/uint16/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint16/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint16/init(exactly:)-8acu7)
- [init(littleEndian: Self)](/documentation/swift/uint16/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint16/bigendian)
- [var littleEndian: Self](/documentation/swift/uint16/littleendian)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint16/random(in:)-512t7)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint16/random(in:)-5jx03)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint16/random(in:using:)-7a3q0)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint16/random(in:using:)-8uepg)
- [Hashable Implementations](/documentation/swift/uint16/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint16/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint16/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/uint16/simdscalar-implementations)

###### Structures

- [UInt16.SIMD16Storage](/documentation/swift/uint16/simd16storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd16storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD16Storage.Scalar](/documentation/swift/uint16/simd16storage/scalar)
- [UInt16.SIMD2Storage](/documentation/swift/uint16/simd2storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd2storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD2Storage.Scalar](/documentation/swift/uint16/simd2storage/scalar)
- [UInt16.SIMD32Storage](/documentation/swift/uint16/simd32storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd32storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD32Storage.Scalar](/documentation/swift/uint16/simd32storage/scalar)
- [UInt16.SIMD4Storage](/documentation/swift/uint16/simd4storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd4storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD4Storage.Scalar](/documentation/swift/uint16/simd4storage/scalar)
- [UInt16.SIMD64Storage](/documentation/swift/uint16/simd64storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd64storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD64Storage.Scalar](/documentation/swift/uint16/simd64storage/scalar)
- [UInt16.SIMD8Storage](/documentation/swift/uint16/simd8storage)

###### Initializers

- [init()](/documentation/swift/uint16/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint16/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt16](/documentation/swift/uint16/simd8storage/subscript(_:))

###### Type Aliases

- [UInt16.SIMD8Storage.Scalar](/documentation/swift/uint16/simd8storage/scalar)

###### Type Aliases

- [UInt16.SIMDMaskScalar](/documentation/swift/uint16/simdmaskscalar)
- [UnsignedInteger Implementations](/documentation/swift/uint16/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint16/init(_:)-jhtz)
- [init?<T>(exactly: T)](/documentation/swift/uint16/init(exactly:)-8ls1a)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint16/magnitude-swift.property)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint16/issigned)
- [static var max: Self](/documentation/swift/uint16/max)
- [static var min: Self](/documentation/swift/uint16/min)
- [UInt32](/documentation/swift/uint32)

###### Structures

- [UInt32.Words](/documentation/swift/uint32/words-swift.struct)

###### Initializers

- [init(UInt32)](/documentation/swift/uint32/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/uint32/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint32/words-swift.struct/endindex)
- [var indices: UInt32.Words.Indices](/documentation/swift/uint32/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/uint32/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/uint32/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint32/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint32/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt32.Words.Element](/documentation/swift/uint32/words-swift.struct/element)
- [UInt32.Words.Index](/documentation/swift/uint32/words-swift.struct/index)
- [UInt32.Words.Indices](/documentation/swift/uint32/words-swift.struct/indices-swift.typealias)
- [UInt32.Words.Iterator](/documentation/swift/uint32/words-swift.struct/iterator)
- [UInt32.Words.SubSequence](/documentation/swift/uint32/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint32/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint32/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint32/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint32/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint32/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint32/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint32/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint32/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint32/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint32/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/uint32/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint32/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/uint32/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint32/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint32/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint32/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint32/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint32/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint32/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint32/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint32/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint32/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint32/words-swift.struct/map(_:)-44w53)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint32/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint32/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint32/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint32/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint32/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint32/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/uint32/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint32/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint32/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint32/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/uint32/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint32/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint32/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint32/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint32/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint32/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint32/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint32/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint32/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint32/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint32/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint32/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint32/words-swift.struct/flatmap(_:)-8dzxi)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint32/words-swift.struct/flatmap(_:)-8vvvg)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint32/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint32/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint32/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint32/words-swift.struct/map(_:)-7y8u7)
- [func max() -> Self.Element?](/documentation/swift/uint32/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint32/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint32/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint32/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint32/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint32/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint32/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint32/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint32/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint32/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint32/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint32/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint32/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (UInt32, UInt32) -> Bool](/documentation/swift/uint32/!=(_:_:))
- [static func &= (inout UInt32, UInt32)](/documentation/swift/uint32/&=(_:_:))
- [static func &<<= (inout UInt32, UInt32)](/documentation/swift/uint32/&__=(_:_:)-1qp80)
- [static func &>>= (inout UInt32, UInt32)](/documentation/swift/uint32/&__=(_:_:)-92fyx)
- [static func *= (inout UInt32, UInt32)](/documentation/swift/uint32/*=(_:_:))
- [static func += (inout UInt32, UInt32)](/documentation/swift/uint32/+=(_:_:))
- [static func -= (inout UInt32, UInt32)](/documentation/swift/uint32/-=(_:_:))
- [static func == (UInt32, UInt32) -> Bool](/documentation/swift/uint32/==(_:_:))
- [static func < (UInt32, UInt32) -> Bool](/documentation/swift/uint32/_(_:_:)-3r38p)
- [static func |= (inout UInt32, UInt32)](/documentation/swift/uint32/_=(_:_:)-4hx1l)
- [static func %= (inout UInt32, UInt32)](/documentation/swift/uint32/_=(_:_:)-6w0fj)
- [static func /= (inout UInt32, UInt32)](/documentation/swift/uint32/_=(_:_:)-8galu)
- [static func ^= (inout UInt32, UInt32)](/documentation/swift/uint32/_=(_:_:)-8vgdn)

###### Initializers

- [init(Float)](/documentation/swift/uint32/init(_:)-1on5r)
- [init(Float16)](/documentation/swift/uint32/init(_:)-2w61y)
- [init(Float80)](/documentation/swift/uint32/init(_:)-42ptx)
- [init(Unicode.Scalar)](/documentation/swift/uint32/init(_:)-6tczc)
- [init(CGFloat)](/documentation/swift/uint32/init(_:)-8t1sw)
- [init(NSNumber)](/documentation/swift/uint32/init(_:)-8xnzx)
- [init(Double)](/documentation/swift/uint32/init(_:)-9i7ab)
- [init(bitPattern: Int32)](/documentation/swift/uint32/init(bitpattern:))
- [init?(exactly: NSNumber)](/documentation/swift/uint32/init(exactly:)-33lic)
- [init?(exactly: Float80)](/documentation/swift/uint32/init(exactly:)-6lp3v)
- [init?(exactly: Double)](/documentation/swift/uint32/init(exactly:)-7jkyf)
- [init?(exactly: Float16)](/documentation/swift/uint32/init(exactly:)-8qhoe)
- [init?(exactly: Float)](/documentation/swift/uint32/init(exactly:)-9c2y8)
- [init(truncating: NSNumber)](/documentation/swift/uint32/init(truncating:))

###### Instance Properties

- [var byteSwapped: UInt32](/documentation/swift/uint32/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/uint32/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/uint32/leadingzerobitcount)
- [var nonzeroBitCount: Int](/documentation/swift/uint32/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/uint32/trailingzerobitcount)
- [var words: UInt32.Words](/documentation/swift/uint32/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(UInt32) -> (partialValue: UInt32, overflow: Bool)](/documentation/swift/uint32/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt32) -> (partialValue: UInt32, overflow: Bool)](/documentation/swift/uint32/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: UInt32, low: UInt32.Magnitude)) -> (quotient: UInt32, remainder: UInt32)](/documentation/swift/uint32/dividingfullwidth(_:))
- [func multipliedFullWidth(by: UInt32) -> (high: UInt32, low: UInt32.Magnitude)](/documentation/swift/uint32/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt32) -> (partialValue: UInt32, overflow: Bool)](/documentation/swift/uint32/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt32) -> (partialValue: UInt32, overflow: Bool)](/documentation/swift/uint32/remainderreportingoverflow(dividingby:))
- [func signum() -> UInt32](/documentation/swift/uint32/signum())
- [func subtractingReportingOverflow(UInt32) -> (partialValue: UInt32, overflow: Bool)](/documentation/swift/uint32/subtractingreportingoverflow(_:))

###### Type Aliases

- [UInt32.IntegerLiteralType](/documentation/swift/uint32/integerliteraltype)
- [UInt32.Magnitude](/documentation/swift/uint32/magnitude)
- [UInt32.Stride](/documentation/swift/uint32/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint32/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint32/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint32/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/uint32/+=(_:_:)-511b2)
- [static func -= (inout Self, Self)](/documentation/swift/uint32/-=(_:_:)-9sxd7)

###### Type Properties

- [static var zero: Self](/documentation/swift/uint32/zero)
- [AtomicRepresentable Implementations](/documentation/swift/uint32/atomicrepresentable-implementations)

###### Type Aliases

- [UInt32.AtomicRepresentation](/documentation/swift/uint32/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt32.AtomicRepresentation) -> UInt32](/documentation/swift/uint32/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt32) -> UInt32.AtomicRepresentation](/documentation/swift/uint32/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint32/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint32/!=(_:_:)-6i9jj)
- [static func & (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/uint32/&(_:_:)-3g9c6)
- [static func * (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/*(_:_:))
- [static func + (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/+(_:_:))
- [static func - (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint32/==(_:_:)-6gtla)
- [static func | (Self, Self) -> Self](/documentation/swift/uint32/_(_:_:)-1zok6)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint32/_(_:_:)-21za9)
- [static func / (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/_(_:_:)-544gh)
- [static func | (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/_(_:_:)-5p6yw)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint32/_(_:_:)-60hif)
- [static func % (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/_(_:_:)-6ovdh)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint32/_(_:_:)-7gl7s)
- [static func ^ (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/_(_:_:)-9mox3)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint32/_(_:_:)-ru4w)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint32/_=(_:_:)-4zprc)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint32/_=(_:_:)-6655v)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint32/_=(_:_:)-69qui)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint32/_=(_:_:)-vr4i)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint32/__(_:_:)-2fuku)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint32/__(_:_:)-63byq)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint32/__(_:_:)-8299k)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint32/__(_:_:)-8ecom)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint32/__=(_:_:)-2nln1)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint32/__=(_:_:)-9xth9)
- [static func ~ (Self) -> Self](/documentation/swift/uint32/~(_:))

###### Initializers

- [init()](/documentation/swift/uint32/init())
- [init<Other>(clamping: Other)](/documentation/swift/uint32/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint32/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint32/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint32/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint32/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint32/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint32/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint32/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/uint32/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint32/'...(_:)-5u2el)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint32/'...(_:)-6hglj)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint32/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint32/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint32/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/uint32/_(_:_:)-5v5ah)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint32/_(_:_:)-67i4z)
- [static func > (UInt32, UInt32) -> Bool](/documentation/swift/uint32/_(_:_:)-9eky4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint32/_=(_:_:)-3rq79)
- [static func <= (UInt32, UInt32) -> Bool](/documentation/swift/uint32/_=(_:_:)-573ra)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint32/_=(_:_:)-9dxms)
- [static func >= (UInt32, UInt32) -> Bool](/documentation/swift/uint32/_=(_:_:)-apxe)
- [CustomReflectable Implementations](/documentation/swift/uint32/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint32/custommirror)
- [Decodable Implementations](/documentation/swift/uint32/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint32/init(from:))
- [Encodable Implementations](/documentation/swift/uint32/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint32/encode(to:))
- [Equatable Implementations](/documentation/swift/uint32/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint32/!=(_:_:)-13a6k)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint32/!=(_:_:)-4tjkk)
- [static func == (Self, Self) -> Bool](/documentation/swift/uint32/==(_:_:)-46ijp)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint32/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint32/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/uint32/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint32/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint32/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint32/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint32/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint32/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint32/&-=(_:_:))
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint32/&__(_:_:)-2b50j)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint32/&__(_:_:)-4icck)
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint32/&__(_:_:)-5qjx7)
- [static func &<< (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/&__(_:_:)-6boh2)
- [static func &>> (UInt32, UInt32) -> UInt32](/documentation/swift/uint32/&__(_:_:)-6cy2r)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint32/&__(_:_:)-bol)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint32/&__=(_:_:)-477ef)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint32/&__=(_:_:)-4p3qm)

###### Initializers

- [init<T>(T)](/documentation/swift/uint32/init(_:)-5tue7)
- [init?(String)](/documentation/swift/uint32/init(_:)-6w6ag)
- [init?<S>(S, radix: Int)](/documentation/swift/uint32/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint32/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint32/init(exactly:)-8348l)
- [init(littleEndian: Self)](/documentation/swift/uint32/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint32/bigendian)
- [var littleEndian: Self](/documentation/swift/uint32/littleendian)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint32/random(in:)-58bdl)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint32/random(in:)-5r5dt)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint32/random(in:using:)-7gifu)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint32/random(in:using:)-91wzi)
- [Hashable Implementations](/documentation/swift/uint32/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint32/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint32/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/uint32/simdscalar-implementations)

###### Structures

- [UInt32.SIMD16Storage](/documentation/swift/uint32/simd16storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd16storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD16Storage.Scalar](/documentation/swift/uint32/simd16storage/scalar)
- [UInt32.SIMD2Storage](/documentation/swift/uint32/simd2storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd2storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD2Storage.Scalar](/documentation/swift/uint32/simd2storage/scalar)
- [UInt32.SIMD32Storage](/documentation/swift/uint32/simd32storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd32storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD32Storage.Scalar](/documentation/swift/uint32/simd32storage/scalar)
- [UInt32.SIMD4Storage](/documentation/swift/uint32/simd4storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd4storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD4Storage.Scalar](/documentation/swift/uint32/simd4storage/scalar)
- [UInt32.SIMD64Storage](/documentation/swift/uint32/simd64storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd64storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD64Storage.Scalar](/documentation/swift/uint32/simd64storage/scalar)
- [UInt32.SIMD8Storage](/documentation/swift/uint32/simd8storage)

###### Initializers

- [init()](/documentation/swift/uint32/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint32/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt32](/documentation/swift/uint32/simd8storage/subscript(_:))

###### Type Aliases

- [UInt32.SIMD8Storage.Scalar](/documentation/swift/uint32/simd8storage/scalar)

###### Type Aliases

- [UInt32.SIMDMaskScalar](/documentation/swift/uint32/simdmaskscalar)
- [UnsignedInteger Implementations](/documentation/swift/uint32/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint32/init(_:)-c1wd)
- [init?<T>(exactly: T)](/documentation/swift/uint32/init(exactly:)-8t3ac)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint32/magnitude-swift.property)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint32/issigned)
- [static var max: Self](/documentation/swift/uint32/max)
- [static var min: Self](/documentation/swift/uint32/min)
- [UInt64](/documentation/swift/uint64)

###### Structures

- [UInt64.Words](/documentation/swift/uint64/words-swift.struct)

###### Initializers

- [init(UInt64)](/documentation/swift/uint64/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/uint64/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint64/words-swift.struct/endindex)
- [var indices: UInt64.Words.Indices](/documentation/swift/uint64/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/uint64/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/uint64/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint64/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint64/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt64.Words.Element](/documentation/swift/uint64/words-swift.struct/element)
- [UInt64.Words.Index](/documentation/swift/uint64/words-swift.struct/index)
- [UInt64.Words.Indices](/documentation/swift/uint64/words-swift.struct/indices-swift.typealias)
- [UInt64.Words.Iterator](/documentation/swift/uint64/words-swift.struct/iterator)
- [UInt64.Words.SubSequence](/documentation/swift/uint64/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint64/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint64/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint64/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint64/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint64/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint64/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint64/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint64/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint64/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint64/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/uint64/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint64/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/uint64/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint64/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint64/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint64/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint64/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint64/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint64/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint64/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint64/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint64/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint64/words-swift.struct/map(_:)-56c2z)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint64/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint64/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint64/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint64/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint64/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint64/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/uint64/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint64/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint64/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint64/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/uint64/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint64/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint64/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint64/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint64/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint64/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint64/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint64/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint64/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint64/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint64/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint64/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint64/words-swift.struct/flatmap(_:)-1lmk5)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint64/words-swift.struct/flatmap(_:)-4trs6)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint64/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint64/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint64/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint64/words-swift.struct/map(_:)-4zugn)
- [func max() -> Self.Element?](/documentation/swift/uint64/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint64/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint64/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint64/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint64/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint64/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint64/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint64/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint64/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint64/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint64/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint64/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint64/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (UInt64, UInt64) -> Bool](/documentation/swift/uint64/!=(_:_:))
- [static func &= (inout UInt64, UInt64)](/documentation/swift/uint64/&=(_:_:))
- [static func &>>= (inout UInt64, UInt64)](/documentation/swift/uint64/&__=(_:_:)-9z0pp)
- [static func &<<= (inout UInt64, UInt64)](/documentation/swift/uint64/&__=(_:_:)-p2fc)
- [static func *= (inout UInt64, UInt64)](/documentation/swift/uint64/*=(_:_:))
- [static func += (inout UInt64, UInt64)](/documentation/swift/uint64/+=(_:_:))
- [static func -= (inout UInt64, UInt64)](/documentation/swift/uint64/-=(_:_:))
- [static func == (UInt64, UInt64) -> Bool](/documentation/swift/uint64/==(_:_:))
- [static func < (UInt64, UInt64) -> Bool](/documentation/swift/uint64/_(_:_:)-1zzq5)
- [static func %= (inout UInt64, UInt64)](/documentation/swift/uint64/_=(_:_:)-20phr)
- [static func |= (inout UInt64, UInt64)](/documentation/swift/uint64/_=(_:_:)-3oy72)
- [static func ^= (inout UInt64, UInt64)](/documentation/swift/uint64/_=(_:_:)-7dm2a)
- [static func /= (inout UInt64, UInt64)](/documentation/swift/uint64/_=(_:_:)-9jhbb)

###### Initializers

- [init(CGFloat)](/documentation/swift/uint64/init(_:)-31scj)
- [init(Float16)](/documentation/swift/uint64/init(_:)-6bhfg)
- [init(Double)](/documentation/swift/uint64/init(_:)-71bjo)
- [init(NSNumber)](/documentation/swift/uint64/init(_:)-7pz4t)
- [init(Unicode.Scalar)](/documentation/swift/uint64/init(_:)-7yfzu)
- [init(Float80)](/documentation/swift/uint64/init(_:)-86c9y)
- [init(Float)](/documentation/swift/uint64/init(_:)-8hpyb)
- [init(bitPattern: Int64)](/documentation/swift/uint64/init(bitpattern:))
- [init?(exactly: Float80)](/documentation/swift/uint64/init(exactly:)-1laz5)
- [init?(exactly: NSNumber)](/documentation/swift/uint64/init(exactly:)-1rz30)
- [init?(exactly: Double)](/documentation/swift/uint64/init(exactly:)-4pdnv)
- [init?(exactly: Float16)](/documentation/swift/uint64/init(exactly:)-92on5)
- [init?(exactly: Float)](/documentation/swift/uint64/init(exactly:)-gsjs)
- [init(truncating: NSNumber)](/documentation/swift/uint64/init(truncating:))

###### Instance Properties

- [var byteSwapped: UInt64](/documentation/swift/uint64/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/uint64/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/uint64/leadingzerobitcount)
- [var nonzeroBitCount: Int](/documentation/swift/uint64/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/uint64/trailingzerobitcount)
- [var words: UInt64.Words](/documentation/swift/uint64/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(UInt64) -> (partialValue: UInt64, overflow: Bool)](/documentation/swift/uint64/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt64) -> (partialValue: UInt64, overflow: Bool)](/documentation/swift/uint64/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: UInt64, low: UInt64.Magnitude)) -> (quotient: UInt64, remainder: UInt64)](/documentation/swift/uint64/dividingfullwidth(_:))
- [func multipliedFullWidth(by: UInt64) -> (high: UInt64, low: UInt64.Magnitude)](/documentation/swift/uint64/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt64) -> (partialValue: UInt64, overflow: Bool)](/documentation/swift/uint64/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt64) -> (partialValue: UInt64, overflow: Bool)](/documentation/swift/uint64/remainderreportingoverflow(dividingby:))
- [func signum() -> UInt64](/documentation/swift/uint64/signum())
- [func subtractingReportingOverflow(UInt64) -> (partialValue: UInt64, overflow: Bool)](/documentation/swift/uint64/subtractingreportingoverflow(_:))

###### Type Aliases

- [UInt64.IntegerLiteralType](/documentation/swift/uint64/integerliteraltype)
- [UInt64.Magnitude](/documentation/swift/uint64/magnitude)
- [UInt64.Stride](/documentation/swift/uint64/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint64/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint64/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint64/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/uint64/+=(_:_:)-5brqh)
- [static func -= (inout Self, Self)](/documentation/swift/uint64/-=(_:_:)-aern)

###### Type Properties

- [static var zero: Self](/documentation/swift/uint64/zero)
- [AtomicRepresentable Implementations](/documentation/swift/uint64/atomicrepresentable-implementations)

###### Type Aliases

- [UInt64.AtomicRepresentation](/documentation/swift/uint64/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt64.AtomicRepresentation) -> UInt64](/documentation/swift/uint64/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt64) -> UInt64.AtomicRepresentation](/documentation/swift/uint64/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint64/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint64/!=(_:_:)-67tzk)
- [static func & (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/uint64/&(_:_:)-3x1yh)
- [static func * (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/*(_:_:))
- [static func + (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/+(_:_:))
- [static func - (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint64/==(_:_:)-6ra49)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint64/_(_:_:)-1kwg2)
- [static func | (Self, Self) -> Self](/documentation/swift/uint64/_(_:_:)-2girh)
- [static func ^ (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/_(_:_:)-5hgaz)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint64/_(_:_:)-5jero)
- [static func % (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/_(_:_:)-68vrk)
- [static func | (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/_(_:_:)-6ykmm)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint64/_(_:_:)-75vtz)
- [static func / (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/_(_:_:)-8b3l2)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint64/_(_:_:)-9xpv)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint64/_=(_:_:)-1clb5)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint64/_=(_:_:)-4pbv7)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint64/_=(_:_:)-5p2f4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint64/_=(_:_:)-5sy3d)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint64/__(_:_:)-25f5d)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint64/__(_:_:)-5so09)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint64/__(_:_:)-7rk6f)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint64/__(_:_:)-83yhh)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint64/__=(_:_:)-25p32)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint64/__=(_:_:)-7usr)
- [static func ~ (Self) -> Self](/documentation/swift/uint64/~(_:))

###### Initializers

- [init()](/documentation/swift/uint64/init())
- [init<Other>(clamping: Other)](/documentation/swift/uint64/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint64/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint64/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint64/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint64/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint64/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint64/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint64/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/uint64/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint64/'...(_:)-64ixm)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint64/'...(_:)-6rvzw)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint64/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint64/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint64/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/uint64/_(_:_:)-5kh4y)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint64/_(_:_:)-5phl8)
- [static func > (UInt64, UInt64) -> Bool](/documentation/swift/uint64/_(_:_:)-6uaw2)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint64/_=(_:_:)-3atk2)
- [static func <= (UInt64, UInt64) -> Bool](/documentation/swift/uint64/_=(_:_:)-5zp05)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint64/_=(_:_:)-938i3)
- [static func >= (UInt64, UInt64) -> Bool](/documentation/swift/uint64/_=(_:_:)-9d45t)
- [CustomReflectable Implementations](/documentation/swift/uint64/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint64/custommirror)
- [Decodable Implementations](/documentation/swift/uint64/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint64/init(from:))
- [Encodable Implementations](/documentation/swift/uint64/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint64/encode(to:))
- [Equatable Implementations](/documentation/swift/uint64/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint64/!=(_:_:)-4cmxf)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint64/!=(_:_:)-sksj)
- [static func == (Self, Self) -> Bool](/documentation/swift/uint64/==(_:_:)-4gy2m)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint64/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint64/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/uint64/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint64/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint64/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint64/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint64/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint64/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint64/&-=(_:_:))
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint64/&__(_:_:)-20r54)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint64/&__(_:_:)-47n63)
- [static func &>> (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/&__(_:_:)-4ncka)
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint64/&__(_:_:)-67e3c)
- [static func &<< (UInt64, UInt64) -> UInt64](/documentation/swift/uint64/&__(_:_:)-8qsy)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint64/&__(_:_:)-9phvf)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint64/&__=(_:_:)-487ah)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint64/&__=(_:_:)-4hmss)

###### Initializers

- [init<T>(T)](/documentation/swift/uint64/init(_:)-5j67w)
- [init?(String)](/documentation/swift/uint64/init(_:)-6f9pj)
- [init?<S>(S, radix: Int)](/documentation/swift/uint64/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint64/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint64/init(exactly:)-7m1hy)
- [init(littleEndian: Self)](/documentation/swift/uint64/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint64/bigendian)
- [var littleEndian: Self](/documentation/swift/uint64/littleendian)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint64/random(in:)-4xxb6)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint64/random(in:)-5grii)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint64/random(in:using:)-75uk1)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint64/random(in:using:)-8r8yl)
- [Hashable Implementations](/documentation/swift/uint64/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint64/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint64/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/uint64/simdscalar-implementations)

###### Structures

- [UInt64.SIMD16Storage](/documentation/swift/uint64/simd16storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd16storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD16Storage.Scalar](/documentation/swift/uint64/simd16storage/scalar)
- [UInt64.SIMD2Storage](/documentation/swift/uint64/simd2storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd2storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD2Storage.Scalar](/documentation/swift/uint64/simd2storage/scalar)
- [UInt64.SIMD32Storage](/documentation/swift/uint64/simd32storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd32storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD32Storage.Scalar](/documentation/swift/uint64/simd32storage/scalar)
- [UInt64.SIMD4Storage](/documentation/swift/uint64/simd4storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd4storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD4Storage.Scalar](/documentation/swift/uint64/simd4storage/scalar)
- [UInt64.SIMD64Storage](/documentation/swift/uint64/simd64storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd64storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD64Storage.Scalar](/documentation/swift/uint64/simd64storage/scalar)
- [UInt64.SIMD8Storage](/documentation/swift/uint64/simd8storage)

###### Initializers

- [init()](/documentation/swift/uint64/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/uint64/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> UInt64](/documentation/swift/uint64/simd8storage/subscript(_:))

###### Type Aliases

- [UInt64.SIMD8Storage.Scalar](/documentation/swift/uint64/simd8storage/scalar)

###### Type Aliases

- [UInt64.SIMDMaskScalar](/documentation/swift/uint64/simdmaskscalar)
- [UnsignedInteger Implementations](/documentation/swift/uint64/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint64/init(_:)-u8j6)
- [init?<T>(exactly: T)](/documentation/swift/uint64/init(exactly:)-8b2n7)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint64/magnitude-swift.property)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint64/issigned)
- [static var max: Self](/documentation/swift/uint64/max)
- [static var min: Self](/documentation/swift/uint64/min)
- [UInt128](/documentation/swift/uint128)

###### Operators

- [static func != (UInt128, UInt128) -> Bool](/documentation/swift/uint128/!=(_:_:))

###### Initializers

- [init(bitPattern: Int128)](/documentation/swift/uint128/init(bitpattern:))

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/uint128/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/uint128/+(_:))
- [static func + (UInt128, UInt128) -> UInt128](/documentation/swift/uint128/+(_:_:))
- [static func += (inout Self, Self)](/documentation/swift/uint128/+=(_:_:))
- [static func - (UInt128, UInt128) -> UInt128](/documentation/swift/uint128/-(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/uint128/-=(_:_:))

###### Type Properties

- [static var zero: UInt128](/documentation/swift/uint128/zero)
- [static var zero: Self](/documentation/swift/uint128/zero-5fgip)
- [AtomicRepresentable Implementations](/documentation/swift/uint128/atomicrepresentable-implementations)

###### Type Aliases

- [UInt128.AtomicRepresentation](/documentation/swift/uint128/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UInt128.AtomicRepresentation) -> UInt128](/documentation/swift/uint128/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing UInt128) -> UInt128.AtomicRepresentation](/documentation/swift/uint128/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/uint128/binaryinteger-implementations)

###### Structures

- [UInt128.Words](/documentation/swift/uint128/words-swift.struct)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/uint128/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/uint128/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/uint128/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/uint128/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/uint128/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint128/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint128/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint128/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/uint128/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/uint128/words-swift.struct/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/uint128/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/uint128/words-swift.struct/endindex)
- [var first: Self.Element?](/documentation/swift/uint128/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/uint128/words-swift.struct/isempty)
- [var startIndex: Int](/documentation/swift/uint128/words-swift.struct/startindex)
- [var underestimatedCount: Int](/documentation/swift/uint128/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/uint128/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/uint128/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/uint128/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/uint128/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/uint128/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/uint128/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/uint128/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/uint128/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/uint128/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint128/words-swift.struct/map(_:)-3232r)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/uint128/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/uint128/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/uint128/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/uint128/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/uint128/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/uint128/words-swift.struct/suffix(from:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/uint128/words-swift.struct/subscript(_:))

###### Type Aliases

- [UInt128.Words.Index](/documentation/swift/uint128/words-swift.struct/index)
- [UInt128.Words.Indices](/documentation/swift/uint128/words-swift.struct/indices-swift.typealias)
- [UInt128.Words.Iterator](/documentation/swift/uint128/words-swift.struct/iterator)
- [UInt128.Words.SubSequence](/documentation/swift/uint128/words-swift.struct/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/uint128/words-swift.struct/randomaccesscollection-implementations)

###### Instance Properties

- [var indices: UInt128.Words.Indices](/documentation/swift/uint128/words-swift.struct/indices-swift.property)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/uint128/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/uint128/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/uint128/words-swift.struct/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/uint128/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/uint128/words-swift.struct/index(before:))
- [Sequence Implementations](/documentation/swift/uint128/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/uint128/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint128/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint128/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/uint128/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint128/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/uint128/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint128/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint128/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/uint128/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint128/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint128/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/uint128/words-swift.struct/flatmap(_:)-12zzm)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/uint128/words-swift.struct/flatmap(_:)-7tbbe)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/uint128/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/uint128/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint128/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/uint128/words-swift.struct/map(_:)-315jf)
- [func max() -> Self.Element?](/documentation/swift/uint128/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint128/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/uint128/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/uint128/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/uint128/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/uint128/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/uint128/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/uint128/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/uint128/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/uint128/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/uint128/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/uint128/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/uint128/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [UInt128.Words.Element](/documentation/swift/uint128/words-swift.struct/element)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/uint128/!=(_:_:)-9eyev)
- [static func & (Self, Self) -> Self](/documentation/swift/uint128/&(_:_:))
- [static func &= (inout UInt128, UInt128)](/documentation/swift/uint128/&=(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/uint128/==(_:_:)-4hd8l)
- [static func ^ (Self, Self) -> Self](/documentation/swift/uint128/_(_:_:)-1bfdp)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/uint128/_(_:_:)-3fwln)
- [static func % (UInt128, UInt128) -> UInt128](/documentation/swift/uint128/_(_:_:)-3t4ck)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint128/_(_:_:)-41n11)
- [static func / (UInt128, UInt128) -> UInt128](/documentation/swift/uint128/_(_:_:)-4hvzy)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/uint128/_(_:_:)-8enxk)
- [static func | (Self, Self) -> Self](/documentation/swift/uint128/_(_:_:)-k8pw)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/uint128/_=(_:_:)-1t601)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint128/_=(_:_:)-36npw)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/uint128/_=(_:_:)-3wmkz)
- [static func ^= (inout UInt128, UInt128)](/documentation/swift/uint128/_=(_:_:)-4j7m1)
- [static func /= (inout UInt128, UInt128)](/documentation/swift/uint128/_=(_:_:)-6xh2i)
- [static func %= (inout UInt128, UInt128)](/documentation/swift/uint128/_=(_:_:)-75khj)
- [static func |= (inout UInt128, UInt128)](/documentation/swift/uint128/_=(_:_:)-8ko9m)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint128/_=(_:_:)-906fm)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/uint128/__(_:_:)-3yi94)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/uint128/__(_:_:)-70lq0)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/uint128/__(_:_:)-9qcxu)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/uint128/__(_:_:)-9tjzy)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/uint128/__=(_:_:)-22e6u)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/uint128/__=(_:_:)-6t3cz)
- [static func ~ (Self) -> Self](/documentation/swift/uint128/~(_:))

###### Initializers

- [init()](/documentation/swift/uint128/init())
- [init<T>(T)](/documentation/swift/uint128/init(_:)-2b08e)
- [init<T>(T)](/documentation/swift/uint128/init(_:)-luvl)
- [init<T>(clamping: T)](/documentation/swift/uint128/init(clamping:))
- [init<Other>(clamping: Other)](/documentation/swift/uint128/init(clamping:)-7tt6l)
- [init?<T>(exactly: T)](/documentation/swift/uint128/init(exactly:)-13dy3)
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint128/init(truncatingifneeded:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/uint128/init(truncatingifneeded:)-1xc1t)

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/uint128/bitwidth-swift.property)
- [var description: String](/documentation/swift/uint128/description)
- [var trailingZeroBitCount: Int](/documentation/swift/uint128/trailingzerobitcount)
- [var words: UInt128.Words](/documentation/swift/uint128/words-swift.property)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/uint128/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/uint128/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/uint128/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/uint128/quotientandremainder(dividingby:))
- [func signum() -> Self](/documentation/swift/uint128/signum())
- [Comparable Implementations](/documentation/swift/uint128/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/uint128/'...(_:)-2j3jj)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/uint128/'...(_:)-2qk9i)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/uint128/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/uint128/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/uint128/'.._(_:_:))
- [static func < (UInt128, UInt128) -> Bool](/documentation/swift/uint128/_(_:_:)-1p2lq)
- [static func < (Self, Self) -> Bool](/documentation/swift/uint128/_(_:_:)-260c0)
- [static func > (UInt128, UInt128) -> Bool](/documentation/swift/uint128/_(_:_:)-3k5y4)
- [static func > (Self, Self) -> Bool](/documentation/swift/uint128/_(_:_:)-9hksg)
- [static func >= (UInt128, UInt128) -> Bool](/documentation/swift/uint128/_=(_:_:)-3tudj)
- [static func >= (Self, Self) -> Bool](/documentation/swift/uint128/_=(_:_:)-5f9hh)
- [static func <= (UInt128, UInt128) -> Bool](/documentation/swift/uint128/_=(_:_:)-7f9nm)
- [static func <= (Self, Self) -> Bool](/documentation/swift/uint128/_=(_:_:)-mfup)
- [CustomReflectable Implementations](/documentation/swift/uint128/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/uint128/custommirror)
- [Decodable Implementations](/documentation/swift/uint128/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/uint128/init(from:))
- [Encodable Implementations](/documentation/swift/uint128/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/uint128/encode(to:))
- [Equatable Implementations](/documentation/swift/uint128/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/uint128/!=(_:_:)-68qot)
- [static func != (Self, Self) -> Bool](/documentation/swift/uint128/!=(_:_:)-988om)
- [static func == (UInt128, UInt128) -> Bool](/documentation/swift/uint128/==(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/uint128/==(_:_:)-8oimf)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/uint128/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/uint128/init(integerliteral:))

###### Type Aliases

- [UInt128.IntegerLiteralType](/documentation/swift/uint128/integerliteraltype)
- [FixedWidthInteger Implementations](/documentation/swift/uint128/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/uint128/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/uint128/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/uint128/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/uint128/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/uint128/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/uint128/&-=(_:_:))
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/uint128/&__(_:_:)-6im7h)
- [static func &<< (Self, Self) -> Self](/documentation/swift/uint128/&__(_:_:)-6vbmo)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/uint128/&__(_:_:)-7vshb)
- [static func &>> (Self, Self) -> Self](/documentation/swift/uint128/&__(_:_:)-t1dt)
- [static func &>>= (inout UInt128, UInt128)](/documentation/swift/uint128/&__=(_:_:)-2trlh)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/uint128/&__=(_:_:)-7h6z1)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/uint128/&__=(_:_:)-c0o3)
- [static func &<<= (inout UInt128, UInt128)](/documentation/swift/uint128/&__=(_:_:)-l1y8)

###### Initializers

- [init<T>(T)](/documentation/swift/uint128/init(_:)-7l4pg)
- [init?(String)](/documentation/swift/uint128/init(_:)-7reec)
- [init?<S>(S, radix: Int)](/documentation/swift/uint128/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/uint128/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/uint128/init(exactly:)-4u158)
- [init(littleEndian: Self)](/documentation/swift/uint128/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/uint128/bigendian)
- [var byteSwapped: UInt128](/documentation/swift/uint128/byteswapped)
- [var leadingZeroBitCount: Int](/documentation/swift/uint128/leadingzerobitcount)
- [var littleEndian: Self](/documentation/swift/uint128/littleendian)
- [var nonzeroBitCount: Int](/documentation/swift/uint128/nonzerobitcount)

###### Instance Methods

- [func addingReportingOverflow(UInt128) -> (partialValue: UInt128, overflow: Bool)](/documentation/swift/uint128/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: UInt128) -> (partialValue: UInt128, overflow: Bool)](/documentation/swift/uint128/dividedreportingoverflow(by:))
- [func multipliedFullWidth(by: Self) -> (high: Self, low: Self.Magnitude)](/documentation/swift/uint128/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: UInt128) -> (partialValue: UInt128, overflow: Bool)](/documentation/swift/uint128/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: UInt128) -> (partialValue: UInt128, overflow: Bool)](/documentation/swift/uint128/remainderreportingoverflow(dividingby:))
- [func subtractingReportingOverflow(UInt128) -> (partialValue: UInt128, overflow: Bool)](/documentation/swift/uint128/subtractingreportingoverflow(_:))

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/uint128/bitwidth)
- [static var max: UInt128](/documentation/swift/uint128/max)
- [static var min: UInt128](/documentation/swift/uint128/min)

###### Type Methods

- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/uint128/random(in:)-1tk4g)
- [static func random(in: Range<Self>) -> Self](/documentation/swift/uint128/random(in:)-6h05w)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/uint128/random(in:using:)-1acx9)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/uint128/random(in:using:)-535e1)
- [Hashable Implementations](/documentation/swift/uint128/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/uint128/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/uint128/hash(into:))
- [Numeric Implementations](/documentation/swift/uint128/numeric-implementations)

###### Operators

- [static func * (UInt128, UInt128) -> UInt128](/documentation/swift/uint128/*(_:_:))
- [static func *= (inout UInt128, UInt128)](/documentation/swift/uint128/*=(_:_:))

###### Initializers

- [init?<T>(exactly: T)](/documentation/swift/uint128/init(exactly:)-rax0)

###### Instance Properties

- [var magnitude: UInt128](/documentation/swift/uint128/magnitude-5klmz)

###### Type Aliases

- [UInt128.Magnitude](/documentation/swift/uint128/magnitude-swift.typealias)
- [Strideable Implementations](/documentation/swift/uint128/strideable-implementations)

###### Type Aliases

- [UInt128.Stride](/documentation/swift/uint128/stride)
- [UnsignedInteger Implementations](/documentation/swift/uint128/unsignedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/uint128/init(_:)-6rv10)
- [init?<T>(exactly: T)](/documentation/swift/uint128/init(exactly:)-8mbah)

###### Instance Properties

- [var magnitude: Self](/documentation/swift/uint128/magnitude-jpk2)

###### Instance Methods

- [func dividingFullWidth((high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)](/documentation/swift/uint128/dividingfullwidth(_:))

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/uint128/issigned)
- [static var max: Self](/documentation/swift/uint128/max-7lxqa)
- [static var min: Self](/documentation/swift/uint128/min-3kaxv)

##### Signed Integers

- [Int8](/documentation/swift/int8)

###### Structures

- [Int8.Words](/documentation/swift/int8/words-swift.struct)

###### Initializers

- [init(Int8)](/documentation/swift/int8/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/int8/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int8/words-swift.struct/endindex)
- [var indices: Int8.Words.Indices](/documentation/swift/int8/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int8/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int8/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int8/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int8/words-swift.struct/subscript(_:))

###### Type Aliases

- [Int8.Words.Element](/documentation/swift/int8/words-swift.struct/element)
- [Int8.Words.Index](/documentation/swift/int8/words-swift.struct/index)
- [Int8.Words.Indices](/documentation/swift/int8/words-swift.struct/indices-swift.typealias)
- [Int8.Words.Iterator](/documentation/swift/int8/words-swift.struct/iterator)
- [Int8.Words.SubSequence](/documentation/swift/int8/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int8/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/int8/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int8/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int8/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int8/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int8/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int8/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int8/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int8/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int8/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/int8/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int8/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int8/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int8/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int8/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int8/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int8/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int8/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int8/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int8/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int8/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int8/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int8/words-swift.struct/map(_:)-rork)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int8/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int8/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int8/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int8/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int8/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int8/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int8/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int8/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int8/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int8/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int8/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int8/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int8/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int8/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int8/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int8/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int8/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int8/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int8/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int8/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int8/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int8/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int8/words-swift.struct/flatmap(_:)-2rn7w)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int8/words-swift.struct/flatmap(_:)-437f4)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int8/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int8/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int8/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int8/words-swift.struct/map(_:)-5fl07)
- [func max() -> Self.Element?](/documentation/swift/int8/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int8/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int8/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int8/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int8/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int8/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int8/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int8/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int8/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int8/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int8/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int8/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int8/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (Int8, Int8) -> Bool](/documentation/swift/int8/!=(_:_:))
- [static func &= (inout Int8, Int8)](/documentation/swift/int8/&=(_:_:))
- [static func &>>= (inout Int8, Int8)](/documentation/swift/int8/&__=(_:_:)-17e9w)
- [static func &<<= (inout Int8, Int8)](/documentation/swift/int8/&__=(_:_:)-7gdrc)
- [static func *= (inout Int8, Int8)](/documentation/swift/int8/*=(_:_:))
- [static func += (inout Int8, Int8)](/documentation/swift/int8/+=(_:_:))
- [static func -= (inout Int8, Int8)](/documentation/swift/int8/-=(_:_:))
- [static func == (Int8, Int8) -> Bool](/documentation/swift/int8/==(_:_:))
- [static func < (Int8, Int8) -> Bool](/documentation/swift/int8/_(_:_:)-1kdfe)
- [static func |= (inout Int8, Int8)](/documentation/swift/int8/_=(_:_:)-19gzu)
- [static func /= (inout Int8, Int8)](/documentation/swift/int8/_=(_:_:)-2auqb)
- [static func ^= (inout Int8, Int8)](/documentation/swift/int8/_=(_:_:)-2mpgr)
- [static func %= (inout Int8, Int8)](/documentation/swift/int8/_=(_:_:)-3o9cs)

###### Initializers

- [init(CGFloat)](/documentation/swift/int8/init(_:)-2vdru)
- [init(Float16)](/documentation/swift/int8/init(_:)-44cer)
- [init(Double)](/documentation/swift/int8/init(_:)-47zy8)
- [init(NSNumber)](/documentation/swift/int8/init(_:)-4erk2)
- [init(Float)](/documentation/swift/int8/init(_:)-6g8q9)
- [init(Float80)](/documentation/swift/int8/init(_:)-7renq)
- [init(bitPattern: UInt8)](/documentation/swift/int8/init(bitpattern:))
- [init?(exactly: Float80)](/documentation/swift/int8/init(exactly:)-1vh5j)
- [init?(exactly: Float)](/documentation/swift/int8/init(exactly:)-6zkv6)
- [init?(exactly: Double)](/documentation/swift/int8/init(exactly:)-72z4)
- [init?(exactly: Float16)](/documentation/swift/int8/init(exactly:)-78es1)
- [init?(exactly: NSNumber)](/documentation/swift/int8/init(exactly:)-9cjj7)
- [init(truncating: NSNumber)](/documentation/swift/int8/init(truncating:))

###### Instance Properties

- [var byteSwapped: Int8](/documentation/swift/int8/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int8/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/int8/leadingzerobitcount)
- [var magnitude: UInt8](/documentation/swift/int8/magnitude-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int8/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int8/trailingzerobitcount)
- [var words: Int8.Words](/documentation/swift/int8/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(Int8) -> (partialValue: Int8, overflow: Bool)](/documentation/swift/int8/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Int8) -> (partialValue: Int8, overflow: Bool)](/documentation/swift/int8/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: Int8, low: Int8.Magnitude)) -> (quotient: Int8, remainder: Int8)](/documentation/swift/int8/dividingfullwidth(_:))
- [func multipliedFullWidth(by: Int8) -> (high: Int8, low: Int8.Magnitude)](/documentation/swift/int8/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: Int8) -> (partialValue: Int8, overflow: Bool)](/documentation/swift/int8/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int8) -> (partialValue: Int8, overflow: Bool)](/documentation/swift/int8/remainderreportingoverflow(dividingby:))
- [func signum() -> Int8](/documentation/swift/int8/signum())
- [func subtractingReportingOverflow(Int8) -> (partialValue: Int8, overflow: Bool)](/documentation/swift/int8/subtractingreportingoverflow(_:))

###### Type Aliases

- [Int8.IntegerLiteralType](/documentation/swift/int8/integerliteraltype)
- [Int8.Magnitude](/documentation/swift/int8/magnitude-swift.typealias)
- [Int8.Stride](/documentation/swift/int8/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/int8/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int8/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int8/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int8/+=(_:_:)-2acub)
- [static func -= (inout Self, Self)](/documentation/swift/int8/-=(_:_:)-21yov)

###### Type Properties

- [static var zero: Self](/documentation/swift/int8/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int8/atomicrepresentable-implementations)

###### Type Aliases

- [Int8.AtomicRepresentation](/documentation/swift/int8/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int8.AtomicRepresentation) -> Int8](/documentation/swift/int8/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int8) -> Int8.AtomicRepresentation](/documentation/swift/int8/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int8/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int8/!=(_:_:)-5cims)
- [static func & (Int8, Int8) -> Int8](/documentation/swift/int8/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int8/&(_:_:)-6jf06)
- [static func * (Int8, Int8) -> Int8](/documentation/swift/int8/*(_:_:))
- [static func + (Int8, Int8) -> Int8](/documentation/swift/int8/+(_:_:))
- [static func - (Int8, Int8) -> Int8](/documentation/swift/int8/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int8/==(_:_:)-exky)
- [static func > (Self, Self) -> Bool](/documentation/swift/int8/_(_:_:)-1jlfi)
- [static func ^ (Int8, Int8) -> Int8](/documentation/swift/int8/_(_:_:)-346io)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int8/_(_:_:)-53qq)
- [static func | (Int8, Int8) -> Int8](/documentation/swift/int8/_(_:_:)-5p6eu)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int8/_(_:_:)-615a6)
- [static func | (Self, Self) -> Self](/documentation/swift/int8/_(_:_:)-662qp)
- [static func % (Int8, Int8) -> Int8](/documentation/swift/int8/_(_:_:)-6tefc)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int8/_(_:_:)-a3sx)
- [static func / (Int8, Int8) -> Int8](/documentation/swift/int8/_(_:_:)-aic4)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int8/_=(_:_:)-10tl1)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int8/_=(_:_:)-3nz2d)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int8/_=(_:_:)-41bgc)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int8/_=(_:_:)-5bita)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int8/__(_:_:)-3z21o)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int8/__(_:_:)-7wosz)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int8/__(_:_:)-9i518)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int8/__(_:_:)-moua)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int8/__=(_:_:)-40egk)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int8/__=(_:_:)-53mkr)
- [static func ~ (Self) -> Self](/documentation/swift/int8/~(_:))

###### Initializers

- [init()](/documentation/swift/int8/init())
- [init<Other>(clamping: Other)](/documentation/swift/int8/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int8/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int8/bitwidth-swift.property)
- [var description: String](/documentation/swift/int8/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/int8/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/int8/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int8/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int8/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/int8/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int8/'...(_:)-4f0gs)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int8/'...(_:)-4tgui)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int8/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int8/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int8/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/int8/_(_:_:)-14f22)
- [static func > (Self, Self) -> Bool](/documentation/swift/int8/_(_:_:)-1r3uj)
- [static func > (Int8, Int8) -> Bool](/documentation/swift/int8/_(_:_:)-59kbk)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int8/_=(_:_:)-2nsgl)
- [static func <= (Int8, Int8) -> Bool](/documentation/swift/int8/_=(_:_:)-7pwh6)
- [static func >= (Int8, Int8) -> Bool](/documentation/swift/int8/_=(_:_:)-863du)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int8/_=(_:_:)-qbgp)
- [CustomReflectable Implementations](/documentation/swift/int8/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int8/custommirror)
- [Decodable Implementations](/documentation/swift/int8/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int8/init(from:))
- [Encodable Implementations](/documentation/swift/int8/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int8/encode(to:))
- [Equatable Implementations](/documentation/swift/int8/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int8/!=(_:_:)-2hjuz)
- [static func != (Self, Self) -> Bool](/documentation/swift/int8/!=(_:_:)-7isjt)
- [static func == (Self, Self) -> Bool](/documentation/swift/int8/==(_:_:)-1h8wx)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int8/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int8/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int8/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int8/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int8/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int8/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int8/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int8/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int8/&-=(_:_:))
- [static func &>> (Int8, Int8) -> Int8](/documentation/swift/int8/&__(_:_:)-1v821)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int8/&__(_:_:)-24uqw)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int8/&__(_:_:)-2a90q)
- [static func &<< (Int8, Int8) -> Int8](/documentation/swift/int8/&__(_:_:)-4szuk)
- [static func &<< (Self, Self) -> Self](/documentation/swift/int8/&__(_:_:)-7028d)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int8/&__(_:_:)-9x51j)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int8/&__=(_:_:)-6g9h1)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int8/&__=(_:_:)-9dar0)

###### Initializers

- [init<T>(T)](/documentation/swift/int8/init(_:)-7lqol)
- [init?(String)](/documentation/swift/int8/init(_:)-89uu)
- [init?<S>(S, radix: Int)](/documentation/swift/int8/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int8/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int8/init(exactly:)-16mcu)
- [init(littleEndian: Self)](/documentation/swift/int8/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int8/bigendian)
- [var littleEndian: Self](/documentation/swift/int8/littleendian)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int8/random(in:)-2fyvz)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int8/random(in:)-5kgo1)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int8/random(in:using:)-1n6up)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int8/random(in:using:)-8ennz)
- [Hashable Implementations](/documentation/swift/int8/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int8/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int8/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int8/simdscalar-implementations)

###### Structures

- [Int8.SIMD16Storage](/documentation/swift/int8/simd16storage)

###### Initializers

- [init()](/documentation/swift/int8/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd16storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD16Storage.Scalar](/documentation/swift/int8/simd16storage/scalar)
- [Int8.SIMD2Storage](/documentation/swift/int8/simd2storage)

###### Initializers

- [init()](/documentation/swift/int8/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd2storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD2Storage.Scalar](/documentation/swift/int8/simd2storage/scalar)
- [Int8.SIMD32Storage](/documentation/swift/int8/simd32storage)

###### Initializers

- [init()](/documentation/swift/int8/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd32storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD32Storage.Scalar](/documentation/swift/int8/simd32storage/scalar)
- [Int8.SIMD4Storage](/documentation/swift/int8/simd4storage)

###### Initializers

- [init()](/documentation/swift/int8/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd4storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD4Storage.Scalar](/documentation/swift/int8/simd4storage/scalar)
- [Int8.SIMD64Storage](/documentation/swift/int8/simd64storage)

###### Initializers

- [init()](/documentation/swift/int8/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd64storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD64Storage.Scalar](/documentation/swift/int8/simd64storage/scalar)
- [Int8.SIMD8Storage](/documentation/swift/int8/simd8storage)

###### Initializers

- [init()](/documentation/swift/int8/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int8/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int8](/documentation/swift/int8/simd8storage/subscript(_:))

###### Type Aliases

- [Int8.SIMD8Storage.Scalar](/documentation/swift/int8/simd8storage/scalar)

###### Type Aliases

- [Int8.SIMDMaskScalar](/documentation/swift/int8/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int8/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int8/init(_:)-5sm6h)
- [init?<T>(exactly: T)](/documentation/swift/int8/init(exactly:)-9vj4n)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int8/issigned)
- [static var max: Self](/documentation/swift/int8/max)
- [static var min: Self](/documentation/swift/int8/min)
- [SignedNumeric Implementations](/documentation/swift/int8/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int8/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int8/negate())
- [Int16](/documentation/swift/int16)

###### Structures

- [Int16.Words](/documentation/swift/int16/words-swift.struct)

###### Initializers

- [init(Int16)](/documentation/swift/int16/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/int16/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int16/words-swift.struct/endindex)
- [var indices: Int16.Words.Indices](/documentation/swift/int16/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int16/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int16/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int16/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int16/words-swift.struct/subscript(_:))

###### Type Aliases

- [Int16.Words.Element](/documentation/swift/int16/words-swift.struct/element)
- [Int16.Words.Index](/documentation/swift/int16/words-swift.struct/index)
- [Int16.Words.Indices](/documentation/swift/int16/words-swift.struct/indices-swift.typealias)
- [Int16.Words.Iterator](/documentation/swift/int16/words-swift.struct/iterator)
- [Int16.Words.SubSequence](/documentation/swift/int16/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int16/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/int16/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int16/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int16/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int16/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int16/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int16/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int16/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int16/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int16/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/int16/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int16/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int16/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int16/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int16/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int16/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int16/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int16/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int16/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int16/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int16/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int16/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int16/words-swift.struct/map(_:)-9jtpi)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int16/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int16/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int16/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int16/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int16/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int16/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int16/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int16/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int16/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int16/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int16/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int16/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int16/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int16/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int16/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int16/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int16/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int16/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int16/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int16/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int16/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int16/words-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int16/words-swift.struct/flatmap(_:)-5tf8l)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int16/words-swift.struct/flatmap(_:)-9i694)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int16/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int16/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int16/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int16/words-swift.struct/map(_:)-8rqgn)
- [func max() -> Self.Element?](/documentation/swift/int16/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int16/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int16/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int16/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int16/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int16/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int16/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int16/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int16/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int16/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int16/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int16/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int16/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (Int16, Int16) -> Bool](/documentation/swift/int16/!=(_:_:))
- [static func &= (inout Int16, Int16)](/documentation/swift/int16/&=(_:_:))
- [static func &<<= (inout Int16, Int16)](/documentation/swift/int16/&__=(_:_:)-99pwo)
- [static func &>>= (inout Int16, Int16)](/documentation/swift/int16/&__=(_:_:)-p5ty)
- [static func *= (inout Int16, Int16)](/documentation/swift/int16/*=(_:_:))
- [static func += (inout Int16, Int16)](/documentation/swift/int16/+=(_:_:))
- [static func -= (inout Int16, Int16)](/documentation/swift/int16/-=(_:_:))
- [static func == (Int16, Int16) -> Bool](/documentation/swift/int16/==(_:_:))
- [static func < (Int16, Int16) -> Bool](/documentation/swift/int16/_(_:_:)-47ytd)
- [static func /= (inout Int16, Int16)](/documentation/swift/int16/_=(_:_:)-15qjk)
- [static func %= (inout Int16, Int16)](/documentation/swift/int16/_=(_:_:)-1zcaj)
- [static func ^= (inout Int16, Int16)](/documentation/swift/int16/_=(_:_:)-3hk1a)
- [static func |= (inout Int16, Int16)](/documentation/swift/int16/_=(_:_:)-9yk6s)

###### Initializers

- [init(Float16)](/documentation/swift/int16/init(_:)-192r7)
- [init(Float)](/documentation/swift/int16/init(_:)-4h6i5)
- [init(CGFloat)](/documentation/swift/int16/init(_:)-5r9gw)
- [init(Double)](/documentation/swift/int16/init(_:)-6paha)
- [init(Float80)](/documentation/swift/int16/init(_:)-8tp32)
- [init(NSNumber)](/documentation/swift/int16/init(_:)-9hqpm)
- [init(bitPattern: UInt16)](/documentation/swift/int16/init(bitpattern:))
- [init?(exactly: Float80)](/documentation/swift/int16/init(exactly:)-1zxj5)
- [init?(exactly: Double)](/documentation/swift/int16/init(exactly:)-3vet0)
- [init?(exactly: Float16)](/documentation/swift/int16/init(exactly:)-5zk1)
- [init?(exactly: NSNumber)](/documentation/swift/int16/init(exactly:)-8omg3)
- [init?(exactly: Float)](/documentation/swift/int16/init(exactly:)-8v4ka)
- [init(truncating: NSNumber)](/documentation/swift/int16/init(truncating:))

###### Instance Properties

- [var byteSwapped: Int16](/documentation/swift/int16/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int16/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/int16/leadingzerobitcount)
- [var magnitude: UInt16](/documentation/swift/int16/magnitude-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int16/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int16/trailingzerobitcount)
- [var words: Int16.Words](/documentation/swift/int16/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(Int16) -> (partialValue: Int16, overflow: Bool)](/documentation/swift/int16/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Int16) -> (partialValue: Int16, overflow: Bool)](/documentation/swift/int16/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: Int16, low: Int16.Magnitude)) -> (quotient: Int16, remainder: Int16)](/documentation/swift/int16/dividingfullwidth(_:))
- [func multipliedFullWidth(by: Int16) -> (high: Int16, low: Int16.Magnitude)](/documentation/swift/int16/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: Int16) -> (partialValue: Int16, overflow: Bool)](/documentation/swift/int16/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int16) -> (partialValue: Int16, overflow: Bool)](/documentation/swift/int16/remainderreportingoverflow(dividingby:))
- [func signum() -> Int16](/documentation/swift/int16/signum())
- [func subtractingReportingOverflow(Int16) -> (partialValue: Int16, overflow: Bool)](/documentation/swift/int16/subtractingreportingoverflow(_:))

###### Type Aliases

- [Int16.IntegerLiteralType](/documentation/swift/int16/integerliteraltype)
- [Int16.Magnitude](/documentation/swift/int16/magnitude-swift.typealias)
- [Int16.Stride](/documentation/swift/int16/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/int16/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int16/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int16/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int16/+=(_:_:)-6k4zy)
- [static func -= (inout Self, Self)](/documentation/swift/int16/-=(_:_:)-8ppup)

###### Type Properties

- [static var zero: Self](/documentation/swift/int16/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int16/atomicrepresentable-implementations)

###### Type Aliases

- [Int16.AtomicRepresentation](/documentation/swift/int16/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int16.AtomicRepresentation) -> Int16](/documentation/swift/int16/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int16) -> Int16.AtomicRepresentation](/documentation/swift/int16/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int16/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int16/!=(_:_:)-35jaq)
- [static func & (Int16, Int16) -> Int16](/documentation/swift/int16/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int16/&(_:_:)-11qqq)
- [static func * (Int16, Int16) -> Int16](/documentation/swift/int16/*(_:_:))
- [static func + (Int16, Int16) -> Int16](/documentation/swift/int16/+(_:_:))
- [static func - (Int16, Int16) -> Int16](/documentation/swift/int16/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int16/==(_:_:)-1ntek)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int16/_(_:_:)-2n4zk)
- [static func % (Int16, Int16) -> Int16](/documentation/swift/int16/_(_:_:)-412im)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int16/_(_:_:)-4d8dd)
- [static func | (Self, Self) -> Self](/documentation/swift/int16/_(_:_:)-5s4nw)
- [static func ^ (Int16, Int16) -> Int16](/documentation/swift/int16/_(_:_:)-5yszf)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int16/_(_:_:)-6e2wc)
- [static func | (Int16, Int16) -> Int16](/documentation/swift/int16/_(_:_:)-6tyn)
- [static func > (Self, Self) -> Bool](/documentation/swift/int16/_(_:_:)-93553)
- [static func / (Int16, Int16) -> Int16](/documentation/swift/int16/_(_:_:)-kd81)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int16/_=(_:_:)-1hfy3)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int16/_=(_:_:)-3c0fc)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int16/_=(_:_:)-4hrh6)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int16/_=(_:_:)-808tq)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int16/__(_:_:)-1zwhf)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int16/__(_:_:)-2ve4s)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int16/__(_:_:)-64bg6)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int16/__(_:_:)-70yoj)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int16/__=(_:_:)-1hmwr)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int16/__=(_:_:)-88k9n)
- [static func ~ (Self) -> Self](/documentation/swift/int16/~(_:))

###### Initializers

- [init()](/documentation/swift/int16/init())
- [init<Other>(clamping: Other)](/documentation/swift/int16/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int16/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int16/bitwidth-swift.property)
- [var description: String](/documentation/swift/int16/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/int16/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/int16/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int16/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int16/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/int16/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int16/'...(_:)-2vv5k)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int16/'...(_:)-6emvd)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int16/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int16/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int16/'.._(_:_:))
- [static func > (Int16, Int16) -> Bool](/documentation/swift/int16/_(_:_:)-2bfow)
- [static func > (Self, Self) -> Bool](/documentation/swift/int16/_(_:_:)-37egm)
- [static func < (Self, Self) -> Bool](/documentation/swift/int16/_(_:_:)-45mu2)
- [static func >= (Int16, Int16) -> Bool](/documentation/swift/int16/_=(_:_:)-4rhds)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int16/_=(_:_:)-4tbcs)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int16/_=(_:_:)-6bkn5)
- [static func <= (Int16, Int16) -> Bool](/documentation/swift/int16/_=(_:_:)-7wokl)
- [CustomReflectable Implementations](/documentation/swift/int16/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int16/custommirror)
- [Decodable Implementations](/documentation/swift/int16/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int16/init(from:))
- [Encodable Implementations](/documentation/swift/int16/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int16/encode(to:))
- [Equatable Implementations](/documentation/swift/int16/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int16/!=(_:_:)-4oxze)
- [static func != (Self, Self) -> Bool](/documentation/swift/int16/!=(_:_:)-7nhhf)
- [static func == (Self, Self) -> Bool](/documentation/swift/int16/==(_:_:)-811lg)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int16/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int16/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int16/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int16/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int16/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int16/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int16/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int16/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int16/&-=(_:_:))
- [static func &<< (Int16, Int16) -> Int16](/documentation/swift/int16/&__(_:_:)-11whl)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int16/&__(_:_:)-177cn)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int16/&__(_:_:)-2vu0k)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int16/&__(_:_:)-5kz3z)
- [static func &<< (Self, Self) -> Self](/documentation/swift/int16/&__(_:_:)-6669c)
- [static func &>> (Int16, Int16) -> Int16](/documentation/swift/int16/&__(_:_:)-8zhel)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int16/&__=(_:_:)-1cj5m)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int16/&__=(_:_:)-7px1u)

###### Initializers

- [init?(String)](/documentation/swift/int16/init(_:)-733m5)
- [init<T>(T)](/documentation/swift/int16/init(_:)-90imc)
- [init?<S>(S, radix: Int)](/documentation/swift/int16/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int16/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int16/init(exactly:)-71m8j)
- [init(littleEndian: Self)](/documentation/swift/int16/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int16/bigendian)
- [var littleEndian: Self](/documentation/swift/int16/littleendian)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int16/random(in:)-3zzix)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int16/random(in:)-4qzm1)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int16/random(in:using:)-25p6v)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int16/random(in:using:)-m203)
- [Hashable Implementations](/documentation/swift/int16/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int16/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int16/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int16/simdscalar-implementations)

###### Structures

- [Int16.SIMD16Storage](/documentation/swift/int16/simd16storage)

###### Initializers

- [init()](/documentation/swift/int16/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd16storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD16Storage.Scalar](/documentation/swift/int16/simd16storage/scalar)
- [Int16.SIMD2Storage](/documentation/swift/int16/simd2storage)

###### Initializers

- [init()](/documentation/swift/int16/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd2storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD2Storage.Scalar](/documentation/swift/int16/simd2storage/scalar)
- [Int16.SIMD32Storage](/documentation/swift/int16/simd32storage)

###### Initializers

- [init()](/documentation/swift/int16/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd32storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD32Storage.Scalar](/documentation/swift/int16/simd32storage/scalar)
- [Int16.SIMD4Storage](/documentation/swift/int16/simd4storage)

###### Initializers

- [init()](/documentation/swift/int16/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd4storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD4Storage.Scalar](/documentation/swift/int16/simd4storage/scalar)
- [Int16.SIMD64Storage](/documentation/swift/int16/simd64storage)

###### Initializers

- [init()](/documentation/swift/int16/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd64storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD64Storage.Scalar](/documentation/swift/int16/simd64storage/scalar)
- [Int16.SIMD8Storage](/documentation/swift/int16/simd8storage)

###### Initializers

- [init()](/documentation/swift/int16/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int16/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int16](/documentation/swift/int16/simd8storage/subscript(_:))

###### Type Aliases

- [Int16.SIMD8Storage.Scalar](/documentation/swift/int16/simd8storage/scalar)

###### Type Aliases

- [Int16.SIMDMaskScalar](/documentation/swift/int16/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int16/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int16/init(_:)-409to)
- [init?<T>(exactly: T)](/documentation/swift/int16/init(exactly:)-7l3f5)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int16/issigned)
- [static var max: Self](/documentation/swift/int16/max)
- [static var min: Self](/documentation/swift/int16/min)
- [SignedNumeric Implementations](/documentation/swift/int16/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int16/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int16/negate())
- [Int32](/documentation/swift/int32)

###### Structures

- [Int32.Words](/documentation/swift/int32/words-swift.struct)

###### Initializers

- [init(Int32)](/documentation/swift/int32/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/int32/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int32/words-swift.struct/endindex)
- [var indices: Int32.Words.Indices](/documentation/swift/int32/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int32/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int32/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int32/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int32/words-swift.struct/subscript(_:))

###### Type Aliases

- [Int32.Words.Element](/documentation/swift/int32/words-swift.struct/element)
- [Int32.Words.Index](/documentation/swift/int32/words-swift.struct/index)
- [Int32.Words.Indices](/documentation/swift/int32/words-swift.struct/indices-swift.typealias)
- [Int32.Words.Iterator](/documentation/swift/int32/words-swift.struct/iterator)
- [Int32.Words.SubSequence](/documentation/swift/int32/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int32/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/int32/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int32/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int32/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int32/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int32/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int32/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int32/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int32/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int32/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/int32/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int32/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int32/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int32/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int32/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int32/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int32/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int32/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int32/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int32/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int32/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int32/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int32/words-swift.struct/map(_:)-5jw3d)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int32/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int32/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int32/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int32/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int32/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int32/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int32/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int32/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int32/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int32/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int32/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int32/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int32/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int32/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int32/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int32/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int32/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int32/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int32/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int32/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int32/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int32/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int32/words-swift.struct/flatmap(_:)-6792j)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int32/words-swift.struct/flatmap(_:)-7kqh5)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int32/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int32/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int32/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int32/words-swift.struct/map(_:)-3ujpm)
- [func max() -> Self.Element?](/documentation/swift/int32/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int32/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int32/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int32/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int32/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int32/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int32/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int32/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int32/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int32/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int32/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int32/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int32/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (Int32, Int32) -> Bool](/documentation/swift/int32/!=(_:_:))
- [static func &= (inout Int32, Int32)](/documentation/swift/int32/&=(_:_:))
- [static func &<<= (inout Int32, Int32)](/documentation/swift/int32/&__=(_:_:)-5xpt1)
- [static func &>>= (inout Int32, Int32)](/documentation/swift/int32/&__=(_:_:)-9l16)
- [static func *= (inout Int32, Int32)](/documentation/swift/int32/*=(_:_:))
- [static func += (inout Int32, Int32)](/documentation/swift/int32/+=(_:_:))
- [static func -= (inout Int32, Int32)](/documentation/swift/int32/-=(_:_:))
- [static func == (Int32, Int32) -> Bool](/documentation/swift/int32/==(_:_:))
- [static func < (Int32, Int32) -> Bool](/documentation/swift/int32/_(_:_:)-3k2xk)
- [static func ^= (inout Int32, Int32)](/documentation/swift/int32/_=(_:_:)-46xu7)
- [static func |= (inout Int32, Int32)](/documentation/swift/int32/_=(_:_:)-6hsuo)
- [static func %= (inout Int32, Int32)](/documentation/swift/int32/_=(_:_:)-8flrz)
- [static func /= (inout Int32, Int32)](/documentation/swift/int32/_=(_:_:)-997bi)

###### Initializers

- [init(Float80)](/documentation/swift/int32/init(_:)-1817u)
- [init(Float)](/documentation/swift/int32/init(_:)-2px8y)
- [init(Float16)](/documentation/swift/int32/init(_:)-34fue)
- [init(NSNumber)](/documentation/swift/int32/init(_:)-3zpp6)
- [init(CGFloat)](/documentation/swift/int32/init(_:)-5nznu)
- [init(Double)](/documentation/swift/int32/init(_:)-k0sh)
- [init(bitPattern: UInt32)](/documentation/swift/int32/init(bitpattern:))
- [init?(exactly: Float16)](/documentation/swift/int32/init(exactly:)-3dltv)
- [init?(exactly: NSNumber)](/documentation/swift/int32/init(exactly:)-5hlj9)
- [init?(exactly: Double)](/documentation/swift/int32/init(exactly:)-79vj5)
- [init?(exactly: Float80)](/documentation/swift/int32/init(exactly:)-7dio6)
- [init?(exactly: Float)](/documentation/swift/int32/init(exactly:)-9tpyy)
- [init(truncating: NSNumber)](/documentation/swift/int32/init(truncating:))

###### Instance Properties

- [var byteSwapped: Int32](/documentation/swift/int32/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int32/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/int32/leadingzerobitcount)
- [var magnitude: UInt32](/documentation/swift/int32/magnitude-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int32/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int32/trailingzerobitcount)
- [var words: Int32.Words](/documentation/swift/int32/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(Int32) -> (partialValue: Int32, overflow: Bool)](/documentation/swift/int32/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Int32) -> (partialValue: Int32, overflow: Bool)](/documentation/swift/int32/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: Int32, low: Int32.Magnitude)) -> (quotient: Int32, remainder: Int32)](/documentation/swift/int32/dividingfullwidth(_:))
- [func multipliedFullWidth(by: Int32) -> (high: Int32, low: Int32.Magnitude)](/documentation/swift/int32/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: Int32) -> (partialValue: Int32, overflow: Bool)](/documentation/swift/int32/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int32) -> (partialValue: Int32, overflow: Bool)](/documentation/swift/int32/remainderreportingoverflow(dividingby:))
- [func signum() -> Int32](/documentation/swift/int32/signum())
- [func subtractingReportingOverflow(Int32) -> (partialValue: Int32, overflow: Bool)](/documentation/swift/int32/subtractingreportingoverflow(_:))

###### Type Aliases

- [Int32.IntegerLiteralType](/documentation/swift/int32/integerliteraltype)
- [Int32.Magnitude](/documentation/swift/int32/magnitude-swift.typealias)
- [Int32.Stride](/documentation/swift/int32/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/int32/bitwidth)
- [static var mlMultiArrayDataType: MLMultiArrayDataType](/documentation/swift/int32/mlmultiarraydatatype)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int32/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int32/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int32/+=(_:_:)-6ck44)
- [static func -= (inout Self, Self)](/documentation/swift/int32/-=(_:_:)-8jb43)

###### Type Properties

- [static var zero: Self](/documentation/swift/int32/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int32/atomicrepresentable-implementations)

###### Type Aliases

- [Int32.AtomicRepresentation](/documentation/swift/int32/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int32.AtomicRepresentation) -> Int32](/documentation/swift/int32/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int32) -> Int32.AtomicRepresentation](/documentation/swift/int32/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int32/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int32/!=(_:_:)-2y35c)
- [static func & (Int32, Int32) -> Int32](/documentation/swift/int32/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int32/&(_:_:)-ui0w)
- [static func * (Int32, Int32) -> Int32](/documentation/swift/int32/*(_:_:))
- [static func + (Int32, Int32) -> Int32](/documentation/swift/int32/+(_:_:))
- [static func - (Int32, Int32) -> Int32](/documentation/swift/int32/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int32/==(_:_:)-1giba)
- [static func ^ (Int32, Int32) -> Int32](/documentation/swift/int32/_(_:_:)-1xb80)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int32/_(_:_:)-2t9oy)
- [static func % (Int32, Int32) -> Int32](/documentation/swift/int32/_(_:_:)-41rsu)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int32/_(_:_:)-4jn4j)
- [static func | (Int32, Int32) -> Int32](/documentation/swift/int32/_(_:_:)-5i6yu)
- [static func | (Self, Self) -> Self](/documentation/swift/int32/_(_:_:)-5zn2u)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int32/_(_:_:)-67qna)
- [static func / (Int32, Int32) -> Int32](/documentation/swift/int32/_(_:_:)-6fvom)
- [static func > (Self, Self) -> Bool](/documentation/swift/int32/_(_:_:)-9adkd)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int32/_=(_:_:)-1nkpl)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int32/_=(_:_:)-3jitm)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int32/_=(_:_:)-4p7mg)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int32/_=(_:_:)-86dc4)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int32/__(_:_:)-27cld)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int32/__(_:_:)-2ny6e)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int32/__(_:_:)-5xz7g)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int32/__(_:_:)-78esh)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int32/__=(_:_:)-1o1y1)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int32/__=(_:_:)-80z6h)
- [static func ~ (Self) -> Self](/documentation/swift/int32/~(_:))

###### Initializers

- [init()](/documentation/swift/int32/init())
- [init<Other>(clamping: Other)](/documentation/swift/int32/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int32/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int32/bitwidth-swift.property)
- [var description: String](/documentation/swift/int32/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/int32/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/int32/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int32/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int32/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/int32/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int32/'...(_:)-33g6y)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int32/'...(_:)-67bt7)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int32/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int32/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int32/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/int32/_(_:_:)-30znw)
- [static func < (Self, Self) -> Bool](/documentation/swift/int32/_(_:_:)-4d2t4)
- [static func > (Int32, Int32) -> Bool](/documentation/swift/int32/_(_:_:)-5p8ms)
- [static func >= (Int32, Int32) -> Bool](/documentation/swift/int32/_=(_:_:)-1ukxu)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int32/_=(_:_:)-4n6ly)
- [static func <= (Int32, Int32) -> Bool](/documentation/swift/int32/_=(_:_:)-5corj)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int32/_=(_:_:)-658lf)
- [CustomReflectable Implementations](/documentation/swift/int32/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int32/custommirror)
- [Decodable Implementations](/documentation/swift/int32/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int32/init(from:))
- [Encodable Implementations](/documentation/swift/int32/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int32/encode(to:))
- [Equatable Implementations](/documentation/swift/int32/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int32/!=(_:_:)-4itgo)
- [static func != (Self, Self) -> Bool](/documentation/swift/int32/!=(_:_:)-7g1j5)
- [static func == (Self, Self) -> Bool](/documentation/swift/int32/==(_:_:)-88moe)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int32/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int32/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int32/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int32/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int32/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int32/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int32/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int32/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int32/&-=(_:_:))
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int32/&__(_:_:)-1djlp)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int32/&__(_:_:)-2odv2)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int32/&__(_:_:)-5dixx)
- [static func &<< (Self, Self) -> Self](/documentation/swift/int32/&__(_:_:)-6cb7m)
- [static func &>> (Int32, Int32) -> Int32](/documentation/swift/int32/&__(_:_:)-7sh72)
- [static func &<< (Int32, Int32) -> Int32](/documentation/swift/int32/&__(_:_:)-98mep)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int32/&__=(_:_:)-1642g)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int32/&__=(_:_:)-7weao)

###### Initializers

- [init?(String)](/documentation/swift/int32/init(_:)-6wz3b)
- [init<T>(T)](/documentation/swift/int32/init(_:)-97yta)
- [init?<S>(S, radix: Int)](/documentation/swift/int32/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int32/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int32/init(exactly:)-77qpt)
- [init(littleEndian: Self)](/documentation/swift/int32/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int32/bigendian)
- [var littleEndian: Self](/documentation/swift/int32/littleendian)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int32/random(in:)-47fh7)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int32/random(in:)-4xbuz)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int32/random(in:using:)-2c18d)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int32/random(in:using:)-thxt)
- [Hashable Implementations](/documentation/swift/int32/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int32/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int32/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int32/simdscalar-implementations)

###### Structures

- [Int32.SIMD16Storage](/documentation/swift/int32/simd16storage)

###### Initializers

- [init()](/documentation/swift/int32/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd16storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD16Storage.Scalar](/documentation/swift/int32/simd16storage/scalar)
- [Int32.SIMD2Storage](/documentation/swift/int32/simd2storage)

###### Initializers

- [init()](/documentation/swift/int32/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd2storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD2Storage.Scalar](/documentation/swift/int32/simd2storage/scalar)
- [Int32.SIMD32Storage](/documentation/swift/int32/simd32storage)

###### Initializers

- [init()](/documentation/swift/int32/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd32storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD32Storage.Scalar](/documentation/swift/int32/simd32storage/scalar)
- [Int32.SIMD4Storage](/documentation/swift/int32/simd4storage)

###### Initializers

- [init()](/documentation/swift/int32/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd4storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD4Storage.Scalar](/documentation/swift/int32/simd4storage/scalar)
- [Int32.SIMD64Storage](/documentation/swift/int32/simd64storage)

###### Initializers

- [init()](/documentation/swift/int32/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd64storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD64Storage.Scalar](/documentation/swift/int32/simd64storage/scalar)
- [Int32.SIMD8Storage](/documentation/swift/int32/simd8storage)

###### Initializers

- [init()](/documentation/swift/int32/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int32/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int32](/documentation/swift/int32/simd8storage/subscript(_:))

###### Type Aliases

- [Int32.SIMD8Storage.Scalar](/documentation/swift/int32/simd8storage/scalar)

###### Type Aliases

- [Int32.SIMDMaskScalar](/documentation/swift/int32/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int32/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int32/init(_:)-47iba)
- [init?<T>(exactly: T)](/documentation/swift/int32/init(exactly:)-7er6b)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int32/issigned)
- [static var max: Self](/documentation/swift/int32/max)
- [static var min: Self](/documentation/swift/int32/min)
- [SignedNumeric Implementations](/documentation/swift/int32/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int32/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int32/negate())
- [Int64](/documentation/swift/int64)

###### Structures

- [Int64.Words](/documentation/swift/int64/words-swift.struct)

###### Initializers

- [init(Int64)](/documentation/swift/int64/words-swift.struct/init(_:))

###### Instance Properties

- [var count: Int](/documentation/swift/int64/words-swift.struct/count)
- [var endIndex: Int](/documentation/swift/int64/words-swift.struct/endindex)
- [var indices: Int64.Words.Indices](/documentation/swift/int64/words-swift.struct/indices-swift.property)
- [var startIndex: Int](/documentation/swift/int64/words-swift.struct/startindex)

###### Instance Methods

- [func index(after: Int) -> Int](/documentation/swift/int64/words-swift.struct/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/int64/words-swift.struct/index(before:))

###### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/int64/words-swift.struct/subscript(_:))

###### Type Aliases

- [Int64.Words.Element](/documentation/swift/int64/words-swift.struct/element)
- [Int64.Words.Index](/documentation/swift/int64/words-swift.struct/index)
- [Int64.Words.Indices](/documentation/swift/int64/words-swift.struct/indices-swift.typealias)
- [Int64.Words.Iterator](/documentation/swift/int64/words-swift.struct/iterator)
- [Int64.Words.SubSequence](/documentation/swift/int64/words-swift.struct/subsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/int64/words-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/int64/words-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/int64/words-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/int64/words-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/int64/words-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int64/words-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int64/words-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int64/words-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/int64/words-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/int64/words-swift.struct/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/int64/words-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/int64/words-swift.struct/isempty)
- [var underestimatedCount: Int](/documentation/swift/int64/words-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/int64/words-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/int64/words-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/int64/words-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/int64/words-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/int64/words-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/int64/words-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/int64/words-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/int64/words-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/int64/words-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int64/words-swift.struct/map(_:)-79bxt)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/int64/words-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/int64/words-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/int64/words-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/int64/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/int64/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/int64/words-swift.struct/suffix(from:))
- [RandomAccessCollection Implementations](/documentation/swift/int64/words-swift.struct/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/int64/words-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/int64/words-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/int64/words-swift.struct/index(_:offsetby:limitedby:))
- [Sequence Implementations](/documentation/swift/int64/words-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/int64/words-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int64/words-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int64/words-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/int64/words-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int64/words-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/int64/words-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int64/words-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int64/words-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/int64/words-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int64/words-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int64/words-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/int64/words-swift.struct/flatmap(_:)-5ogxw)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/int64/words-swift.struct/flatmap(_:)-8dp2z)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/int64/words-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/int64/words-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int64/words-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/int64/words-swift.struct/map(_:)-5qll5)
- [func max() -> Self.Element?](/documentation/swift/int64/words-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int64/words-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/int64/words-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/int64/words-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/int64/words-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/int64/words-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/int64/words-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/int64/words-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/int64/words-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/int64/words-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/int64/words-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/int64/words-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/int64/words-swift.struct/withcontiguousstorageifavailable(_:))

###### Operators

- [static func != (Int64, Int64) -> Bool](/documentation/swift/int64/!=(_:_:))
- [static func &= (inout Int64, Int64)](/documentation/swift/int64/&=(_:_:))
- [static func &<<= (inout Int64, Int64)](/documentation/swift/int64/&__=(_:_:)-3hmto)
- [static func &>>= (inout Int64, Int64)](/documentation/swift/int64/&__=(_:_:)-7f5t8)
- [static func *= (inout Int64, Int64)](/documentation/swift/int64/*=(_:_:))
- [static func += (inout Int64, Int64)](/documentation/swift/int64/+=(_:_:))
- [static func -= (inout Int64, Int64)](/documentation/swift/int64/-=(_:_:))
- [static func == (Int64, Int64) -> Bool](/documentation/swift/int64/==(_:_:))
- [static func < (Int64, Int64) -> Bool](/documentation/swift/int64/_(_:_:)-15gfv)
- [static func %= (inout Int64, Int64)](/documentation/swift/int64/_=(_:_:)-6kyxv)
- [static func ^= (inout Int64, Int64)](/documentation/swift/int64/_=(_:_:)-8wdie)
- [static func |= (inout Int64, Int64)](/documentation/swift/int64/_=(_:_:)-8xard)
- [static func /= (inout Int64, Int64)](/documentation/swift/int64/_=(_:_:)-9q89m)

###### Initializers

- [init(NSNumber)](/documentation/swift/int64/init(_:)-1d7o4)
- [init(Float)](/documentation/swift/int64/init(_:)-4goni)
- [init(Float16)](/documentation/swift/int64/init(_:)-5aiim)
- [init(Double)](/documentation/swift/int64/init(_:)-87ipw)
- [init(CGFloat)](/documentation/swift/int64/init(_:)-ia49)
- [init(Float80)](/documentation/swift/int64/init(_:)-ro3j)
- [init(bitPattern: UInt64)](/documentation/swift/int64/init(bitpattern:))
- [init?(exactly: Double)](/documentation/swift/int64/init(exactly:)-5w39p)
- [init?(exactly: Float16)](/documentation/swift/int64/init(exactly:)-74h3v)
- [init?(exactly: Float)](/documentation/swift/int64/init(exactly:)-87idz)
- [init?(exactly: Float80)](/documentation/swift/int64/init(exactly:)-8nn2c)
- [init?(exactly: NSNumber)](/documentation/swift/int64/init(exactly:)-mpiy)
- [init(truncating: NSNumber)](/documentation/swift/int64/init(truncating:))

###### Instance Properties

- [var byteSwapped: Int64](/documentation/swift/int64/byteswapped)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/int64/customplaygroundquicklook)
- [var leadingZeroBitCount: Int](/documentation/swift/int64/leadingzerobitcount)
- [var magnitude: UInt64](/documentation/swift/int64/magnitude-swift.property)
- [var nonzeroBitCount: Int](/documentation/swift/int64/nonzerobitcount)
- [var trailingZeroBitCount: Int](/documentation/swift/int64/trailingzerobitcount)
- [var words: Int64.Words](/documentation/swift/int64/words-swift.property)

###### Instance Methods

- [func addingReportingOverflow(Int64) -> (partialValue: Int64, overflow: Bool)](/documentation/swift/int64/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Int64) -> (partialValue: Int64, overflow: Bool)](/documentation/swift/int64/dividedreportingoverflow(by:))
- [func dividingFullWidth((high: Int64, low: Int64.Magnitude)) -> (quotient: Int64, remainder: Int64)](/documentation/swift/int64/dividingfullwidth(_:))
- [func multipliedFullWidth(by: Int64) -> (high: Int64, low: Int64.Magnitude)](/documentation/swift/int64/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: Int64) -> (partialValue: Int64, overflow: Bool)](/documentation/swift/int64/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int64) -> (partialValue: Int64, overflow: Bool)](/documentation/swift/int64/remainderreportingoverflow(dividingby:))
- [func signum() -> Int64](/documentation/swift/int64/signum())
- [func subtractingReportingOverflow(Int64) -> (partialValue: Int64, overflow: Bool)](/documentation/swift/int64/subtractingreportingoverflow(_:))

###### Type Aliases

- [Int64.IntegerLiteralType](/documentation/swift/int64/integerliteraltype)
- [Int64.Magnitude](/documentation/swift/int64/magnitude-swift.typealias)
- [Int64.Stride](/documentation/swift/int64/stride)

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/int64/bitwidth)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int64/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int64/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/int64/+=(_:_:)-6n9bz)
- [static func -= (inout Self, Self)](/documentation/swift/int64/-=(_:_:)-88vzw)

###### Type Properties

- [static var zero: Self](/documentation/swift/int64/zero)
- [AtomicRepresentable Implementations](/documentation/swift/int64/atomicrepresentable-implementations)

###### Type Aliases

- [Int64.AtomicRepresentation](/documentation/swift/int64/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int64.AtomicRepresentation) -> Int64](/documentation/swift/int64/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int64) -> Int64.AtomicRepresentation](/documentation/swift/int64/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int64/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int64/!=(_:_:)-3fzrz)
- [static func & (Int64, Int64) -> Int64](/documentation/swift/int64/&(_:_:))
- [static func & (Self, Self) -> Self](/documentation/swift/int64/&(_:_:)-jsun)
- [static func * (Int64, Int64) -> Int64](/documentation/swift/int64/*(_:_:))
- [static func + (Int64, Int64) -> Int64](/documentation/swift/int64/+(_:_:))
- [static func - (Int64, Int64) -> Int64](/documentation/swift/int64/-(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int64/==(_:_:)-1qxpp)
- [static func ^ (Int64, Int64) -> Int64](/documentation/swift/int64/_(_:_:)-1pc7e)
- [static func % (Int64, Int64) -> Int64](/documentation/swift/int64/_(_:_:)-2xs3w)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int64/_(_:_:)-340al)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int64/_(_:_:)-4u3sc)
- [static func / (Int64, Int64) -> Int64](/documentation/swift/int64/_(_:_:)-52g64)
- [static func | (Self, Self) -> Self](/documentation/swift/int64/_(_:_:)-5oz05)
- [static func | (Int64, Int64) -> Int64](/documentation/swift/int64/_(_:_:)-65vvy)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int64/_(_:_:)-6otcp)
- [static func > (Self, Self) -> Bool](/documentation/swift/int64/_(_:_:)-9l49m)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int64/_=(_:_:)-1d6gy)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int64/_=(_:_:)-3tzj9)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int64/_=(_:_:)-561mj)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int64/_=(_:_:)-8h42b)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int64/__(_:_:)-2o6oi)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int64/__(_:_:)-364qh)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int64/__(_:_:)-6es2r)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int64/__(_:_:)-7p8tu)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int64/__=(_:_:)-1yiba)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int64/__=(_:_:)-8bomq)
- [static func ~ (Self) -> Self](/documentation/swift/int64/~(_:))

###### Initializers

- [init()](/documentation/swift/int64/init())
- [init<Other>(clamping: Other)](/documentation/swift/int64/init(clamping:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int64/init(truncatingifneeded:))

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int64/bitwidth-swift.property)
- [var description: String](/documentation/swift/int64/description)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/int64/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/int64/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int64/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int64/quotientandremainder(dividingby:))
- [Comparable Implementations](/documentation/swift/int64/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int64/'...(_:)-2lfk5)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int64/'...(_:)-6hr1s)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int64/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int64/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int64/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/int64/_(_:_:)-2j2vz)
- [static func < (Self, Self) -> Bool](/documentation/swift/int64/_(_:_:)-4twvv)
- [static func > (Int64, Int64) -> Bool](/documentation/swift/int64/_(_:_:)-5fkgf)
- [static func <= (Int64, Int64) -> Bool](/documentation/swift/int64/_=(_:_:)-1jjgk)
- [static func >= (Int64, Int64) -> Bool](/documentation/swift/int64/_=(_:_:)-2dl1k)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int64/_=(_:_:)-4500l)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int64/_=(_:_:)-6mb7g)
- [CustomReflectable Implementations](/documentation/swift/int64/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int64/custommirror)
- [Decodable Implementations](/documentation/swift/int64/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int64/init(from:))
- [Encodable Implementations](/documentation/swift/int64/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int64/encode(to:))
- [Equatable Implementations](/documentation/swift/int64/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int64/!=(_:_:)-40mwr)
- [static func != (Self, Self) -> Bool](/documentation/swift/int64/!=(_:_:)-7x44e)
- [static func == (Self, Self) -> Bool](/documentation/swift/int64/==(_:_:)-7qmbt)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int64/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int64/init(integerliteral:))
- [FixedWidthInteger Implementations](/documentation/swift/int64/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Self, Self) -> Self](/documentation/swift/int64/&*(_:_:))
- [static func &*= (inout Self, Self)](/documentation/swift/int64/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int64/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int64/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int64/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int64/&-=(_:_:))
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int64/&__(_:_:)-1vhcm)
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int64/&__(_:_:)-35gqp)
- [static func &>> (Int64, Int64) -> Int64](/documentation/swift/int64/&__(_:_:)-3uykh)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int64/&__(_:_:)-5vfka)
- [static func &<< (Self, Self) -> Self](/documentation/swift/int64/&__(_:_:)-61wzt)
- [static func &<< (Int64, Int64) -> Int64](/documentation/swift/int64/&__(_:_:)-gclw)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int64/&__=(_:_:)-7fhnz)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int64/&__=(_:_:)-o7l7)

###### Initializers

- [init?(String)](/documentation/swift/int64/init(_:)-6esec)
- [init<T>(T)](/documentation/swift/int64/init(_:)-9oso5)
- [init?<S>(S, radix: Int)](/documentation/swift/int64/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int64/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int64/init(exactly:)-7ihf2)
- [init(littleEndian: Self)](/documentation/swift/int64/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int64/bigendian)
- [var littleEndian: Self](/documentation/swift/int64/littleendian)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int64/random(in:)-4o9ko)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int64/random(in:)-5f9pk)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int64/random(in:using:)-1ac76)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int64/random(in:using:)-2tzae)
- [Hashable Implementations](/documentation/swift/int64/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int64/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int64/hash(into:))
- [SIMDScalar Implementations](/documentation/swift/int64/simdscalar-implementations)

###### Structures

- [Int64.SIMD16Storage](/documentation/swift/int64/simd16storage)

###### Initializers

- [init()](/documentation/swift/int64/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd16storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD16Storage.Scalar](/documentation/swift/int64/simd16storage/scalar)
- [Int64.SIMD2Storage](/documentation/swift/int64/simd2storage)

###### Initializers

- [init()](/documentation/swift/int64/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd2storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD2Storage.Scalar](/documentation/swift/int64/simd2storage/scalar)
- [Int64.SIMD32Storage](/documentation/swift/int64/simd32storage)

###### Initializers

- [init()](/documentation/swift/int64/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd32storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD32Storage.Scalar](/documentation/swift/int64/simd32storage/scalar)
- [Int64.SIMD4Storage](/documentation/swift/int64/simd4storage)

###### Initializers

- [init()](/documentation/swift/int64/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd4storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD4Storage.Scalar](/documentation/swift/int64/simd4storage/scalar)
- [Int64.SIMD64Storage](/documentation/swift/int64/simd64storage)

###### Initializers

- [init()](/documentation/swift/int64/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd64storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD64Storage.Scalar](/documentation/swift/int64/simd64storage/scalar)
- [Int64.SIMD8Storage](/documentation/swift/int64/simd8storage)

###### Initializers

- [init()](/documentation/swift/int64/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/int64/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Int64](/documentation/swift/int64/simd8storage/subscript(_:))

###### Type Aliases

- [Int64.SIMD8Storage.Scalar](/documentation/swift/int64/simd8storage/scalar)

###### Type Aliases

- [Int64.SIMDMaskScalar](/documentation/swift/int64/simdmaskscalar)
- [SignedInteger Implementations](/documentation/swift/int64/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int64/init(_:)-4i8wx)
- [init?<T>(exactly: T)](/documentation/swift/int64/init(exactly:)-7vjwc)

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int64/issigned)
- [static var max: Self](/documentation/swift/int64/max)
- [static var min: Self](/documentation/swift/int64/min)
- [SignedNumeric Implementations](/documentation/swift/int64/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int64/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int64/negate())
- [Int128](/documentation/swift/int128)

###### Operators

- [static func != (Int128, Int128) -> Bool](/documentation/swift/int128/!=(_:_:))

###### Initializers

- [init(bitPattern: UInt128)](/documentation/swift/int128/init(bitpattern:))

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/int128/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/int128/+(_:))
- [static func + (Int128, Int128) -> Int128](/documentation/swift/int128/+(_:_:))
- [static func += (inout Self, Self)](/documentation/swift/int128/+=(_:_:))
- [static func - (Int128, Int128) -> Int128](/documentation/swift/int128/-(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/int128/-=(_:_:))

###### Type Properties

- [static var zero: Int128](/documentation/swift/int128/zero)
- [static var zero: Self](/documentation/swift/int128/zero-2nxul)
- [AtomicRepresentable Implementations](/documentation/swift/int128/atomicrepresentable-implementations)

###### Type Aliases

- [Int128.AtomicRepresentation](/documentation/swift/int128/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Int128.AtomicRepresentation) -> Int128](/documentation/swift/int128/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(borrowing Int128) -> Int128.AtomicRepresentation](/documentation/swift/int128/encodeatomicrepresentation(_:))
- [BinaryInteger Implementations](/documentation/swift/int128/binaryinteger-implementations)

###### Operators

- [static func != <Other>(Self, Other) -> Bool](/documentation/swift/int128/!=(_:_:)-4l6xf)
- [static func & (Self, Self) -> Self](/documentation/swift/int128/&(_:_:))
- [static func &= (inout Int128, Int128)](/documentation/swift/int128/&=(_:_:))
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/int128/==(_:_:)-31spp)
- [static func | (Self, Self) -> Self](/documentation/swift/int128/_(_:_:)-120rc)
- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/int128/_(_:_:)-3jxf8)
- [static func / (Int128, Int128) -> Int128](/documentation/swift/int128/_(_:_:)-3u29x)
- [static func % (Int128, Int128) -> Int128](/documentation/swift/int128/_(_:_:)-4kr9j)
- [static func ^ (Self, Self) -> Self](/documentation/swift/int128/_(_:_:)-4wqvr)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/int128/_(_:_:)-6c38s)
- [static func > (Self, Self) -> Bool](/documentation/swift/int128/_(_:_:)-71bfg)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int128/_=(_:_:)-2rq25)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int128/_=(_:_:)-3tzf9)
- [static func /= (inout Int128, Int128)](/documentation/swift/int128/_=(_:_:)-4hmtz)
- [static func %= (inout Int128, Int128)](/documentation/swift/int128/_=(_:_:)-58nmj)
- [static func |= (inout Int128, Int128)](/documentation/swift/int128/_=(_:_:)-791af)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/int128/_=(_:_:)-90wyd)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/int128/_=(_:_:)-9kicv)
- [static func ^= (inout Int128, Int128)](/documentation/swift/int128/_=(_:_:)-ckwk)
- [static func >> <Other>(Self, Other) -> Self](/documentation/swift/int128/__(_:_:)-10plt)
- [static func << <Other>(Self, Other) -> Self](/documentation/swift/int128/__(_:_:)-30yed)
- [static func << <RHS>(Self, RHS) -> Self](/documentation/swift/int128/__(_:_:)-6jhs3)
- [static func >> <RHS>(Self, RHS) -> Self](/documentation/swift/int128/__(_:_:)-80gwd)
- [static func <<= <Other>(inout Self, Other)](/documentation/swift/int128/__=(_:_:)-195op)
- [static func >>= <Other>(inout Self, Other)](/documentation/swift/int128/__=(_:_:)-3w1qu)
- [static func ~ (Self) -> Self](/documentation/swift/int128/~(_:))

###### Initializers

- [init()](/documentation/swift/int128/init())
- [init<T>(T)](/documentation/swift/int128/init(_:)-7ib60)
- [init<T>(T)](/documentation/swift/int128/init(_:)-95d5)
- [init<T>(clamping: T)](/documentation/swift/int128/init(clamping:))
- [init<Other>(clamping: Other)](/documentation/swift/int128/init(clamping:)-4ogm3)
- [init?<T>(exactly: T)](/documentation/swift/int128/init(exactly:)-7ybhb)
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int128/init(truncatingifneeded:))
- [init<T>(truncatingIfNeeded: T)](/documentation/swift/int128/init(truncatingifneeded:)-9tq25)

###### Instance Properties

- [var bitWidth: Int](/documentation/swift/int128/bitwidth-swift.property)
- [var description: String](/documentation/swift/int128/description)
- [var trailingZeroBitCount: Int](/documentation/swift/int128/trailingzerobitcount)
- [var words: UInt128.Words](/documentation/swift/int128/words-swift.property)

###### Instance Methods

- [func advanced(by: Int) -> Self](/documentation/swift/int128/advanced(by:))
- [func distance(to: Self) -> Int](/documentation/swift/int128/distance(to:))
- [func isMultiple(of: Self) -> Bool](/documentation/swift/int128/ismultiple(of:))
- [func quotientAndRemainder(dividingBy: Self) -> (quotient: Self, remainder: Self)](/documentation/swift/int128/quotientandremainder(dividingby:))
- [func signum() -> Self](/documentation/swift/int128/signum())

###### Type Aliases

- [Int128.Words](/documentation/swift/int128/words-swift.typealias)
- [Comparable Implementations](/documentation/swift/int128/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/int128/'...(_:)-29uaw)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/int128/'...(_:)-4fk21)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/int128/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/int128/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/int128/'.._(_:_:))
- [static func < (Int128, Int128) -> Bool](/documentation/swift/int128/_(_:_:)-35c1e)
- [static func < (Self, Self) -> Bool](/documentation/swift/int128/_(_:_:)-3hw0i)
- [static func > (Int128, Int128) -> Bool](/documentation/swift/int128/_(_:_:)-9fqff)
- [static func > (Self, Self) -> Bool](/documentation/swift/int128/_(_:_:)-kbor)
- [static func >= (Int128, Int128) -> Bool](/documentation/swift/int128/_=(_:_:)-3ciqg)
- [static func >= (Self, Self) -> Bool](/documentation/swift/int128/_=(_:_:)-5rm2j)
- [static func <= (Self, Self) -> Bool](/documentation/swift/int128/_=(_:_:)-89frc)
- [static func <= (Int128, Int128) -> Bool](/documentation/swift/int128/_=(_:_:)-9u03u)
- [CustomReflectable Implementations](/documentation/swift/int128/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/int128/custommirror)
- [Decodable Implementations](/documentation/swift/int128/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/int128/init(from:))
- [Encodable Implementations](/documentation/swift/int128/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/int128/encode(to:))
- [Equatable Implementations](/documentation/swift/int128/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/int128/!=(_:_:)-2o8ke)
- [static func != (Self, Self) -> Bool](/documentation/swift/int128/!=(_:_:)-6tfho)
- [static func == (Int128, Int128) -> Bool](/documentation/swift/int128/==(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/int128/==(_:_:)-34d2d)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/int128/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/int128/init(integerliteral:))

###### Type Aliases

- [Int128.IntegerLiteralType](/documentation/swift/int128/integerliteraltype)
- [FixedWidthInteger Implementations](/documentation/swift/int128/fixedwidthinteger-implementations)

###### Operators

- [static func &* (Int128, Int128) -> Int128](/documentation/swift/int128/&*(_:_:))
- [static func &* (Self, Self) -> Self](/documentation/swift/int128/&*(_:_:)-ctty)
- [static func &*= (inout Self, Self)](/documentation/swift/int128/&*=(_:_:))
- [static func &+ (Self, Self) -> Self](/documentation/swift/int128/&+(_:_:))
- [static func &+= (inout Self, Self)](/documentation/swift/int128/&+=(_:_:))
- [static func &- (Self, Self) -> Self](/documentation/swift/int128/&-(_:_:))
- [static func &-= (inout Self, Self)](/documentation/swift/int128/&-=(_:_:))
- [static func &>> <Other>(Self, Other) -> Self](/documentation/swift/int128/&__(_:_:)-227qu)
- [static func &>> (Self, Self) -> Self](/documentation/swift/int128/&__(_:_:)-71ih1)
- [static func &<< <Other>(Self, Other) -> Self](/documentation/swift/int128/&__(_:_:)-9gig)
- [static func &<< (Self, Self) -> Self](/documentation/swift/int128/&__(_:_:)-lkqj)
- [static func &<<= <Other>(inout Self, Other)](/documentation/swift/int128/&__=(_:_:)-1pdlg)
- [static func &<<= (inout Int128, Int128)](/documentation/swift/int128/&__=(_:_:)-2vr5o)
- [static func &>>= <Other>(inout Self, Other)](/documentation/swift/int128/&__=(_:_:)-5pnjk)
- [static func &>>= (inout Int128, Int128)](/documentation/swift/int128/&__=(_:_:)-69tya)

###### Initializers

- [init<T>(T)](/documentation/swift/int128/init(_:)-3gl5w)
- [init?(String)](/documentation/swift/int128/init(_:)-9xe9j)
- [init?<S>(S, radix: Int)](/documentation/swift/int128/init(_:radix:))
- [init(bigEndian: Self)](/documentation/swift/int128/init(bigendian:))
- [init?<T>(exactly: T)](/documentation/swift/int128/init(exactly:)-yans)
- [init(littleEndian: Self)](/documentation/swift/int128/init(littleendian:))

###### Instance Properties

- [var bigEndian: Self](/documentation/swift/int128/bigendian)
- [var byteSwapped: Int128](/documentation/swift/int128/byteswapped)
- [var leadingZeroBitCount: Int](/documentation/swift/int128/leadingzerobitcount)
- [var littleEndian: Self](/documentation/swift/int128/littleendian)
- [var nonzeroBitCount: Int](/documentation/swift/int128/nonzerobitcount)

###### Instance Methods

- [func addingReportingOverflow(Int128) -> (partialValue: Int128, overflow: Bool)](/documentation/swift/int128/addingreportingoverflow(_:))
- [func dividedReportingOverflow(by: Int128) -> (partialValue: Int128, overflow: Bool)](/documentation/swift/int128/dividedreportingoverflow(by:))
- [func multipliedFullWidth(by: Self) -> (high: Self, low: Self.Magnitude)](/documentation/swift/int128/multipliedfullwidth(by:))
- [func multipliedReportingOverflow(by: Int128) -> (partialValue: Int128, overflow: Bool)](/documentation/swift/int128/multipliedreportingoverflow(by:))
- [func remainderReportingOverflow(dividingBy: Int128) -> (partialValue: Int128, overflow: Bool)](/documentation/swift/int128/remainderreportingoverflow(dividingby:))
- [func subtractingReportingOverflow(Int128) -> (partialValue: Int128, overflow: Bool)](/documentation/swift/int128/subtractingreportingoverflow(_:))

###### Type Properties

- [static var bitWidth: Int](/documentation/swift/int128/bitwidth)
- [static var max: Int128](/documentation/swift/int128/max)
- [static var min: Int128](/documentation/swift/int128/min)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/int128/random(in:)-4lf3w)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/int128/random(in:)-55a79)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/int128/random(in:using:)-4e4vx)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/int128/random(in:using:)-7t428)
- [Hashable Implementations](/documentation/swift/int128/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/int128/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/int128/hash(into:))
- [Numeric Implementations](/documentation/swift/int128/numeric-implementations)

###### Operators

- [static func * (Int128, Int128) -> Int128](/documentation/swift/int128/*(_:_:))
- [static func *= (inout Int128, Int128)](/documentation/swift/int128/*=(_:_:))

###### Initializers

- [init?<T>(exactly: T)](/documentation/swift/int128/init(exactly:)-3o2o0)

###### Instance Properties

- [var magnitude: Int128.Magnitude](/documentation/swift/int128/magnitude-swift.property)

###### Type Aliases

- [Int128.Magnitude](/documentation/swift/int128/magnitude-swift.typealias)
- [SignedInteger Implementations](/documentation/swift/int128/signedinteger-implementations)

###### Initializers

- [init<T>(T)](/documentation/swift/int128/init(_:)-7lln8)
- [init?<T>(exactly: T)](/documentation/swift/int128/init(exactly:)-7udqs)

###### Instance Methods

- [func dividingFullWidth((high: Self, low: Self.Magnitude)) -> (quotient: Self, remainder: Self)](/documentation/swift/int128/dividingfullwidth(_:))

###### Type Properties

- [static var isSigned: Bool](/documentation/swift/int128/issigned)
- [static var max: Self](/documentation/swift/int128/max-4kic7)
- [static var min: Self](/documentation/swift/int128/min-42rpc)
- [SignedNumeric Implementations](/documentation/swift/int128/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/int128/-(_:))

###### Instance Methods

- [func negate()](/documentation/swift/int128/negate())
- [Strideable Implementations](/documentation/swift/int128/strideable-implementations)

###### Type Aliases

- [Int128.Stride](/documentation/swift/int128/stride)

##### Casting Between Integer Types

- [func numericCast<T, U>(T) -> U](/documentation/swift/numericcast(_:))

##### Floating-Point Values

- [Float16](/documentation/swift/float16)

###### Initializers

- [init()](/documentation/swift/float16/init())
- [init?(Substring)](/documentation/swift/float16/init(_:)-5x2si)
- [init(Float16)](/documentation/swift/float16/init(_:)-77b3g)
- [init(bitPattern: UInt16)](/documentation/swift/float16/init(bitpattern:))
- [init?(exactly: Float16)](/documentation/swift/float16/init(exactly:)-27ijx)
- [init?(exactly: Double)](/documentation/swift/float16/init(exactly:)-4hyr3)
- [init?(exactly: Float)](/documentation/swift/float16/init(exactly:)-8rmd7)
- [init(nan: Float16.RawSignificand, signaling: Bool)](/documentation/swift/float16/init(nan:signaling:))

###### Instance Properties

- [var bitPattern: UInt16](/documentation/swift/float16/bitpattern)

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/float16/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/float16/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/float16/+=(_:_:)-17hzy)
- [static func -= (inout Self, Self)](/documentation/swift/float16/-=(_:_:)-4m9c5)

###### Type Properties

- [static var zero: Self](/documentation/swift/float16/zero)
- [AtomicRepresentable Implementations](/documentation/swift/float16/atomicrepresentable-implementations)

###### Type Aliases

- [Float16.AtomicRepresentation](/documentation/swift/float16/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Float16.AtomicRepresentation) -> Float16](/documentation/swift/float16/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Float16) -> Float16.AtomicRepresentation](/documentation/swift/float16/encodeatomicrepresentation(_:))
- [BinaryFloatingPoint Implementations](/documentation/swift/float16/binaryfloatingpoint-implementations)

###### Initializers

- [init(Float)](/documentation/swift/float16/init(_:)-469bw)
- [init<Source>(Source)](/documentation/swift/float16/init(_:)-6u8fq)
- [init<Source>(Source)](/documentation/swift/float16/init(_:)-7teyd)
- [init(Double)](/documentation/swift/float16/init(_:)-7x3fq)
- [init?<Source>(exactly: Source)](/documentation/swift/float16/init(exactly:)-6c0t5)
- [init?<Source>(exactly: Source)](/documentation/swift/float16/init(exactly:)-d42j)
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt16)](/documentation/swift/float16/init(sign:exponentbitpattern:significandbitpattern:))

###### Instance Properties

- [var binade: Float16](/documentation/swift/float16/binade)
- [var exponentBitPattern: UInt](/documentation/swift/float16/exponentbitpattern)
- [var significandBitPattern: UInt16](/documentation/swift/float16/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/float16/significandwidth)

###### Type Aliases

- [Float16.RawExponent](/documentation/swift/float16/rawexponent)
- [Float16.RawSignificand](/documentation/swift/float16/rawsignificand)

###### Type Properties

- [static var exponentBitCount: Int](/documentation/swift/float16/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/float16/significandbitcount)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/float16/random(in:)-4blql)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/float16/random(in:)-6nryy)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/float16/random(in:using:)-1prt0)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/float16/random(in:using:)-9qt91)
- [Comparable Implementations](/documentation/swift/float16/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/float16/'...(_:)-3pk0v)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/float16/'...(_:)-5cxb4)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/float16/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/float16/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/float16/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/float16/_(_:_:)-31fi)
- [static func < (Self, Self) -> Bool](/documentation/swift/float16/_(_:_:)-4g8ih)
- [static func > (Self, Self) -> Bool](/documentation/swift/float16/_(_:_:)-7cnm4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float16/_=(_:_:)-3ah1i)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float16/_=(_:_:)-3uvqe)
- [CustomDebugStringConvertible Implementations](/documentation/swift/float16/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/float16/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/float16/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/float16/description)
- [Decodable Implementations](/documentation/swift/float16/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/float16/init(from:))
- [Encodable Implementations](/documentation/swift/float16/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/float16/encode(to:))
- [Equatable Implementations](/documentation/swift/float16/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/float16/!=(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/float16/==(_:_:)-3rkkw)
- [static func == (Self, Self) -> Bool](/documentation/swift/float16/==(_:_:)-ngi4)
- [ExpressibleByFloatLiteral Implementations](/documentation/swift/float16/expressiblebyfloatliteral-implementations)

###### Initializers

- [init(floatLiteral: Float16)](/documentation/swift/float16/init(floatliteral:))

###### Type Aliases

- [Float16.FloatLiteralType](/documentation/swift/float16/floatliteraltype)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/float16/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Int64)](/documentation/swift/float16/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/float16/init(integerliteral:)-1mjyo)

###### Type Aliases

- [Float16.IntegerLiteralType](/documentation/swift/float16/integerliteraltype)
- [FloatingPoint Implementations](/documentation/swift/float16/floatingpoint-implementations)

###### Operators

- [static func * (Float16, Float16) -> Float16](/documentation/swift/float16/*(_:_:))
- [static func *= (inout Float16, Float16)](/documentation/swift/float16/*=(_:_:))
- [static func + (Float16, Float16) -> Float16](/documentation/swift/float16/+(_:_:))
- [static func += (inout Float16, Float16)](/documentation/swift/float16/+=(_:_:))
- [static func - (Float16) -> Float16](/documentation/swift/float16/-(_:))
- [static func - (Float16, Float16) -> Float16](/documentation/swift/float16/-(_:_:))
- [static func -= (inout Float16, Float16)](/documentation/swift/float16/-=(_:_:))
- [static func / (Float16, Float16) -> Float16](/documentation/swift/float16/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/float16/_(_:_:)-9d93b)
- [static func /= (inout Float16, Float16)](/documentation/swift/float16/_=(_:_:))
- [static func >= (Self, Self) -> Bool](/documentation/swift/float16/_=(_:_:)-1s8n2)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float16/_=(_:_:)-4bq0a)

###### Initializers

- [init(Int)](/documentation/swift/float16/init(_:)-4iaoz)
- [init<Source>(Source)](/documentation/swift/float16/init(_:)-67cee)
- [init?<Source>(exactly: Source)](/documentation/swift/float16/init(exactly:)-2qxl0)
- [init(sign: FloatingPointSign, exponent: Int, significand: Float16)](/documentation/swift/float16/init(sign:exponent:significand:))
- [init(signOf: Float16, magnitudeOf: Float16)](/documentation/swift/float16/init(signof:magnitudeof:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/float16/init(signof:magnitudeof:)-1oylh)

###### Instance Properties

- [var exponent: Int](/documentation/swift/float16/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/float16/floatingpointclass)
- [var isCanonical: Bool](/documentation/swift/float16/iscanonical)
- [var isFinite: Bool](/documentation/swift/float16/isfinite)
- [var isInfinite: Bool](/documentation/swift/float16/isinfinite)
- [var isNaN: Bool](/documentation/swift/float16/isnan)
- [var isNormal: Bool](/documentation/swift/float16/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/float16/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/float16/issubnormal)
- [var isZero: Bool](/documentation/swift/float16/iszero)
- [var nextDown: Self](/documentation/swift/float16/nextdown)
- [var nextUp: Float16](/documentation/swift/float16/nextup)
- [var sign: FloatingPointSign](/documentation/swift/float16/sign)
- [var significand: Float16](/documentation/swift/float16/significand)
- [var ulp: Float16](/documentation/swift/float16/ulp)

###### Instance Methods

- [func addProduct(Float16, Float16)](/documentation/swift/float16/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/float16/addingproduct(_:_:))
- [func formRemainder(dividingBy: Float16)](/documentation/swift/float16/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/float16/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Float16)](/documentation/swift/float16/formtruncatingremainder(dividingby:))
- [func isEqual(to: Float16) -> Bool](/documentation/swift/float16/isequal(to:))
- [func isLess(than: Float16) -> Bool](/documentation/swift/float16/isless(than:))
- [func isLessThanOrEqualTo(Float16) -> Bool](/documentation/swift/float16/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/float16/istotallyordered(beloworequalto:))
- [func negate()](/documentation/swift/float16/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/float16/remainder(dividingby:))
- [func round()](/documentation/swift/float16/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/float16/round(_:))
- [func rounded() -> Self](/documentation/swift/float16/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/float16/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/float16/squareroot())
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/float16/truncatingremainder(dividingby:))

###### Type Aliases

- [Float16.Exponent](/documentation/swift/float16/exponent-swift.typealias)

###### Type Properties

- [static var greatestFiniteMagnitude: Float16](/documentation/swift/float16/greatestfinitemagnitude)
- [static var infinity: Float16](/documentation/swift/float16/infinity)
- [static var leastNonzeroMagnitude: Float16](/documentation/swift/float16/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Float16](/documentation/swift/float16/leastnormalmagnitude)
- [static var nan: Float16](/documentation/swift/float16/nan)
- [static var pi: Float16](/documentation/swift/float16/pi)
- [static var radix: Int](/documentation/swift/float16/radix)
- [static var signalingNaN: Float16](/documentation/swift/float16/signalingnan)
- [static var ulpOfOne: Float16](/documentation/swift/float16/ulpofone)
- [static var ulpOfOne: Self](/documentation/swift/float16/ulpofone-8wr95)

###### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/float16/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/float16/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/float16/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/float16/minimummagnitude(_:_:))
- [Hashable Implementations](/documentation/swift/float16/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/float16/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/float16/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/float16/losslessstringconvertible-implementations)

###### Initializers

- [init?<S>(S)](/documentation/swift/float16/init(_:)-9qp1z)
- [Numeric Implementations](/documentation/swift/float16/numeric-implementations)

###### Instance Properties

- [var magnitude: Float16](/documentation/swift/float16/magnitude-swift.property)

###### Type Aliases

- [Float16.Magnitude](/documentation/swift/float16/magnitude-swift.typealias)
- [OperationParameter Implementations](/documentation/swift/float16/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Float16>](/documentation/swift/float16/graphbuildertensor(_:))
- [SIMDScalar Implementations](/documentation/swift/float16/simdscalar-implementations)

###### Structures

- [Float16.SIMD16Storage](/documentation/swift/float16/simd16storage)

###### Initializers

- [init()](/documentation/swift/float16/simd16storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd16storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd16storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD16Storage.Scalar](/documentation/swift/float16/simd16storage/scalar)
- [Float16.SIMD2Storage](/documentation/swift/float16/simd2storage)

###### Initializers

- [init()](/documentation/swift/float16/simd2storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd2storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd2storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD2Storage.Scalar](/documentation/swift/float16/simd2storage/scalar)
- [Float16.SIMD32Storage](/documentation/swift/float16/simd32storage)

###### Initializers

- [init()](/documentation/swift/float16/simd32storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd32storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd32storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD32Storage.Scalar](/documentation/swift/float16/simd32storage/scalar)
- [Float16.SIMD4Storage](/documentation/swift/float16/simd4storage)

###### Initializers

- [init()](/documentation/swift/float16/simd4storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd4storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd4storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD4Storage.Scalar](/documentation/swift/float16/simd4storage/scalar)
- [Float16.SIMD64Storage](/documentation/swift/float16/simd64storage)

###### Initializers

- [init()](/documentation/swift/float16/simd64storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd64storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd64storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD64Storage.Scalar](/documentation/swift/float16/simd64storage/scalar)
- [Float16.SIMD8Storage](/documentation/swift/float16/simd8storage)

###### Initializers

- [init()](/documentation/swift/float16/simd8storage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/float16/simd8storage/scalarcount)

###### Subscripts

- [subscript(Int) -> Float16](/documentation/swift/float16/simd8storage/subscript(_:))

###### Type Aliases

- [Float16.SIMD8Storage.Scalar](/documentation/swift/float16/simd8storage/scalar)

###### Type Aliases

- [Float16.SIMDMaskScalar](/documentation/swift/float16/simdmaskscalar)
- [SignedNumeric Implementations](/documentation/swift/float16/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/float16/-(_:)-3w54g)

###### Instance Methods

- [func negate()](/documentation/swift/float16/negate()-746a7)
- [Strideable Implementations](/documentation/swift/float16/strideable-implementations)

###### Instance Methods

- [func advanced(by: Float16) -> Float16](/documentation/swift/float16/advanced(by:))
- [func distance(to: Float16) -> Float16](/documentation/swift/float16/distance(to:))

###### Type Aliases

- [Float16.Stride](/documentation/swift/float16/stride)
- [TextOutputStreamable Implementations](/documentation/swift/float16/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/float16/write(to:))
- [Float80](/documentation/swift/float80)

###### Initializers

- [init()](/documentation/swift/float80/init())
- [init?(Substring)](/documentation/swift/float80/init(_:)-2iufm)
- [init?(exactly: Double)](/documentation/swift/float80/init(exactly:)-2szlu)
- [init?(exactly: Float)](/documentation/swift/float80/init(exactly:)-6kkqt)
- [init?(exactly: Float80)](/documentation/swift/float80/init(exactly:)-7ol5e)
- [init(nan: Float80.RawSignificand, signaling: Bool)](/documentation/swift/float80/init(nan:signaling:))

###### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/float80/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/float80/+(_:))
- [static func += (inout Self, Self)](/documentation/swift/float80/+=(_:_:)-j45l)
- [static func -= (inout Self, Self)](/documentation/swift/float80/-=(_:_:)-5akni)

###### Type Properties

- [static var zero: Self](/documentation/swift/float80/zero)
- [BinaryFloatingPoint Implementations](/documentation/swift/float80/binaryfloatingpoint-implementations)

###### Initializers

- [init(Double)](/documentation/swift/float80/init(_:)-4rh2n)
- [init(Float)](/documentation/swift/float80/init(_:)-5jn4i)
- [init<Source>(Source)](/documentation/swift/float80/init(_:)-5yold)
- [init(Float80)](/documentation/swift/float80/init(_:)-6dyii)
- [init<Source>(Source)](/documentation/swift/float80/init(_:)-8p2oa)
- [init?<Source>(exactly: Source)](/documentation/swift/float80/init(exactly:)-5ggvi)
- [init?<Source>(exactly: Source)](/documentation/swift/float80/init(exactly:)-9oml5)
- [init(sign: FloatingPointSign, exponentBitPattern: UInt, significandBitPattern: UInt64)](/documentation/swift/float80/init(sign:exponentbitpattern:significandbitpattern:))

###### Instance Properties

- [var binade: Float80](/documentation/swift/float80/binade)
- [var exponentBitPattern: UInt](/documentation/swift/float80/exponentbitpattern)
- [var significandBitPattern: UInt64](/documentation/swift/float80/significandbitpattern)
- [var significandWidth: Int](/documentation/swift/float80/significandwidth)

###### Type Aliases

- [Float80.RawExponent](/documentation/swift/float80/rawexponent)
- [Float80.RawSignificand](/documentation/swift/float80/rawsignificand)

###### Type Properties

- [static var exponentBitCount: Int](/documentation/swift/float80/exponentbitcount)
- [static var significandBitCount: Int](/documentation/swift/float80/significandbitcount)

###### Type Methods

- [static func random(in: Range<Self>) -> Self](/documentation/swift/float80/random(in:)-3nivi)
- [static func random(in: ClosedRange<Self>) -> Self](/documentation/swift/float80/random(in:)-5zpax)
- [static func random<T>(in: ClosedRange<Self>, using: inout T) -> Self](/documentation/swift/float80/random(in:using:)-2llvb)
- [static func random<T>(in: Range<Self>, using: inout T) -> Self](/documentation/swift/float80/random(in:using:)-lxqd)
- [Comparable Implementations](/documentation/swift/float80/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/float80/'...(_:)-4kbfc)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/float80/'...(_:)-67nbn)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/float80/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/float80/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/float80/'.._(_:_:))
- [static func < (Self, Self) -> Bool](/documentation/swift/float80/_(_:_:)-3kkyi)
- [static func > (Self, Self) -> Bool](/documentation/swift/float80/_(_:_:)-6oc8z)
- [static func < (Self, Self) -> Bool](/documentation/swift/float80/_(_:_:)-972rs)
- [static func >= (Self, Self) -> Bool](/documentation/swift/float80/_=(_:_:)-464mx)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float80/_=(_:_:)-4j9kt)
- [CustomDebugStringConvertible Implementations](/documentation/swift/float80/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/float80/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/float80/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/float80/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/float80/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/float80/description)
- [Equatable Implementations](/documentation/swift/float80/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/float80/!=(_:_:))
- [static func == (Self, Self) -> Bool](/documentation/swift/float80/==(_:_:)-1i6lb)
- [static func == (Self, Self) -> Bool](/documentation/swift/float80/==(_:_:)-336f3)
- [ExpressibleByFloatLiteral Implementations](/documentation/swift/float80/expressiblebyfloatliteral-implementations)

###### Initializers

- [init(floatLiteral: Float80)](/documentation/swift/float80/init(floatliteral:))

###### Type Aliases

- [Float80.FloatLiteralType](/documentation/swift/float80/floatliteraltype)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/float80/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Int64)](/documentation/swift/float80/init(integerliteral:))
- [init(integerLiteral: Self)](/documentation/swift/float80/init(integerliteral:)-2ap07)

###### Type Aliases

- [Float80.IntegerLiteralType](/documentation/swift/float80/integerliteraltype)
- [FloatingPoint Implementations](/documentation/swift/float80/floatingpoint-implementations)

###### Operators

- [static func * (Float80, Float80) -> Float80](/documentation/swift/float80/*(_:_:))
- [static func *= (inout Float80, Float80)](/documentation/swift/float80/*=(_:_:))
- [static func + (Float80, Float80) -> Float80](/documentation/swift/float80/+(_:_:))
- [static func += (inout Float80, Float80)](/documentation/swift/float80/+=(_:_:))
- [static func - (Float80) -> Float80](/documentation/swift/float80/-(_:))
- [static func - (Float80, Float80) -> Float80](/documentation/swift/float80/-(_:_:))
- [static func -= (inout Float80, Float80)](/documentation/swift/float80/-=(_:_:))
- [static func / (Float80, Float80) -> Float80](/documentation/swift/float80/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/float80/_(_:_:)-8otyc)
- [static func /= (inout Float80, Float80)](/documentation/swift/float80/_=(_:_:))
- [static func >= (Self, Self) -> Bool](/documentation/swift/float80/_=(_:_:)-2myj1)
- [static func <= (Self, Self) -> Bool](/documentation/swift/float80/_=(_:_:)-502lh)

###### Initializers

- [init<Source>(Source)](/documentation/swift/float80/init(_:)-33oy4)
- [init(Int)](/documentation/swift/float80/init(_:)-42n91)
- [init?<Source>(exactly: Source)](/documentation/swift/float80/init(exactly:)-2t92j)
- [init(sign: FloatingPointSign, exponent: Int, significand: Float80)](/documentation/swift/float80/init(sign:exponent:significand:))
- [init(signOf: Float80, magnitudeOf: Float80)](/documentation/swift/float80/init(signof:magnitudeof:))
- [init(signOf: Self, magnitudeOf: Self)](/documentation/swift/float80/init(signof:magnitudeof:)-t3cu)

###### Instance Properties

- [var exponent: Int](/documentation/swift/float80/exponent-swift.property)
- [var floatingPointClass: FloatingPointClassification](/documentation/swift/float80/floatingpointclass)
- [var isCanonical: Bool](/documentation/swift/float80/iscanonical)
- [var isFinite: Bool](/documentation/swift/float80/isfinite)
- [var isInfinite: Bool](/documentation/swift/float80/isinfinite)
- [var isNaN: Bool](/documentation/swift/float80/isnan)
- [var isNormal: Bool](/documentation/swift/float80/isnormal)
- [var isSignalingNaN: Bool](/documentation/swift/float80/issignalingnan)
- [var isSubnormal: Bool](/documentation/swift/float80/issubnormal)
- [var isZero: Bool](/documentation/swift/float80/iszero)
- [var nextDown: Self](/documentation/swift/float80/nextdown)
- [var nextUp: Float80](/documentation/swift/float80/nextup)
- [var sign: FloatingPointSign](/documentation/swift/float80/sign)
- [var significand: Float80](/documentation/swift/float80/significand)
- [var ulp: Float80](/documentation/swift/float80/ulp)

###### Instance Methods

- [func addProduct(Float80, Float80)](/documentation/swift/float80/addproduct(_:_:))
- [func addingProduct(Self, Self) -> Self](/documentation/swift/float80/addingproduct(_:_:))
- [func formRemainder(dividingBy: Float80)](/documentation/swift/float80/formremainder(dividingby:))
- [func formSquareRoot()](/documentation/swift/float80/formsquareroot())
- [func formTruncatingRemainder(dividingBy: Float80)](/documentation/swift/float80/formtruncatingremainder(dividingby:))
- [func isEqual(to: Float80) -> Bool](/documentation/swift/float80/isequal(to:))
- [func isLess(than: Float80) -> Bool](/documentation/swift/float80/isless(than:))
- [func isLessThanOrEqualTo(Float80) -> Bool](/documentation/swift/float80/islessthanorequalto(_:))
- [func isTotallyOrdered(belowOrEqualTo: Self) -> Bool](/documentation/swift/float80/istotallyordered(beloworequalto:))
- [func negate()](/documentation/swift/float80/negate())
- [func remainder(dividingBy: Self) -> Self](/documentation/swift/float80/remainder(dividingby:))
- [func round()](/documentation/swift/float80/round())
- [func round(FloatingPointRoundingRule)](/documentation/swift/float80/round(_:))
- [func rounded() -> Self](/documentation/swift/float80/rounded())
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/float80/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/float80/squareroot())
- [func truncatingRemainder(dividingBy: Self) -> Self](/documentation/swift/float80/truncatingremainder(dividingby:))

###### Type Aliases

- [Float80.Exponent](/documentation/swift/float80/exponent-swift.typealias)

###### Type Properties

- [static var greatestFiniteMagnitude: Float80](/documentation/swift/float80/greatestfinitemagnitude)
- [static var infinity: Float80](/documentation/swift/float80/infinity)
- [static var leastNonzeroMagnitude: Float80](/documentation/swift/float80/leastnonzeromagnitude)
- [static var leastNormalMagnitude: Float80](/documentation/swift/float80/leastnormalmagnitude)
- [static var nan: Float80](/documentation/swift/float80/nan)
- [static var pi: Float80](/documentation/swift/float80/pi)
- [static var radix: Int](/documentation/swift/float80/radix)
- [static var signalingNaN: Float80](/documentation/swift/float80/signalingnan)
- [static var ulpOfOne: Float80](/documentation/swift/float80/ulpofone)
- [static var ulpOfOne: Self](/documentation/swift/float80/ulpofone-817da)

###### Type Methods

- [static func maximum(Self, Self) -> Self](/documentation/swift/float80/maximum(_:_:))
- [static func maximumMagnitude(Self, Self) -> Self](/documentation/swift/float80/maximummagnitude(_:_:))
- [static func minimum(Self, Self) -> Self](/documentation/swift/float80/minimum(_:_:))
- [static func minimumMagnitude(Self, Self) -> Self](/documentation/swift/float80/minimummagnitude(_:_:))
- [Hashable Implementations](/documentation/swift/float80/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/float80/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/float80/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/float80/losslessstringconvertible-implementations)

###### Initializers

- [init?<S>(S)](/documentation/swift/float80/init(_:)-74kpu)
- [Numeric Implementations](/documentation/swift/float80/numeric-implementations)

###### Instance Properties

- [var magnitude: Float80](/documentation/swift/float80/magnitude-swift.property)

###### Type Aliases

- [Float80.Magnitude](/documentation/swift/float80/magnitude-swift.typealias)
- [SignedNumeric Implementations](/documentation/swift/float80/signednumeric-implementations)

###### Operators

- [static func - (Self) -> Self](/documentation/swift/float80/-(_:)-37tqf)

###### Instance Methods

- [func negate()](/documentation/swift/float80/negate()-6fr8s)
- [Strideable Implementations](/documentation/swift/float80/strideable-implementations)

###### Instance Methods

- [func advanced(by: Float80) -> Float80](/documentation/swift/float80/advanced(by:))
- [func distance(to: Float80) -> Float80](/documentation/swift/float80/distance(to:))

###### Type Aliases

- [Float80.Stride](/documentation/swift/float80/stride)
- [TextOutputStreamable Implementations](/documentation/swift/float80/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/float80/write(to:))

##### Floating-Point Type Aliases

- [Float32](/documentation/swift/float32)
- [Float64](/documentation/swift/float64)
- [SIMD Vector Types](/documentation/swift/simd-vector-types)

##### SIMD Vectors

- [SIMD2](/documentation/swift/simd2)

###### Operators

- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-112uo)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-1qrul)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-225dc)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-5i6vf)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-5w85n)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-6a6qx)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-839sj)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-9wh6l)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-9xv6g)
- [static func &* (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&*(_:_:)-zf7x)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-175iu)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-3f178)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-3x42n)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-583y4)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-5t97l)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-6mdz6)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-6pxed)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-6u4hj)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-7urty)
- [static func &*= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&*=(_:_:)-914py)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-13p1k)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-17q4o)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-2x2uo)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-3ds74)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-46asb)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-4twsj)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-524ln)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-587j7)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-5vpud)
- [static func &+ (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&+(_:_:)-9b5qm)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-137dd)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-23bkb)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-2oe5d)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-4jhcv)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-69y8n)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-7l0iw)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-80h2s)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-8ie73)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-8itk8)
- [static func &+= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&+=(_:_:)-fols)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-1acyh)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-24vga)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-2wrvt)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-4uwox)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-61yf0)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-6ig99)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-83i5w)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-85d28)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-9ewg4)
- [static func &- (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMD2<Scalar>](/documentation/swift/simd2/&-(_:_:)-9gdup)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-3u4cj)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-4k2tw)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-4z8fi)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-5gaju)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-5yrvu)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-6u17c)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-8qqcv)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-8vm21)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-9llf9)
- [static func &-= (inout SIMD2<Scalar>, SIMD2<Scalar>)](/documentation/swift/simd2/&-=(_:_:)-9orjp)
- [static func .!= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-17nee)
- [static func .!= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-1uw8e)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-2jhzy)
- [static func .!= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-2vvd0)
- [static func .!= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-2yosk)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-2zi10)
- [static func .!= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-305pp)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-46jcg)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-4a7jo)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-4hwla)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-5ryuj)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-6a918)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-6gtlh)
- [static func .!= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-6yqcw)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-722ng)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-7l3t6)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-7vt6k)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-8rz76)
- [static func .!= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-9gqer)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-19afs)
- [static func .== (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-20u3y)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-23xmt)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-2eqbj)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-2exdh)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-30off)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-3t0r5)
- [static func .== (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-42msm)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-43d8e)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-4qhzq)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-50wxa)
- [static func .== (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-5vnc9)
- [static func .== (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-6g08g)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-716q1)
- [static func .== (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-7888u)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-8648n)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-8gw6q)
- [static func .== (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-8t4ar)
- [static func .== (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-99m9l)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-18t82)
- [static func .< (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-1arp4)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-1ey3i)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-1gys3)
- [static func .> (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-1tln6)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-21zn2)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-22f6n)
- [static func .> (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-24wy)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-2awgf)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-2of10)
- [static func .< (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-2v79w)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-32obu)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-3457j)
- [static func .> (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-35uhn)
- [static func .< (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-3b00e)
- [static func .> (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-3cn6j)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-3g03p)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-4hdx6)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-4joai)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-4vo9l)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-53qss)
- [static func .> (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-5j9pg)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-607m1)
- [static func .< (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-68fpy)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-6mv4k)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-6otkm)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-7tdu2)
- [static func .< (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-7tlry)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-8585v)
- [static func .> (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-8a4gt)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-8q1ge)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-8zk2p)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-91t17)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-931vd)
- [static func .< (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-9ie0c)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-9kp8o)
- [static func .< (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-9xjgt)
- [static func .> (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-llyh)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-12uxa)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1cmjk)
- [static func .>= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1ic7a)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1lx1o)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1prbk)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1qr9u)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1tp4t)
- [static func .>= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-27trm)
- [static func .<= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-2fw5r)
- [static func .>= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-2rqh)
- [static func .>= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-3buq3)
- [static func .<= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-3lt4c)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-3xeko)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-4e9xn)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-4osl2)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-4x86y)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-518bk)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-5egjo)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-5lzb9)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-5t8zo)
- [static func .<= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-5whlw)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-6dkek)
- [static func .<= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-6pd7b)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-6wspu)
- [static func .<= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-74z2c)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-7a4ca)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-7dkll)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-8bzup)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-8e8dp)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-8gkbc)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9adqi)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9apel)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9h2yk)
- [static func .<= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9nbpc)
- [static func .>= (Scalar, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9rqxy)
- [static func .>= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-fkwk)
- [static func .<= (SIMD2<Scalar>, SIMD2<Scalar>) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-rj2r)
- [static func .>= (SIMD2<Scalar>, Scalar) -> SIMDMask<SIMD2<Scalar>.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-wl4e)

###### Initializers

- [init()](/documentation/swift/simd2/init())
- [init<Other>(SIMD2<Other>)](/documentation/swift/simd2/init(_:)-2xs3b)
- [init<Other>(SIMD2<Other>)](/documentation/swift/simd2/init(_:)-6nms8)
- [init(Scalar, Scalar)](/documentation/swift/simd2/init(_:_:))
- [init<Other>(SIMD2<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd2/init(_:rounding:))
- [init<Other>(clamping: SIMD2<Other>)](/documentation/swift/simd2/init(clamping:))
- [init(repeating: UInt32)](/documentation/swift/simd2/init(repeating:)-1d245)
- [init(repeating: Float)](/documentation/swift/simd2/init(repeating:)-1ilxx)
- [init(repeating: UInt64)](/documentation/swift/simd2/init(repeating:)-2fd8o)
- [init(repeating: Double)](/documentation/swift/simd2/init(repeating:)-38iad)
- [init(repeating: Int8)](/documentation/swift/simd2/init(repeating:)-3b96i)
- [init(repeating: Int)](/documentation/swift/simd2/init(repeating:)-4fybh)
- [init(repeating: Int64)](/documentation/swift/simd2/init(repeating:)-4s9km)
- [init(repeating: Int32)](/documentation/swift/simd2/init(repeating:)-5fin1)
- [init(repeating: Int16)](/documentation/swift/simd2/init(repeating:)-5ihci)
- [init(repeating: UInt8)](/documentation/swift/simd2/init(repeating:)-6kydp)
- [init(repeating: UInt)](/documentation/swift/simd2/init(repeating:)-714au)
- [init(repeating: UInt16)](/documentation/swift/simd2/init(repeating:)-8ie57)
- [init(repeating: Float16)](/documentation/swift/simd2/init(repeating:)-8io2d)
- [init<Other>(truncatingIfNeeded: SIMD2<Other>)](/documentation/swift/simd2/init(truncatingifneeded:))
- [init(x: Scalar, y: Scalar)](/documentation/swift/simd2/init(x:y:))

###### Instance Properties

- [var hashValue: Int](/documentation/swift/simd2/hashvalue)
- [var scalarCount: Int](/documentation/swift/simd2/scalarcount)
- [var x: Scalar](/documentation/swift/simd2/x)
- [var y: Scalar](/documentation/swift/simd2/y)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd2/subscript(_:))

###### Type Aliases

- [SIMD2.ArrayLiteralElement](/documentation/swift/simd2/arrayliteralelement)
- [SIMD2.MaskStorage](/documentation/swift/simd2/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd2/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd2/debugdescription)
- [Equatable Implementations](/documentation/swift/simd2/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd2/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd2/simd-implementations)

###### Operators

- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&(_:_:)-5sluq)
- [static func & (Self, Self) -> Self](/documentation/swift/simd2/&(_:_:)-6dank)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&(_:_:)-9cv9t)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd2/&*(_:_:)-1tpsv)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&*(_:_:)-2uia9)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&*(_:_:)-9lr3o)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd2/&*=(_:_:)-4n268)
- [static func &*= (inout Self, Self)](/documentation/swift/simd2/&*=(_:_:)-4ua1o)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&+(_:_:)-5jg3m)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd2/&+(_:_:)-6qrmu)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&+(_:_:)-s654)
- [static func &+= (inout Self, Self)](/documentation/swift/simd2/&+=(_:_:)-15hks)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd2/&+=(_:_:)-xnu7)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&-(_:_:)-4tntq)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&-(_:_:)-6usy6)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd2/&-(_:_:)-8tchg)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd2/&-=(_:_:)-5340e)
- [static func &-= (inout Self, Self)](/documentation/swift/simd2/&-=(_:_:)-8d2hj)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd2/&=(_:_:)-583dj)
- [static func &= (inout Self, Self)](/documentation/swift/simd2/&=(_:_:)-5a7qw)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&__(_:_:)-1cf7o)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd2/&__(_:_:)-8w3q6)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd2/&__(_:_:)-92xzu)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&__(_:_:)-9j2fk)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd2/&__(_:_:)-inkq)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd2/&__(_:_:)-onf6)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd2/&__=(_:_:)-2n0zi)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd2/&__=(_:_:)-389yv)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd2/&__=(_:_:)-7dkm4)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd2/&__=(_:_:)-83fbl)
- [static func * (Self, Self) -> Self](/documentation/swift/simd2/*(_:_:)-2hwhr)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd2/*(_:_:)-4cbci)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd2/*(_:_:)-4lojf)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd2/*(_:_:)-50ffc)
- [static func * (Self, Self) -> Self](/documentation/swift/simd2/*(_:_:)-6ktum)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd2/*(_:_:)-9wp8w)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd2/*=(_:_:)-27nt8)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd2/*=(_:_:)-3zjz6)
- [static func *= (inout Self, Self)](/documentation/swift/simd2/*=(_:_:)-4j02f)
- [static func *= (inout Self, Self)](/documentation/swift/simd2/*=(_:_:)-5qufm)
- [static func + (Self, Self) -> Self](/documentation/swift/simd2/+(_:_:)-1h79f)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd2/+(_:_:)-1s6ev)
- [static func + (Self, Self) -> Self](/documentation/swift/simd2/+(_:_:)-2begd)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd2/+(_:_:)-62pyv)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd2/+(_:_:)-844oq)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd2/+(_:_:)-9w9bt)
- [static func += (inout Self, Self)](/documentation/swift/simd2/+=(_:_:)-13ati)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd2/+=(_:_:)-33g1r)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd2/+=(_:_:)-3it33)
- [static func += (inout Self, Self)](/documentation/swift/simd2/+=(_:_:)-4kf28)
- [static func - (Self) -> Self](/documentation/swift/simd2/-(_:))
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd2/-(_:_:)-1eq67)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd2/-(_:_:)-59t7d)
- [static func - (Self, Self) -> Self](/documentation/swift/simd2/-(_:_:)-5hv3b)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd2/-(_:_:)-5rbq2)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd2/-(_:_:)-8pa31)
- [static func - (Self, Self) -> Self](/documentation/swift/simd2/-(_:_:)-8vsnc)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd2/-=(_:_:)-5eiqo)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd2/-=(_:_:)-6au1l)
- [static func -= (inout Self, Self)](/documentation/swift/simd2/-=(_:_:)-8oyin)
- [static func -= (inout Self, Self)](/documentation/swift/simd2/-=(_:_:)-90e80)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-1o5rd)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-5ko8d)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.!=(_:_:)-70n1x)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-1q06g)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-4dd4z)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'.==(_:_:)-860hm)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-2n2w2)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-3inug)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-49wsu)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-5ldki)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-5wj3h)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._(_:_:)-6yov0)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-134li)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-1wtvs)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-3m1tr)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-41ri2)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-5jyc4)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd2/'._=(_:_:)-9pao5)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd2/==(_:_:))
- [static func | (Self, Self) -> Self](/documentation/swift/simd2/_(_:_:)-1t3qy)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd2/_(_:_:)-2nvzq)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd2/_(_:_:)-2o8h3)
- [static func % (Self, Self) -> Self](/documentation/swift/simd2/_(_:_:)-2sk6v)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd2/_(_:_:)-2zahy)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd2/_(_:_:)-3pc04)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd2/_(_:_:)-3vp33)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd2/_(_:_:)-6f29q)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd2/_(_:_:)-6ftk7)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd2/_(_:_:)-7veum)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd2/_(_:_:)-7vid)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd2/_(_:_:)-905lf)
- [static func / (Self, Self) -> Self](/documentation/swift/simd2/_(_:_:)-935ut)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd2/_(_:_:)-9i1cd)
- [static func / (Self, Self) -> Self](/documentation/swift/simd2/_(_:_:)-9ino5)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd2/_=(_:_:)-18kdt)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd2/_=(_:_:)-1tfgs)
- [static func /= (inout Self, Self)](/documentation/swift/simd2/_=(_:_:)-5c1gt)
- [static func |= (inout Self, Self)](/documentation/swift/simd2/_=(_:_:)-6kfnu)
- [static func %= (inout Self, Self)](/documentation/swift/simd2/_=(_:_:)-723sn)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd2/_=(_:_:)-7u42r)
- [static func ^= (inout Self, Self)](/documentation/swift/simd2/_=(_:_:)-8jvd9)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd2/_=(_:_:)-9a0hy)
- [static func /= (inout Self, Self)](/documentation/swift/simd2/_=(_:_:)-9iwfe)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd2/_=(_:_:)-sxsf)
- [static func ~ (Self) -> Self](/documentation/swift/simd2/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd2/init(_:)-3f03w)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd2/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd2/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd2/init(repeating:)-97uo4)

###### Instance Properties

- [var description: String](/documentation/swift/simd2/description)
- [var indices: Range<Int>](/documentation/swift/simd2/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd2/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd2/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd2/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self, Self)](/documentation/swift/simd2/addproduct(_:_:)-24o9x)
- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd2/addproduct(_:_:)-48dp5)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd2/addproduct(_:_:)-8hqkc)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd2/addingproduct(_:_:)-1nafl)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd2/addingproduct(_:_:)-76tvc)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd2/addingproduct(_:_:)-94rva)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd2/clamp(lowerbound:upperbound:)-77fvf)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd2/clamp(lowerbound:upperbound:)-9havh)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd2/clamped(lowerbound:upperbound:)-4qr0j)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd2/clamped(lowerbound:upperbound:)-8tjus)
- [func encode(to: any Encoder) throws](/documentation/swift/simd2/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd2/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd2/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd2/max()-71lal)
- [func max() -> Self.Scalar](/documentation/swift/simd2/max()-xykz)
- [func min() -> Self.Scalar](/documentation/swift/simd2/min()-7qoe7)
- [func min() -> Self.Scalar](/documentation/swift/simd2/min()-8s2vo)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd2/replace(with:where:)-7e48m)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd2/replace(with:where:)-7yq25)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd2/replacing(with:where:)-32hlo)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd2/replacing(with:where:)-3o6pm)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd2/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd2/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd2/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd2/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd2/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd2/one-1gj1r)
- [static var one: Self](/documentation/swift/simd2/one-7ehgf)
- [static var zero: Self](/documentation/swift/simd2/zero-1xeqr)
- [static var zero: Self](/documentation/swift/simd2/zero-6rme0)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd2/random(in:)-3wbi8)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd2/random(in:)-6jji8)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd2/random(in:using:)-6dc38)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd2/random(in:using:)-7xbgv)
- [SIMD3](/documentation/swift/simd3)

###### Operators

- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-14tt9)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-29rpr)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-3ec0a)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-4hxiq)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-6eh18)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-7cy4j)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-86aql)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-86uf5)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-8ojsj)
- [static func &* (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&*(_:_:)-l07u)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-2owcx)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-3t9ye)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-49p97)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-4muyj)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-6nmmo)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-74isr)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-7nl0q)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-7zjng)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-9gib9)
- [static func &*= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&*=(_:_:)-9isql)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-2cuyr)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-3k3cs)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-3u087)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-5wpci)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-60gwu)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-7nodb)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-95b0b)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-9k9bs)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-9xwq2)
- [static func &+ (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&+(_:_:)-x0jd)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-1smxq)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-2vw8i)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-4oswl)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-52qx7)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-5ncyz)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-5xr6c)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-5ycfs)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-6k7k6)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-74vmj)
- [static func &+= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&+=(_:_:)-9ujsb)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-2cqqf)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-2jj89)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-3oks4)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-4ct33)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-4o3b7)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-5t9g4)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-6s0e)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-6sbve)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-74wz4)
- [static func &- (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMD3<Scalar>](/documentation/swift/simd3/&-(_:_:)-7o9i7)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-1cpjl)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-1vz7r)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-203ex)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-758sr)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-7iif2)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-7ionz)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-7mv8v)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-8a7iq)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-934v1)
- [static func &-= (inout SIMD3<Scalar>, SIMD3<Scalar>)](/documentation/swift/simd3/&-=(_:_:)-9i4r8)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-1gwe7)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-26tu8)
- [static func .!= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-2763t)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-2dcly)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-2m4zi)
- [static func .!= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-2wbs0)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-3e5z5)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-3ehxy)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-3y4rx)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-4egh6)
- [static func .!= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-6abfl)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-6vr36)
- [static func .!= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-7o0n1)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-7w5cz)
- [static func .!= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-7w94i)
- [static func .!= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-822tu)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-8hd9q)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-z7be)
- [static func .!= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-zqec)
- [static func .== (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-1r3aj)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-1vyij)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-1zdo1)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-2omx4)
- [static func .== (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-333z6)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-372pk)
- [static func .== (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-4sagz)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-5clng)
- [static func .== (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-5htgu)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-6xlau)
- [static func .== (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-7vivh)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-8c8vj)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-8gaf2)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-8szzf)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-99z3w)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-9lb6p)
- [static func .== (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-rlww)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-txf6)
- [static func .== (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-wu2e)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-143ho)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-1bzwg)
- [static func .> (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-1ge2c)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-1w1lk)
- [static func .> (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-200l2)
- [static func .> (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-2j6hl)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-2ysy)
- [static func .< (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-30c0)
- [static func .< (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-34bdp)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-3in83)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-3j9y0)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-3kk7)
- [static func .< (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-3mqbw)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-41uob)
- [static func .< (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-44zm8)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-4kdcq)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-51vx7)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5491f)
- [static func .< (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5a2z5)
- [static func .> (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5blln)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5tq5i)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5uzdm)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6aipe)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6bt4m)
- [static func .< (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6m4lb)
- [static func .> (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6nt2r)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6s5fr)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-76xlg)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-77szi)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-7f9c6)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-7qr6l)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-82nkx)
- [static func .> (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-8vndv)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-90zlz)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-97it)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-9izlc)
- [static func .> (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-9njse)
- [static func .< (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-d9rn)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-13aun)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-1dmz5)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-206qr)
- [static func .>= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-24ojw)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-2g9d6)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-2gok7)
- [static func .<= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-2ptd4)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-324br)
- [static func .>= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3cpi4)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3eq1p)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3r9ha)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3tefo)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3vcqm)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-41hxe)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-4svc2)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-4ta1h)
- [static func .>= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-4y8n6)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-4zd7d)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-55rgb)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-58q2o)
- [static func .<= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-5ckdg)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-5u509)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-67m1v)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-6we1d)
- [static func .<= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-70hws)
- [static func .<= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-81qrx)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8401a)
- [static func .>= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8f3cp)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8gh0v)
- [static func .>= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8hlis)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8k7l7)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-8q9vr)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-91q9d)
- [static func .<= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-9aop0)
- [static func .>= (SIMD3<Scalar>, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-9c35m)
- [static func .<= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-9gklo)
- [static func .>= (Scalar, SIMD3<Scalar>) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-le41)
- [static func .<= (SIMD3<Scalar>, Scalar) -> SIMDMask<SIMD3<Scalar>.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-lknb)

###### Initializers

- [init()](/documentation/swift/simd3/init())
- [init(Size3DFloat)](/documentation/swift/simd3/init(_:)-3i2wy)
- [init(SCNVector3)](/documentation/swift/simd3/init(_:)-4bsad)
- [init<Other>(SIMD3<Other>)](/documentation/swift/simd3/init(_:)-4lx91)
- [init(Point3DFloat)](/documentation/swift/simd3/init(_:)-612bd)
- [init(Point3D)](/documentation/swift/simd3/init(_:)-6xfbj)
- [init<Other>(SIMD3<Other>)](/documentation/swift/simd3/init(_:)-7eqf)
- [init(Vector3D)](/documentation/swift/simd3/init(_:)-8cj8r)
- [init(Vector3DFloat)](/documentation/swift/simd3/init(_:)-8mcjs)
- [init(RotationAxis3DFloat)](/documentation/swift/simd3/init(_:)-irjs)
- [init(RotationAxis3D)](/documentation/swift/simd3/init(_:)-wsoa)
- [init(SCNVector3)](/documentation/swift/simd3/init(_:)-ykmb)
- [init(Size3D)](/documentation/swift/simd3/init(_:)-yv4o)
- [init(SIMD2<Scalar>, Scalar)](/documentation/swift/simd3/init(_:_:))
- [init(Scalar, Scalar, Scalar)](/documentation/swift/simd3/init(_:_:_:))
- [init<Other>(SIMD3<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd3/init(_:rounding:))
- [init<Other>(clamping: SIMD3<Other>)](/documentation/swift/simd3/init(clamping:))
- [init(point: Point3D)](/documentation/swift/simd3/init(point:))
- [init(repeating: Double)](/documentation/swift/simd3/init(repeating:)-3cti6)
- [init(repeating: Float16)](/documentation/swift/simd3/init(repeating:)-4wsn7)
- [init(repeating: Int64)](/documentation/swift/simd3/init(repeating:)-6883m)
- [init(repeating: UInt)](/documentation/swift/simd3/init(repeating:)-6ceky)
- [init(repeating: UInt16)](/documentation/swift/simd3/init(repeating:)-6kbdd)
- [init(repeating: UInt32)](/documentation/swift/simd3/init(repeating:)-78nb0)
- [init(repeating: Float)](/documentation/swift/simd3/init(repeating:)-7sm3)
- [init(repeating: UInt64)](/documentation/swift/simd3/init(repeating:)-828q8)
- [init(repeating: Int8)](/documentation/swift/simd3/init(repeating:)-8d33j)
- [init(repeating: Int)](/documentation/swift/simd3/init(repeating:)-8kjud)
- [init(repeating: UInt8)](/documentation/swift/simd3/init(repeating:)-gqgd)
- [init(repeating: Int16)](/documentation/swift/simd3/init(repeating:)-iy1o)
- [init(repeating: Int32)](/documentation/swift/simd3/init(repeating:)-so4h)
- [init(rotationAxis: RotationAxis3D)](/documentation/swift/simd3/init(rotationaxis:))
- [init(size: Size3D)](/documentation/swift/simd3/init(size:))
- [init<Other>(truncatingIfNeeded: SIMD3<Other>)](/documentation/swift/simd3/init(truncatingifneeded:))
- [init(vector: Vector3D)](/documentation/swift/simd3/init(vector:))
- [init(x: Scalar, y: Scalar, z: Scalar)](/documentation/swift/simd3/init(x:y:z:))

###### Instance Properties

- [var hashValue: Int](/documentation/swift/simd3/hashvalue)
- [var scalarCount: Int](/documentation/swift/simd3/scalarcount)
- [var x: Scalar](/documentation/swift/simd3/x)
- [var y: Scalar](/documentation/swift/simd3/y)
- [var z: Scalar](/documentation/swift/simd3/z)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd3/subscript(_:))

###### Type Aliases

- [SIMD3.ArrayLiteralElement](/documentation/swift/simd3/arrayliteralelement)
- [SIMD3.MaskStorage](/documentation/swift/simd3/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd3/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd3/debugdescription)
- [Equatable Implementations](/documentation/swift/simd3/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd3/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd3/simd-implementations)

###### Operators

- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&(_:_:)-5sle8)
- [static func & (Self, Self) -> Self](/documentation/swift/simd3/&(_:_:)-6dadi)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&(_:_:)-9cv5x)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd3/&*(_:_:)-1tpdr)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&*(_:_:)-2ui6l)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&*(_:_:)-9lqx2)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd3/&*=(_:_:)-4n2gi)
- [static func &*= (inout Self, Self)](/documentation/swift/simd3/&*=(_:_:)-4uaeq)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&+(_:_:)-5jgfk)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd3/&+(_:_:)-6qry0)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&+(_:_:)-s6mm)
- [static func &+= (inout Self, Self)](/documentation/swift/simd3/&+=(_:_:)-15hgq)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd3/&+=(_:_:)-xndr)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&-(_:_:)-4tne0)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&-(_:_:)-6usqk)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd3/&-(_:_:)-8tcdi)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd3/&-=(_:_:)-534bk)
- [static func &-= (inout Self, Self)](/documentation/swift/simd3/&-=(_:_:)-8d2rr)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd3/&=(_:_:)-583on)
- [static func &= (inout Self, Self)](/documentation/swift/simd3/&=(_:_:)-5a80m)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&__(_:_:)-1cf4m)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd3/&__(_:_:)-8w3ew)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd3/&__(_:_:)-92xk8)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&__(_:_:)-9j2cu)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd3/&__(_:_:)-in54)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd3/&__(_:_:)-on38)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd3/&__=(_:_:)-2n11s)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd3/&__=(_:_:)-38a87)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd3/&__=(_:_:)-7dkpa)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd3/&__=(_:_:)-83fu5)
- [static func * (Self, Self) -> Self](/documentation/swift/simd3/*(_:_:)-2hvzj)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd3/*(_:_:)-4cbmk)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd3/*(_:_:)-4lo7f)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd3/*(_:_:)-50fba)
- [static func * (Self, Self) -> Self](/documentation/swift/simd3/*(_:_:)-6ktkg)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd3/*(_:_:)-9wplu)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd3/*=(_:_:)-27oce)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd3/*=(_:_:)-3zjhs)
- [static func *= (inout Self, Self)](/documentation/swift/simd3/*=(_:_:)-4j0iv)
- [static func *= (inout Self, Self)](/documentation/swift/simd3/*=(_:_:)-5qujk)
- [static func + (Self, Self) -> Self](/documentation/swift/simd3/+(_:_:)-1h7rv)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd3/+(_:_:)-1s6av)
- [static func + (Self, Self) -> Self](/documentation/swift/simd3/+(_:_:)-2bek1)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd3/+(_:_:)-62q9z)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd3/+(_:_:)-844rw)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd3/+(_:_:)-9w8yd)
- [static func += (inout Self, Self)](/documentation/swift/simd3/+=(_:_:)-13ac4)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd3/+=(_:_:)-33ge7)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd3/+=(_:_:)-3islb)
- [static func += (inout Self, Self)](/documentation/swift/simd3/+=(_:_:)-4kezy)
- [static func - (Self) -> Self](/documentation/swift/simd3/-(_:))
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd3/-(_:_:)-1eqhb)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd3/-(_:_:)-59t4d)
- [static func - (Self, Self) -> Self](/documentation/swift/simd3/-(_:_:)-5hurb)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd3/-(_:_:)-5rbfs)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd3/-(_:_:)-8pag1)
- [static func - (Self, Self) -> Self](/documentation/swift/simd3/-(_:_:)-8vs62)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd3/-=(_:_:)-5ej92)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd3/-=(_:_:)-6att9)
- [static func -= (inout Self, Self)](/documentation/swift/simd3/-=(_:_:)-8oysv)
- [static func -= (inout Self, Self)](/documentation/swift/simd3/-=(_:_:)-90eji)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-1o5ed)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-5knpd)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.!=(_:_:)-70ndl)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-1q0oq)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-4ddir)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'.==(_:_:)-8605k)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-2n374)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-3inh2)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-49xao)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5ld34)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-5wj69)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._(_:_:)-6yoj2)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-134b8)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-1wtru)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-3m1wf)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-41rws)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-5jyme)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd3/'._=(_:_:)-9paeh)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd3/==(_:_:))
- [static func | (Self, Self) -> Self](/documentation/swift/simd3/_(_:_:)-1t3fs)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd3/_(_:_:)-2nvgk)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd3/_(_:_:)-2o86v)
- [static func % (Self, Self) -> Self](/documentation/swift/simd3/_(_:_:)-2skh3)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd3/_(_:_:)-2zako)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd3/_(_:_:)-3pbx6)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd3/_(_:_:)-3vpcf)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd3/_(_:_:)-6f2o8)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd3/_(_:_:)-6fu2f)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd3/_(_:_:)-7v8x)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd3/_(_:_:)-7vf28)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd3/_(_:_:)-9061v)
- [static func / (Self, Self) -> Self](/documentation/swift/simd3/_(_:_:)-936c1)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd3/_(_:_:)-9i1nl)
- [static func / (Self, Self) -> Self](/documentation/swift/simd3/_(_:_:)-9io5d)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd3/_=(_:_:)-18ko5)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd3/_=(_:_:)-1tfky)
- [static func /= (inout Self, Self)](/documentation/swift/simd3/_=(_:_:)-5c1dl)
- [static func |= (inout Self, Self)](/documentation/swift/simd3/_=(_:_:)-6kg54)
- [static func %= (inout Self, Self)](/documentation/swift/simd3/_=(_:_:)-723if)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd3/_=(_:_:)-7u3yj)
- [static func ^= (inout Self, Self)](/documentation/swift/simd3/_=(_:_:)-8juvl)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd3/_=(_:_:)-9a0es)
- [static func /= (inout Self, Self)](/documentation/swift/simd3/_=(_:_:)-9ivy0)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd3/_=(_:_:)-sxrj)
- [static func ~ (Self) -> Self](/documentation/swift/simd3/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd3/init(_:)-3f00q)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd3/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd3/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd3/init(repeating:)-97v6a)

###### Instance Properties

- [var description: String](/documentation/swift/simd3/description)
- [var indices: Range<Int>](/documentation/swift/simd3/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd3/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd3/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd3/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self, Self)](/documentation/swift/simd3/addproduct(_:_:)-24nyp)
- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd3/addproduct(_:_:)-48e6d)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd3/addproduct(_:_:)-8hqma)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd3/addingproduct(_:_:)-1naql)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd3/addingproduct(_:_:)-76u4u)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd3/addingproduct(_:_:)-94rr8)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd3/clamp(lowerbound:upperbound:)-77fkz)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd3/clamp(lowerbound:upperbound:)-9has1)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd3/clamped(lowerbound:upperbound:)-4qqqj)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd3/clamped(lowerbound:upperbound:)-8tjee)
- [func encode(to: any Encoder) throws](/documentation/swift/simd3/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd3/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd3/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd3/max()-71ltd)
- [func max() -> Self.Scalar](/documentation/swift/simd3/max()-xz2j)
- [func min() -> Self.Scalar](/documentation/swift/simd3/min()-7qoof)
- [func min() -> Self.Scalar](/documentation/swift/simd3/min()-8s36y)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd3/replace(with:where:)-7e3ns)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd3/replace(with:where:)-7yqk1)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd3/replacing(with:where:)-32h3i)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd3/replacing(with:where:)-3o6zs)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd3/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd3/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd3/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd3/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd3/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd3/one-1gjj3)
- [static var one: Self](/documentation/swift/simd3/one-7ehtb)
- [static var zero: Self](/documentation/swift/simd3/zero-1xegj)
- [static var zero: Self](/documentation/swift/simd3/zero-6rmb2)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd3/random(in:)-3wbg2)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd3/random(in:)-6jj3m)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd3/random(in:using:)-6dbs2)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd3/random(in:using:)-7xbdr)
- [SIMD4](/documentation/swift/simd4)

###### Operators

- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-2t3u3)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-4mgas)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-58o8b)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-58obf)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-6tcig)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-8d18h)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-9500)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-95f9r)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-9rqgl)
- [static func &* (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&*(_:_:)-9w4k9)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-366ii)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-3rbko)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-44bys)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-5b0so)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-6lwed)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-6q14r)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-6xqb6)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-82jen)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-9ncfh)
- [static func &*= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&*=(_:_:)-gzto)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-1te60)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-242rh)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-285ia)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-36osx)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-5kcci)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-7lmra)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-882i)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-97dnc)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-9ik7g)
- [static func &+ (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&+(_:_:)-m3ua)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-149yb)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-1noki)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-2of8k)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-2tfy3)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-39e7m)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-4prbm)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-6gj5j)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-74v45)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-97jca)
- [static func &+= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&+=(_:_:)-rjox)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-15lhe)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-16vdb)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-2k023)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-2zf5s)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-68jav)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-6c13i)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-7lw64)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-7mu38)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-8dyvm)
- [static func &- (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMD4<Scalar>](/documentation/swift/simd4/&-(_:_:)-8qlsp)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-246za)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-2c8ti)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-3i9au)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-3sdor)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-4h8d2)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-4wv73)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-55ra6)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-5lgiw)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-6o1tt)
- [static func &-= (inout SIMD4<Scalar>, SIMD4<Scalar>)](/documentation/swift/simd4/&-=(_:_:)-7i51c)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-1dfla)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-20ki6)
- [static func .!= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-2zk5p)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-3dpb9)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-3za3s)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-4nhev)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-4rkvj)
- [static func .!= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-5989r)
- [static func .!= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-7kjv3)
- [static func .!= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-7qjh3)
- [static func .!= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-80l98)
- [static func .!= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-8fn4p)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-8grg9)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-8q623)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-8vtwt)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-9cb1n)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-9q0rp)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-9yqz5)
- [static func .!= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-ruxz)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-1045v)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-1g3vu)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-1gpsx)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-25zmi)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-2k4vk)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-2nsel)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-4546s)
- [static func .== (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-5c0gi)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-6f4lp)
- [static func .== (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-6kpb9)
- [static func .== (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-6ob3q)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-6stsy)
- [static func .== (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-7gbyi)
- [static func .== (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-7h40q)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-83hrk)
- [static func .== (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-86kdt)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-94etw)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-9e46i)
- [static func .== (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-9x68v)
- [static func .< (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-11dvk)
- [static func .< (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-14oh6)
- [static func .> (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1hia8)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1jqtu)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1jwzn)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1rsvy)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1ut8t)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-1z0m8)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-2gccv)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-2wgwx)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3e3jg)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3fphg)
- [static func .> (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3hybf)
- [static func .< (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3nkri)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3wevl)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4303j)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4gap2)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4ihrd)
- [static func .> (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4kq3p)
- [static func .< (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4na4r)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-4wwop)
- [static func .> (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-5k3cv)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-5omj)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-5ywlq)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-6lat8)
- [static func .< (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-6re1z)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-6ugy1)
- [static func .> (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-7bg6m)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-7yul1)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-8wq2h)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-9ba0f)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-9hciq)
- [static func .< (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-fiw6)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-ghlz)
- [static func .< (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-mda6)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-nwzo)
- [static func .> (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-s2dg)
- [static func .> (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-zqkc)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-11lr3)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-14iae)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-15866)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-1c6si)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-1l3xg)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-1v1dy)
- [static func .>= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-1z1op)
- [static func .>= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-23qy3)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-2821y)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-2j03q)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-2ltkw)
- [static func .<= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-2p2sm)
- [static func .>= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-2uq91)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-3bs97)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-3p65t)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-4koys)
- [static func .<= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-4q6oc)
- [static func .>= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-4t218)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-59ik5)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-5llp8)
- [static func .<= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-5qz25)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-5t5al)
- [static func .>= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-66txr)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6ft8e)
- [static func .<= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6izov)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6m8mz)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6nsbw)
- [static func .<= (Scalar, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6tt5n)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-6xt5h)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-74im3)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-7n61o)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-81jth)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-8d4de)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-8qkve)
- [static func .<= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-8r25e)
- [static func .>= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-8xoj5)
- [static func .>= (SIMD4<Scalar>, SIMD4<Scalar>) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-96ya4)
- [static func .<= (SIMD4<Scalar>, Scalar) -> SIMDMask<SIMD4<Scalar>.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-rt7g)

###### Initializers

- [init()](/documentation/swift/simd4/init())
- [init<Other>(SIMD4<Other>)](/documentation/swift/simd4/init(_:)-1dme2)
- [init(SCNVector4)](/documentation/swift/simd4/init(_:)-1f9vo)
- [init(Size3DFloat)](/documentation/swift/simd4/init(_:)-1tyne)
- [init<Other>(SIMD4<Other>)](/documentation/swift/simd4/init(_:)-2frw5)
- [init(Rotation3D)](/documentation/swift/simd4/init(_:)-2lh73)
- [init(SphericalCoordinates3DFloat)](/documentation/swift/simd4/init(_:)-2wwuh)
- [init(Vector3D)](/documentation/swift/simd4/init(_:)-30hiv)
- [init(Point3D)](/documentation/swift/simd4/init(_:)-3pxce)
- [init(SCNVector4)](/documentation/swift/simd4/init(_:)-5dnpp)
- [init(Vector3DFloat)](/documentation/swift/simd4/init(_:)-5emgw)
- [init(Point3DFloat)](/documentation/swift/simd4/init(_:)-5sq49)
- [init(Rotation3DFloat)](/documentation/swift/simd4/init(_:)-6pjsb)
- [init(SphericalCoordinates3D)](/documentation/swift/simd4/init(_:)-8kyv)
- [init(RotationAxis3DFloat)](/documentation/swift/simd4/init(_:)-97pz3)
- [init(RotationAxis3D)](/documentation/swift/simd4/init(_:)-9rzwt)
- [init(Size3D)](/documentation/swift/simd4/init(_:)-hfd1)
- [init(SIMD3<Scalar>, Scalar)](/documentation/swift/simd4/init(_:_:))
- [init(Scalar, Scalar, Scalar, Scalar)](/documentation/swift/simd4/init(_:_:_:_:))
- [init<Other>(SIMD4<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd4/init(_:rounding:))
- [init<Other>(clamping: SIMD4<Other>)](/documentation/swift/simd4/init(clamping:))
- [init(lowHalf: SIMD2<Int16>, highHalf: SIMD2<Int16>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-17nrt)
- [init(lowHalf: SIMD2<Scalar>, highHalf: SIMD2<Scalar>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-1mfgu)
- [init(lowHalf: SIMD2<Int64>, highHalf: SIMD2<Int64>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-1mnu4)
- [init(lowHalf: SIMD2<Int8>, highHalf: SIMD2<Int8>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-1vinm)
- [init(lowHalf: SIMD2<UInt32>, highHalf: SIMD2<UInt32>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-2mvkj)
- [init(lowHalf: SIMD2<UInt16>, highHalf: SIMD2<UInt16>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-47i96)
- [init(lowHalf: SIMD2<UInt64>, highHalf: SIMD2<UInt64>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-5ye5o)
- [init(lowHalf: SIMD2<Double>, highHalf: SIMD2<Double>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-66418)
- [init(lowHalf: SIMD2<UInt>, highHalf: SIMD2<UInt>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-7rr1m)
- [init(lowHalf: SIMD2<Float>, highHalf: SIMD2<Float>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-8crbu)
- [init(lowHalf: SIMD2<Float16>, highHalf: SIMD2<Float16>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-8ojwi)
- [init(lowHalf: SIMD2<Int>, highHalf: SIMD2<Int>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-8r3d7)
- [init(lowHalf: SIMD2<UInt8>, highHalf: SIMD2<UInt8>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-8w1ua)
- [init(lowHalf: SIMD2<Int32>, highHalf: SIMD2<Int32>)](/documentation/swift/simd4/init(lowhalf:highhalf:)-9uxst)
- [init(repeating: UInt16)](/documentation/swift/simd4/init(repeating:)-3b6vk)
- [init(repeating: UInt8)](/documentation/swift/simd4/init(repeating:)-3cv3r)
- [init(repeating: UInt)](/documentation/swift/simd4/init(repeating:)-3jjxm)
- [init(repeating: Int)](/documentation/swift/simd4/init(repeating:)-4ghrb)
- [init(repeating: Int32)](/documentation/swift/simd4/init(repeating:)-4vag6)
- [init(repeating: Float16)](/documentation/swift/simd4/init(repeating:)-4xdm7)
- [init(repeating: UInt32)](/documentation/swift/simd4/init(repeating:)-4ylyi)
- [init(repeating: UInt64)](/documentation/swift/simd4/init(repeating:)-6z4nu)
- [init(repeating: Float)](/documentation/swift/simd4/init(repeating:)-70muy)
- [init(repeating: Int16)](/documentation/swift/simd4/init(repeating:)-8z86u)
- [init(repeating: Int64)](/documentation/swift/simd4/init(repeating:)-9qofv)
- [init(repeating: Int8)](/documentation/swift/simd4/init(repeating:)-erxu)
- [init(repeating: Double)](/documentation/swift/simd4/init(repeating:)-gu1y)
- [init<Other>(truncatingIfNeeded: SIMD4<Other>)](/documentation/swift/simd4/init(truncatingifneeded:))
- [init(x: Scalar, y: Scalar, z: Scalar, w: Scalar)](/documentation/swift/simd4/init(x:y:z:w:))

###### Instance Properties

- [var evenHalf: SIMD2<Scalar>](/documentation/swift/simd4/evenhalf)
- [var hashValue: Int](/documentation/swift/simd4/hashvalue)
- [var highHalf: SIMD2<Scalar>](/documentation/swift/simd4/highhalf)
- [var lowHalf: SIMD2<Scalar>](/documentation/swift/simd4/lowhalf)
- [var oddHalf: SIMD2<Scalar>](/documentation/swift/simd4/oddhalf)
- [var scalarCount: Int](/documentation/swift/simd4/scalarcount)
- [var w: Scalar](/documentation/swift/simd4/w)
- [var x: Scalar](/documentation/swift/simd4/x)
- [var y: Scalar](/documentation/swift/simd4/y)
- [var z: Scalar](/documentation/swift/simd4/z)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd4/subscript(_:))

###### Type Aliases

- [SIMD4.ArrayLiteralElement](/documentation/swift/simd4/arrayliteralelement)
- [SIMD4.MaskStorage](/documentation/swift/simd4/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd4/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd4/debugdescription)
- [Equatable Implementations](/documentation/swift/simd4/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd4/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd4/simd-implementations)

###### Operators

- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&(_:_:)-5slae)
- [static func & (Self, Self) -> Self](/documentation/swift/simd4/&(_:_:)-6d8rc)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&(_:_:)-9ctm1)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd4/&*(_:_:)-1tqez)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&*(_:_:)-2uiyx)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&*(_:_:)-9lt38)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd4/&*=(_:_:)-4n42g)
- [static func &*= (inout Self, Self)](/documentation/swift/simd4/&*=(_:_:)-4uao4)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&+(_:_:)-5jhzi)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd4/&+(_:_:)-6qs5e)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&+(_:_:)-s4hc)
- [static func &+= (inout Self, Self)](/documentation/swift/simd4/&+=(_:_:)-15ft8)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd4/&+=(_:_:)-xlyb)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&-(_:_:)-4tm0i)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&-(_:_:)-6uuv6)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd4/&-(_:_:)-8tbv8)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd4/&-=(_:_:)-534my)
- [static func &-= (inout Self, Self)](/documentation/swift/simd4/&-=(_:_:)-8d4df)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd4/&=(_:_:)-5858j)
- [static func &= (inout Self, Self)](/documentation/swift/simd4/&=(_:_:)-5a8dc)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&__(_:_:)-1cep0)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd4/&__(_:_:)-8w1v6)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd4/&__(_:_:)-92zqu)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&__(_:_:)-9j33c)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd4/&__(_:_:)-imny)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd4/&__(_:_:)-olfi)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd4/&__=(_:_:)-2n1ii)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd4/&__=(_:_:)-38btv)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd4/&__=(_:_:)-7dmas)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd4/&__=(_:_:)-83fy1)
- [static func * (Self, Self) -> Self](/documentation/swift/simd4/*(_:_:)-2hvvf)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd4/*(_:_:)-4cbwu)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd4/*(_:_:)-4lqdj)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd4/*(_:_:)-50g1c)
- [static func * (Self, Self) -> Self](/documentation/swift/simd4/*(_:_:)-6kum2)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd4/*(_:_:)-9wqx4)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd4/*=(_:_:)-27n78)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd4/*=(_:_:)-3zlny)
- [static func *= (inout Self, Self)](/documentation/swift/simd4/*=(_:_:)-4iyd7)
- [static func *= (inout Self, Self)](/documentation/swift/simd4/*=(_:_:)-5qw5a)
- [static func + (Self, Self) -> Self](/documentation/swift/simd4/+(_:_:)-1h7vz)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd4/+(_:_:)-1s5sj)
- [static func + (Self, Self) -> Self](/documentation/swift/simd4/+(_:_:)-2bds5)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd4/+(_:_:)-62rmr)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd4/+(_:_:)-842lq)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd4/+(_:_:)-9w9vl)
- [static func += (inout Self, Self)](/documentation/swift/simd4/+=(_:_:)-13aaq)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd4/+=(_:_:)-33gh7)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd4/+=(_:_:)-3itnf)
- [static func += (inout Self, Self)](/documentation/swift/simd4/+=(_:_:)-4kfxk)
- [static func - (Self) -> Self](/documentation/swift/simd4/-(_:))
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd4/-(_:_:)-1epj7)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd4/-(_:_:)-59rjl)
- [static func - (Self, Self) -> Self](/documentation/swift/simd4/-(_:_:)-5hvnn)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd4/-(_:_:)-5rdme)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd4/-(_:_:)-8par9)
- [static func - (Self, Self) -> Self](/documentation/swift/simd4/-(_:_:)-8vs0w)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd4/-=(_:_:)-5eh2w)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd4/-=(_:_:)-6asc1)
- [static func -= (inout Self, Self)](/documentation/swift/simd4/-=(_:_:)-8oxw3)
- [static func -= (inout Self, Self)](/documentation/swift/simd4/-=(_:_:)-90eug)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-1o6bl)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-5kor1)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.!=(_:_:)-70nnx)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-1q28g)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-4deu7)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'.==(_:_:)-862bq)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-2n4ry)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-3iokg)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-49xlm)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-5lcly)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-5wiit)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._(_:_:)-6yo8s)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-136h6)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-1wt9c)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-3m2gb)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-41pqm)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-5k06k)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd4/'._=(_:_:)-9pb8l)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd4/==(_:_:))
- [static func | (Self, Self) -> Self](/documentation/swift/simd4/_(_:_:)-1t5na)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd4/_(_:_:)-2nxne)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd4/_(_:_:)-2o6l7)
- [static func % (Self, Self) -> Self](/documentation/swift/simd4/_(_:_:)-2sm0z)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd4/_(_:_:)-2zaxu)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd4/_(_:_:)-3pcys)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd4/_(_:_:)-3voib)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd4/_(_:_:)-6f0hu)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd4/_(_:_:)-6fvmb)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd4/_(_:_:)-7uxx)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd4/_(_:_:)-7vfdm)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd4/_(_:_:)-907nj)
- [static func / (Self, Self) -> Self](/documentation/swift/simd4/_(_:_:)-93465)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd4/_(_:_:)-9i1yt)
- [static func / (Self, Self) -> Self](/documentation/swift/simd4/_(_:_:)-9ipq5)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd4/_=(_:_:)-18ijd)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd4/_=(_:_:)-1tg44)
- [static func /= (inout Self, Self)](/documentation/swift/simd4/_=(_:_:)-5bzrx)
- [static func |= (inout Self, Self)](/documentation/swift/simd4/_=(_:_:)-6khqe)
- [static func %= (inout Self, Self)](/documentation/swift/simd4/_=(_:_:)-72383)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd4/_=(_:_:)-7u2en)
- [static func ^= (inout Self, Self)](/documentation/swift/simd4/_=(_:_:)-8jvxp)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd4/_=(_:_:)-9a2l6)
- [static func /= (inout Self, Self)](/documentation/swift/simd4/_=(_:_:)-9iy46)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd4/_=(_:_:)-syej)
- [static func ~ (Self) -> Self](/documentation/swift/simd4/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd4/init(_:)-3eyf0)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd4/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd4/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd4/init(repeating:)-97szw)

###### Instance Properties

- [var description: String](/documentation/swift/simd4/description)
- [var indices: Range<Int>](/documentation/swift/simd4/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd4/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd4/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd4/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self, Self)](/documentation/swift/simd4/addproduct(_:_:)-24met)
- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd4/addproduct(_:_:)-48fq9)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd4/addproduct(_:_:)-8hr4k)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd4/addingproduct(_:_:)-1ncc9)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd4/addingproduct(_:_:)-76ryo)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd4/addingproduct(_:_:)-94txm)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd4/clamp(lowerbound:upperbound:)-77gjj)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd4/clamp(lowerbound:upperbound:)-9hcyl)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd4/clamped(lowerbound:upperbound:)-4qp6n)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd4/clamped(lowerbound:upperbound:)-8tlkk)
- [func encode(to: any Encoder) throws](/documentation/swift/simd4/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd4/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd4/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd4/max()-71kv9)
- [func max() -> Self.Scalar](/documentation/swift/simd4/max()-xww7)
- [func min() -> Self.Scalar](/documentation/swift/simd4/min()-7qq8b)
- [func min() -> Self.Scalar](/documentation/swift/simd4/min()-8s3i4)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd4/replace(with:where:)-7e4sy)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd4/replace(with:where:)-7yqkl)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd4/replacing(with:where:)-32h18)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd4/replacing(with:where:)-3o8ie)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd4/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd4/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd4/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd4/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd4/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd4/one-1ghcj)
- [static var one: Self](/documentation/swift/simd4/one-7ejbf)
- [static var zero: Self](/documentation/swift/simd4/zero-1xe4n)
- [static var zero: Self](/documentation/swift/simd4/zero-6rkq8)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd4/random(in:)-3wdfs)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd4/random(in:)-6jl8o)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd4/random(in:using:)-6da4k)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd4/random(in:using:)-7x9mr)
- [SIMD8](/documentation/swift/simd8)

###### Operators

- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-2dda6)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-2dhqm)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-3zc2z)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-46zar)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-4mxqw)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-5av1i)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-880kc)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-8eoet)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-o5i6)
- [static func &* (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&*(_:_:)-y8q9)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-1xusy)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-353av)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-35hyl)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-3cae1)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-4gmzh)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-5cdle)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-6ii7o)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-8a0j1)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-98uee)
- [static func &*= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&*=(_:_:)-pffy)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-1edf1)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-2x46m)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-33coa)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-3ul36)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-6m4bg)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-7xsr)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-8fe3f)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-9jl8h)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-9xkk1)
- [static func &+ (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&+(_:_:)-gdqm)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-2g5dk)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-2hztm)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-4m3yq)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-76tam)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-7dn69)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-86kst)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-89da6)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-8m45k)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-8t73v)
- [static func &+= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&+=(_:_:)-j3ws)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-15jqz)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-1hac1)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-35imm)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-4gpbp)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-4iod)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-4okd7)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-5i14e)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-7vdw0)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-9cpsb)
- [static func &- (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMD8<Scalar>](/documentation/swift/simd8/&-(_:_:)-9vohd)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-1w9a6)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-1zg3c)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-3rt61)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-4il3a)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-76vz8)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-7pnwo)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-801jw)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-87ja5)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-98lnu)
- [static func &-= (inout SIMD8<Scalar>, SIMD8<Scalar>)](/documentation/swift/simd8/&-=(_:_:)-9yk9)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-16zq0)
- [static func .!= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-17abh)
- [static func .!= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-182nw)
- [static func .!= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-1fvwl)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-1wj2z)
- [static func .!= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-1zfjk)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-36264)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-3bn2m)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-3cu2r)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-3d9xb)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-3y6ak)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-4lymv)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-57mv)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-6d27n)
- [static func .!= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-7rbua)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-82vwe)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-98x77)
- [static func .!= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-9entj)
- [static func .!= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-9yjnv)
- [static func .== (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-13hfz)
- [static func .== (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-15sza)
- [static func .== (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-1nd3n)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-1sivj)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-267zc)
- [static func .== (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-2lf7d)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-3s0g)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-43f7i)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-4pwbs)
- [static func .== (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-5qucm)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-63th2)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-7c19g)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-8497l)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-88omu)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-8hri)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-mnby)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-qwvi)
- [static func .== (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-rbji)
- [static func .== (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-tycy)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-1c72i)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-1narf)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-1r4s4)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-2mxcj)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-2p9oz)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-3f0bc)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-3hoi)
- [static func .> (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-3inye)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-4ayah)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-4ltbx)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-4surp)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-4wlgd)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-4wlhw)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5fo7o)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5l344)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5n70)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5s4e8)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5z2wr)
- [static func .< (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5zlf4)
- [static func .> (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-64j9a)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-66vyd)
- [static func .> (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6blon)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6hcnd)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6i4zk)
- [static func .< (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6t3vq)
- [static func .< (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6wn36)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-7fq8p)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-7k3f0)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-7swb9)
- [static func .< (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-7thec)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-7z7lr)
- [static func .< (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-8qdlx)
- [static func .< (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-8uwqc)
- [static func .> (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-9jcx8)
- [static func .> (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-9jr9i)
- [static func .> (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-al2z)
- [static func .> (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-j3x4)
- [static func .< (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-vpnh)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-167bs)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-1mll5)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-1zabi)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-24r7f)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-2dact)
- [static func .>= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-2opee)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-2u2hi)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-3buog)
- [static func .<= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-3cuio)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-3ui8g)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-46zej)
- [static func .<= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-4ibxs)
- [static func .>= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-4qumd)
- [static func .<= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-525gk)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-53bxt)
- [static func .>= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-5d0hv)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-5whw)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-5xadh)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-5zfg3)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-64j20)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-6c148)
- [static func .>= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-70he1)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7bs44)
- [static func .<= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7hls5)
- [static func .<= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7pmkh)
- [static func .>= (SIMD8<Scalar>, Scalar) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7tqmb)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7vdqx)
- [static func .>= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-7wxxr)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-85788)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-8bd6y)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-8d091)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-8u7sr)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-8uo9e)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-95mry)
- [static func .<= (Scalar, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-9qpjh)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-da81)
- [static func .>= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-e0zd)
- [static func .<= (SIMD8<Scalar>, SIMD8<Scalar>) -> SIMDMask<SIMD8<Scalar>.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-ynx1)

###### Initializers

- [init()](/documentation/swift/simd8/init())
- [init<Other>(SIMD8<Other>)](/documentation/swift/simd8/init(_:)-20rv4)
- [init<Other>(SIMD8<Other>)](/documentation/swift/simd8/init(_:)-8ko8m)
- [init(Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar)](/documentation/swift/simd8/init(_:_:_:_:_:_:_:_:))
- [init<Other>(SIMD8<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd8/init(_:rounding:))
- [init<Other>(clamping: SIMD8<Other>)](/documentation/swift/simd8/init(clamping:))
- [init(lowHalf: SIMD4<Float16>, highHalf: SIMD4<Float16>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-40zc3)
- [init(lowHalf: SIMD4<Int32>, highHalf: SIMD4<Int32>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-4u8y9)
- [init(lowHalf: SIMD4<Double>, highHalf: SIMD4<Double>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-67fcd)
- [init(lowHalf: SIMD4<Int8>, highHalf: SIMD4<Int8>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-6peuv)
- [init(lowHalf: SIMD4<Int16>, highHalf: SIMD4<Int16>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-76rts)
- [init(lowHalf: SIMD4<Float>, highHalf: SIMD4<Float>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-7qon)
- [init(lowHalf: SIMD4<UInt64>, highHalf: SIMD4<UInt64>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-84qph)
- [init(lowHalf: SIMD4<UInt32>, highHalf: SIMD4<UInt32>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-88i1v)
- [init(lowHalf: SIMD4<Int>, highHalf: SIMD4<Int>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-8i4y2)
- [init(lowHalf: SIMD4<UInt8>, highHalf: SIMD4<UInt8>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-8zo02)
- [init(lowHalf: SIMD4<UInt16>, highHalf: SIMD4<UInt16>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-98i5t)
- [init(lowHalf: SIMD4<UInt>, highHalf: SIMD4<UInt>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-9rdov)
- [init(lowHalf: SIMD4<Scalar>, highHalf: SIMD4<Scalar>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-buyh)
- [init(lowHalf: SIMD4<Int64>, highHalf: SIMD4<Int64>)](/documentation/swift/simd8/init(lowhalf:highhalf:)-i4ty)
- [init(repeating: Int32)](/documentation/swift/simd8/init(repeating:)-15kd1)
- [init(repeating: UInt16)](/documentation/swift/simd8/init(repeating:)-1mtdp)
- [init(repeating: Double)](/documentation/swift/simd8/init(repeating:)-1t999)
- [init(repeating: Int8)](/documentation/swift/simd8/init(repeating:)-2mug9)
- [init(repeating: UInt8)](/documentation/swift/simd8/init(repeating:)-46m7s)
- [init(repeating: Float)](/documentation/swift/simd8/init(repeating:)-4irfd)
- [init(repeating: Float16)](/documentation/swift/simd8/init(repeating:)-5u1bp)
- [init(repeating: UInt)](/documentation/swift/simd8/init(repeating:)-6y056)
- [init(repeating: Int)](/documentation/swift/simd8/init(repeating:)-6ziwg)
- [init(repeating: UInt32)](/documentation/swift/simd8/init(repeating:)-732zj)
- [init(repeating: Int16)](/documentation/swift/simd8/init(repeating:)-7zjp6)
- [init(repeating: Int64)](/documentation/swift/simd8/init(repeating:)-rhrb)
- [init(repeating: UInt64)](/documentation/swift/simd8/init(repeating:)-xa31)
- [init<Other>(truncatingIfNeeded: SIMD8<Other>)](/documentation/swift/simd8/init(truncatingifneeded:))

###### Instance Properties

- [var evenHalf: SIMD4<Scalar>](/documentation/swift/simd8/evenhalf)
- [var hashValue: Int](/documentation/swift/simd8/hashvalue)
- [var highHalf: SIMD4<Scalar>](/documentation/swift/simd8/highhalf)
- [var lowHalf: SIMD4<Scalar>](/documentation/swift/simd8/lowhalf)
- [var oddHalf: SIMD4<Scalar>](/documentation/swift/simd8/oddhalf)
- [var scalarCount: Int](/documentation/swift/simd8/scalarcount)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd8/subscript(_:))

###### Type Aliases

- [SIMD8.ArrayLiteralElement](/documentation/swift/simd8/arrayliteralelement)
- [SIMD8.MaskStorage](/documentation/swift/simd8/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd8/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd8/debugdescription)
- [Equatable Implementations](/documentation/swift/simd8/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd8/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd8/simd-implementations)

###### Operators

- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&(_:_:)-5sp0e)
- [static func & (Self, Self) -> Self](/documentation/swift/simd8/&(_:_:)-6dcjs)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&(_:_:)-9csd5)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd8/&*(_:_:)-1tmkr)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&*(_:_:)-2ukc9)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&*(_:_:)-9lpf0)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd8/&*=(_:_:)-4n56w)
- [static func &*= (inout Self, Self)](/documentation/swift/simd8/&*=(_:_:)-4u70c)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&+(_:_:)-5je9i)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd8/&+(_:_:)-6qthu)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&+(_:_:)-s3c0)
- [static func &+= (inout Self, Self)](/documentation/swift/simd8/&+=(_:_:)-15jmc)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd8/&+=(_:_:)-xkmr)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&-(_:_:)-4tkki)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&-(_:_:)-6uw6q)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd8/&-(_:_:)-8tan0)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd8/&-=(_:_:)-530wa)
- [static func &-= (inout Self, Self)](/documentation/swift/simd8/&-=(_:_:)-8d5lv)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd8/&=(_:_:)-586kj)
- [static func &= (inout Self, Self)](/documentation/swift/simd8/&=(_:_:)-5a4ls)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&__(_:_:)-1cifw)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd8/&__(_:_:)-8w0hu)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd8/&__(_:_:)-93172)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&__(_:_:)-9j4jc)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd8/&__(_:_:)-iqdy)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd8/&__(_:_:)-op9i)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd8/&__=(_:_:)-2mxqy)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd8/&__=(_:_:)-38cyr)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd8/&__=(_:_:)-7dikc)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd8/&__=(_:_:)-83he1)
- [static func * (Self, Self) -> Self](/documentation/swift/simd8/*(_:_:)-2huq3)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd8/*(_:_:)-4c84m)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd8/*(_:_:)-4lmnj)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd8/*(_:_:)-50hhc)
- [static func * (Self, Self) -> Self](/documentation/swift/simd8/*(_:_:)-6kqtm)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd8/*(_:_:)-9wsc8)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd8/*=(_:_:)-27m64)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd8/*=(_:_:)-3zhue)
- [static func *= (inout Self, Self)](/documentation/swift/simd8/*=(_:_:)-4j1xn)
- [static func *= (inout Self, Self)](/documentation/swift/simd8/*=(_:_:)-5qsdi)
- [static func + (Self, Self) -> Self](/documentation/swift/simd8/+(_:_:)-1h94n)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd8/+(_:_:)-1s9hf)
- [static func + (Self, Self) -> Self](/documentation/swift/simd8/+(_:_:)-2bhi5)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd8/+(_:_:)-62o3n)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd8/+(_:_:)-841fq)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd8/+(_:_:)-9w67l)
- [static func += (inout Self, Self)](/documentation/swift/simd8/+=(_:_:)-13e1e)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd8/+=(_:_:)-33hp7)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd8/+=(_:_:)-3iuqz)
- [static func += (inout Self, Self)](/documentation/swift/simd8/+=(_:_:)-4kc6w)
- [static func - (Self) -> Self](/documentation/swift/simd8/-(_:))
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd8/-(_:_:)-1eoar)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd8/-(_:_:)-59qe9)
- [static func - (Self, Self) -> Self](/documentation/swift/simd8/-(_:_:)-5hryr)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd8/-(_:_:)-5retq)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd8/-(_:_:)-8p6z1)
- [static func - (Self, Self) -> Self](/documentation/swift/simd8/-(_:_:)-8vqls)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd8/-=(_:_:)-5efu0)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd8/-=(_:_:)-6ar35)
- [static func -= (inout Self, Self)](/documentation/swift/simd8/-=(_:_:)-8p1mb)
- [static func -= (inout Self, Self)](/documentation/swift/simd8/-=(_:_:)-90g6w)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-1o7kh)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-5kl0l)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.!=(_:_:)-70jxh)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-1pyi8)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-4dg9j)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'.==(_:_:)-85ylq)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-2n112)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-3ikq8)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-49yq2)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5lgdq)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-5wmbh)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._(_:_:)-6yrys)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-132re)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-1ws7k)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-3lyor)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-41o9y)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-5k1es)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd8/'._=(_:_:)-9p7h9)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd8/==(_:_:))
- [static func | (Self, Self) -> Self](/documentation/swift/simd8/_(_:_:)-1t6vi)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd8/_(_:_:)-2ntwq)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd8/_(_:_:)-2o5d7)
- [static func % (Self, Self) -> Self](/documentation/swift/simd8/_(_:_:)-2sn9f)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd8/_(_:_:)-2z76a)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd8/_(_:_:)-3pe30)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd8/_(_:_:)-3vsab)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd8/_(_:_:)-6f442)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd8/_(_:_:)-6fwr7)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd8/_(_:_:)-7vbmy)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd8/_(_:_:)-7yt9)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd8/_(_:_:)-903vr)
- [static func / (Self, Self) -> Self](/documentation/swift/simd8/_(_:_:)-932xh)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd8/_(_:_:)-9hy8d)
- [static func / (Self, Self) -> Self](/documentation/swift/simd8/_(_:_:)-9ilz9)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd8/_=(_:_:)-18m89)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd8/_=(_:_:)-1tcb0)
- [static func /= (inout Self, Self)](/documentation/swift/simd8/_=(_:_:)-5byj9)
- [static func |= (inout Self, Self)](/documentation/swift/simd8/_=(_:_:)-6kivi)
- [static func %= (inout Self, Self)](/documentation/swift/simd8/_=(_:_:)-721wj)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd8/_=(_:_:)-7u65z)
- [static func ^= (inout Self, Self)](/documentation/swift/simd8/_=(_:_:)-8jx1x)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd8/_=(_:_:)-9a3t6)
- [static func /= (inout Self, Self)](/documentation/swift/simd8/_=(_:_:)-9iue6)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd8/_=(_:_:)-suzf)
- [static func ~ (Self) -> Self](/documentation/swift/simd8/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd8/init(_:)-3ewxg)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd8/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd8/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd8/init(repeating:)-97ws4)

###### Instance Properties

- [var description: String](/documentation/swift/simd8/description)
- [var indices: Range<Int>](/documentation/swift/simd8/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd8/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd8/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd8/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self, Self)](/documentation/swift/simd8/addproduct(_:_:)-24l2l)
- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd8/addproduct(_:_:)-48c01)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd8/addproduct(_:_:)-8hsd8)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd8/addingproduct(_:_:)-1n8kp)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd8/addingproduct(_:_:)-76qu8)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd8/addingproduct(_:_:)-94v6i)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd8/clamp(lowerbound:upperbound:)-77hrb)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd8/clamp(lowerbound:upperbound:)-9he39)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd8/clamped(lowerbound:upperbound:)-4qnzr)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd8/clamped(lowerbound:upperbound:)-8tmoc)
- [func encode(to: any Encoder) throws](/documentation/swift/simd8/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd8/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd8/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd8/max()-71om5)
- [func max() -> Self.Scalar](/documentation/swift/simd8/max()-y0of)
- [func min() -> Self.Scalar](/documentation/swift/simd8/min()-7qrdn)
- [func min() -> Self.Scalar](/documentation/swift/simd8/min()-8s4qs)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd8/replace(with:where:)-7e5tu)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd8/replace(with:where:)-7ys4t)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd8/replacing(with:where:)-32kt0)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd8/replacing(with:where:)-3o9r2)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd8/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd8/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd8/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd8/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd8/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd8/one-1gl43)
- [static var one: Self](/documentation/swift/simd8/one-7efnf)
- [static var zero: Self](/documentation/swift/simd8/zero-1xcz3)
- [static var zero: Self](/documentation/swift/simd8/zero-6rjkw)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd8/random(in:)-3w9ug)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd8/random(in:)-6jhg8)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd8/random(in:using:)-6d8vw)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd8/random(in:using:)-7x8fn)
- [SIMD16](/documentation/swift/simd16)

###### Operators

- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-3jz9u)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-43ajj)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-4a6qp)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-4zuql)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-4zv7c)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-7i8iq)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-8aay)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-8qh3c)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-8s02d)
- [static func &* (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&*(_:_:)-9c5w8)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-2fxx)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-2ozt)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-431dy)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-59aos)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-7qxtu)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-7vufg)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-86clv)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-8ipcm)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-8ns2j)
- [static func &*= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&*=(_:_:)-90eby)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-1rbi5)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-3zikk)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-4ry81)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-53uwf)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-6v5ob)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-7lioc)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-88d2b)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-89nsq)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-8lh6)
- [static func &+ (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&+(_:_:)-8p8yu)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-1lux7)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-3c91u)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-3kapr)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-47uuh)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-4dedj)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-5h7k4)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-655al)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-8omt4)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-92m2u)
- [static func &+= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&+=(_:_:)-x0sa)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-1wze6)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-31c30)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-35ekp)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-6h8mf)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-7j0jg)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-8b6wo)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-8ch5t)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-8gzbm)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-8o8ii)
- [static func &- (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMD16<Scalar>](/documentation/swift/simd16/&-(_:_:)-92xn2)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-10oay)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-1ai4t)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-5spxt)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-6jeyx)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-7c9mk)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-8h0jh)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-8to3f)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-98gxx)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-9qwn0)
- [static func &-= (inout SIMD16<Scalar>, SIMD16<Scalar>)](/documentation/swift/simd16/&-=(_:_:)-nw21)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-1ae8e)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-1l0cj)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-2gltl)
- [static func .!= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-2jsjw)
- [static func .!= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-2pivh)
- [static func .!= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-2xmnu)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-39xyk)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-3xq7t)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-4x5vy)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-58zb1)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-67wkl)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-7kuzv)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-7lff8)
- [static func .!= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-7qa2d)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-844f5)
- [static func .!= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-9cw25)
- [static func .!= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-9lfmc)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-9nj9k)
- [static func .!= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-qnl3)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-16kf)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-1l1tk)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-1vakh)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-1xwkp)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-3pndh)
- [static func .== (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-47g0s)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-4sqrx)
- [static func .== (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-53vw5)
- [static func .== (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-5i6bl)
- [static func .== (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-67wxy)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-6i9z2)
- [static func .== (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-6ipsi)
- [static func .== (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-6jnvr)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-6zlux)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-8i1u0)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-8okry)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-96x9h)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-981nx)
- [static func .== (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-xap8)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-1gg5x)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-1hnih)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-1yapo)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-22hl5)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-247dy)
- [static func .< (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-29gkg)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-2d0he)
- [static func .> (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-2s9fi)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-2yb5z)
- [static func .> (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-367ec)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-3r9pf)
- [static func .> (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-3zij8)
- [static func .< (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-49cs)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-4vvej)
- [static func .< (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-4wbyc)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-4xfjj)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-4xri5)
- [static func .< (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-55y8l)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-5dpb8)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-5hfkp)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-64xs4)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-6quf8)
- [static func .> (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-6wr9s)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7juax)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7psao)
- [static func .> (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7t6z2)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7t9zj)
- [static func .< (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7vlsh)
- [static func .< (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7znh8)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-8am3p)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-8dtp4)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-8qcfz)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-9ac5b)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-9c809)
- [static func .> (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-9j179)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-9nrwn)
- [static func .< (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-9scg)
- [static func .> (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-a9n1)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-14d8f)
- [static func .<= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-1bny9)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-1trne)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-2bclb)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-2o5rp)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-2oju)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-2y87h)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-2z4yx)
- [static func .<= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-42xth)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-45cv3)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4k5eh)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4m3cu)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4nuu5)
- [static func .>= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4p2y)
- [static func .<= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4qynn)
- [static func .>= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4wwbt)
- [static func .<= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-4xw83)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-5kvvx)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-5l4wz)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-5vkjl)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-5xlbw)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-6cwpc)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-6fnb8)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-6q5rp)
- [static func .>= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-7d069)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-7q4iw)
- [static func .>= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-7wjn6)
- [static func .>= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-8bsot)
- [static func .<= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-8f7t)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-8tnwf)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-91926)
- [static func .>= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-9cehz)
- [static func .>= (SIMD16<Scalar>, Scalar) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-9hc1b)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-9n875)
- [static func .<= (Scalar, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-9usod)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-bkja)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-lyc)
- [static func .<= (SIMD16<Scalar>, SIMD16<Scalar>) -> SIMDMask<SIMD16<Scalar>.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-oaos)

###### Initializers

- [init()](/documentation/swift/simd16/init())
- [init<Other>(SIMD16<Other>)](/documentation/swift/simd16/init(_:)-17z75)
- [init<Other>(SIMD16<Other>)](/documentation/swift/simd16/init(_:)-4dxbh)
- [init(Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar)](/documentation/swift/simd16/init(_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:))
- [init<Other>(SIMD16<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd16/init(_:rounding:))
- [init<Other>(clamping: SIMD16<Other>)](/documentation/swift/simd16/init(clamping:))
- [init(lowHalf: SIMD8<Int8>, highHalf: SIMD8<Int8>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-1mquz)
- [init(lowHalf: SIMD8<UInt16>, highHalf: SIMD8<UInt16>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-25jlp)
- [init(lowHalf: SIMD8<Float>, highHalf: SIMD8<Float>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-317xp)
- [init(lowHalf: SIMD8<UInt>, highHalf: SIMD8<UInt>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-3s760)
- [init(lowHalf: SIMD8<Float16>, highHalf: SIMD8<Float16>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-50b5o)
- [init(lowHalf: SIMD8<Int>, highHalf: SIMD8<Int>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-6t1hy)
- [init(lowHalf: SIMD8<Int32>, highHalf: SIMD8<Int32>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-7dzmw)
- [init(lowHalf: SIMD8<UInt8>, highHalf: SIMD8<UInt8>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-7i2ky)
- [init(lowHalf: SIMD8<Int64>, highHalf: SIMD8<Int64>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-896up)
- [init(lowHalf: SIMD8<Int16>, highHalf: SIMD8<Int16>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-8oksd)
- [init(lowHalf: SIMD8<Scalar>, highHalf: SIMD8<Scalar>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-98vj9)
- [init(lowHalf: SIMD8<Double>, highHalf: SIMD8<Double>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-9csr5)
- [init(lowHalf: SIMD8<UInt32>, highHalf: SIMD8<UInt32>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-9n9nb)
- [init(lowHalf: SIMD8<UInt64>, highHalf: SIMD8<UInt64>)](/documentation/swift/simd16/init(lowhalf:highhalf:)-x1pd)
- [init(repeating: UInt)](/documentation/swift/simd16/init(repeating:)-19t5y)
- [init(repeating: Int32)](/documentation/swift/simd16/init(repeating:)-1o6ez)
- [init(repeating: UInt8)](/documentation/swift/simd16/init(repeating:)-3sxrw)
- [init(repeating: UInt16)](/documentation/swift/simd16/init(repeating:)-3w8tt)
- [init(repeating: UInt64)](/documentation/swift/simd16/init(repeating:)-4tu0z)
- [init(repeating: UInt32)](/documentation/swift/simd16/init(repeating:)-4u7ce)
- [init(repeating: Int)](/documentation/swift/simd16/init(repeating:)-4v2jw)
- [init(repeating: Int64)](/documentation/swift/simd16/init(repeating:)-51d9b)
- [init(repeating: Double)](/documentation/swift/simd16/init(repeating:)-6n4wg)
- [init(repeating: Float)](/documentation/swift/simd16/init(repeating:)-7kz74)
- [init(repeating: Int8)](/documentation/swift/simd16/init(repeating:)-97ogh)
- [init(repeating: Int16)](/documentation/swift/simd16/init(repeating:)-9oy6t)
- [init(repeating: Float16)](/documentation/swift/simd16/init(repeating:)-cisq)
- [init<Other>(truncatingIfNeeded: SIMD16<Other>)](/documentation/swift/simd16/init(truncatingifneeded:))

###### Instance Properties

- [var evenHalf: SIMD8<Scalar>](/documentation/swift/simd16/evenhalf)
- [var hashValue: Int](/documentation/swift/simd16/hashvalue)
- [var highHalf: SIMD8<Scalar>](/documentation/swift/simd16/highhalf)
- [var lowHalf: SIMD8<Scalar>](/documentation/swift/simd16/lowhalf)
- [var oddHalf: SIMD8<Scalar>](/documentation/swift/simd16/oddhalf)
- [var scalarCount: Int](/documentation/swift/simd16/scalarcount)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd16/subscript(_:))

###### Type Aliases

- [SIMD16.ArrayLiteralElement](/documentation/swift/simd16/arrayliteralelement)
- [SIMD16.MaskStorage](/documentation/swift/simd16/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd16/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd16/debugdescription)
- [Equatable Implementations](/documentation/swift/simd16/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd16/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd16/simd-implementations)

###### Operators

- [static func & (Self, Self) -> Self](/documentation/swift/simd16/&(_:_:)-3qlss)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&(_:_:)-5aelr)
- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&(_:_:)-6tkkh)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd16/&*(_:_:)-110zd)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&*(_:_:)-3h4zn)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&*(_:_:)-7l2c0)
- [static func &*= (inout Self, Self)](/documentation/swift/simd16/&*=(_:_:)-2tosr)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd16/&*=(_:_:)-4ul6j)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&+(_:_:)-2d5m0)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&+(_:_:)-5yle0)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd16/&+(_:_:)-6p9ta)
- [static func &+= (inout Self, Self)](/documentation/swift/simd16/&+=(_:_:)-1a5tp)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd16/&+=(_:_:)-500n3)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&-(_:_:)-1kaco)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&-(_:_:)-3zrkv)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd16/&-(_:_:)-8zi32)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd16/&-=(_:_:)-51lye)
- [static func &-= (inout Self, Self)](/documentation/swift/simd16/&-=(_:_:)-5x3ab)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd16/&=(_:_:)-5m8ug)
- [static func &= (inout Self, Self)](/documentation/swift/simd16/&=(_:_:)-9d1yc)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&__(_:_:)-2ftme)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&__(_:_:)-4oaw1)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd16/&__(_:_:)-71acz)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd16/&__(_:_:)-7t9iq)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd16/&__(_:_:)-82fce)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd16/&__(_:_:)-9nper)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd16/&__=(_:_:)-3i1nm)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd16/&__=(_:_:)-6znxq)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd16/&__=(_:_:)-88lh5)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd16/&__=(_:_:)-8v518)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd16/*(_:_:)-2yhe7)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd16/*(_:_:)-3ur7o)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd16/*(_:_:)-4pozo)
- [static func * (Self, Self) -> Self](/documentation/swift/simd16/*(_:_:)-7l65y)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd16/*(_:_:)-7whvl)
- [static func * (Self, Self) -> Self](/documentation/swift/simd16/*(_:_:)-9y6zm)
- [static func *= (inout Self, Self)](/documentation/swift/simd16/*=(_:_:)-1od2g)
- [static func *= (inout Self, Self)](/documentation/swift/simd16/*=(_:_:)-2zjkv)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd16/*=(_:_:)-4dnsd)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd16/*=(_:_:)-8scfm)
- [static func + (Self, Self) -> Self](/documentation/swift/simd16/+(_:_:)-10ebw)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd16/+(_:_:)-2i69l)
- [static func + (Self, Self) -> Self](/documentation/swift/simd16/+(_:_:)-40yo6)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd16/+(_:_:)-52yaj)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd16/+(_:_:)-53q5k)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd16/+(_:_:)-5z1ez)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd16/+=(_:_:)-29mqk)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd16/+=(_:_:)-2urad)
- [static func += (inout Self, Self)](/documentation/swift/simd16/+=(_:_:)-5ciy)
- [static func += (inout Self, Self)](/documentation/swift/simd16/+=(_:_:)-63jfd)
- [static func - (Self) -> Self](/documentation/swift/simd16/-(_:))
- [static func - (Self, Self) -> Self](/documentation/swift/simd16/-(_:_:)-1zpzh)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd16/-(_:_:)-2t24k)
- [static func - (Self, Self) -> Self](/documentation/swift/simd16/-(_:_:)-7z2dr)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd16/-(_:_:)-946vg)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd16/-(_:_:)-bdg9)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd16/-(_:_:)-c6qt)
- [static func -= (inout Self, Self)](/documentation/swift/simd16/-=(_:_:)-15h6z)
- [static func -= (inout Self, Self)](/documentation/swift/simd16/-=(_:_:)-2iaa8)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd16/-=(_:_:)-44xi9)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd16/-=(_:_:)-6n3d6)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-2mivz)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-679dj)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.!=(_:_:)-8zu6g)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-64qzq)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-6vtbl)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'.==(_:_:)-8z3e8)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-2gbn0)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-436q8)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-71lm5)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-73ut0)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-7j4ug)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._(_:_:)-8gxec)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-25vha)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-3mvms)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-52esm)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-5nyi8)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-6au0s)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd16/'._=(_:_:)-9s9fk)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd16/==(_:_:))
- [static func % (Self, Self) -> Self](/documentation/swift/simd16/_(_:_:)-3cb1l)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd16/_(_:_:)-3uq7q)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd16/_(_:_:)-3x1xf)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd16/_(_:_:)-42gh9)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd16/_(_:_:)-4ekpw)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd16/_(_:_:)-4fhk4)
- [static func / (Self, Self) -> Self](/documentation/swift/simd16/_(_:_:)-4fl12)
- [static func / (Self, Self) -> Self](/documentation/swift/simd16/_(_:_:)-50opv)
- [static func | (Self, Self) -> Self](/documentation/swift/simd16/_(_:_:)-57tav)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd16/_(_:_:)-5pqvk)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd16/_(_:_:)-5qq08)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd16/_(_:_:)-7mufd)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd16/_(_:_:)-8g9p3)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd16/_(_:_:)-9s9s3)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd16/_(_:_:)-vyq5)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd16/_=(_:_:)-1t070)
- [static func %= (inout Self, Self)](/documentation/swift/simd16/_=(_:_:)-21f7t)
- [static func /= (inout Self, Self)](/documentation/swift/simd16/_=(_:_:)-26qa9)
- [static func |= (inout Self, Self)](/documentation/swift/simd16/_=(_:_:)-2da4b)
- [static func /= (inout Self, Self)](/documentation/swift/simd16/_=(_:_:)-2w5pm)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd16/_=(_:_:)-422nw)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd16/_=(_:_:)-60irj)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd16/_=(_:_:)-95j6b)
- [static func ^= (inout Self, Self)](/documentation/swift/simd16/_=(_:_:)-9wq7v)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd16/_=(_:_:)-vb11)
- [static func ~ (Self) -> Self](/documentation/swift/simd16/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd16/init(_:)-64awu)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd16/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd16/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd16/init(repeating:)-16o1h)

###### Instance Properties

- [var description: String](/documentation/swift/simd16/description)
- [var indices: Range<Int>](/documentation/swift/simd16/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd16/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd16/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd16/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd16/addproduct(_:_:)-2kjb6)
- [func addProduct(Self, Self)](/documentation/swift/simd16/addproduct(_:_:)-5yjpm)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd16/addproduct(_:_:)-97gsd)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd16/addingproduct(_:_:)-816br)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd16/addingproduct(_:_:)-8lfqq)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd16/addingproduct(_:_:)-freg)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd16/clamp(lowerbound:upperbound:)-krkc)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd16/clamp(lowerbound:upperbound:)-tq4b)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd16/clamped(lowerbound:upperbound:)-38es5)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd16/clamped(lowerbound:upperbound:)-5lop0)
- [func encode(to: any Encoder) throws](/documentation/swift/simd16/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd16/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd16/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd16/max()-2yw9y)
- [func max() -> Self.Scalar](/documentation/swift/simd16/max()-ap)
- [func min() -> Self.Scalar](/documentation/swift/simd16/min()-55nb5)
- [func min() -> Self.Scalar](/documentation/swift/simd16/min()-9hjd4)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd16/replace(with:where:)-7gncz)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd16/replace(with:where:)-9cks4)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd16/replacing(with:where:)-42oan)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd16/replacing(with:where:)-ng2a)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd16/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd16/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd16/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd16/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd16/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd16/one-1azcd)
- [static var one: Self](/documentation/swift/simd16/one-3gc92)
- [static var zero: Self](/documentation/swift/simd16/zero-33lnp)
- [static var zero: Self](/documentation/swift/simd16/zero-3dg4m)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd16/random(in:)-42m5x)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd16/random(in:)-8ajs3)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd16/random(in:using:)-78ch5)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd16/random(in:using:)-7rau7)
- [SIMD32](/documentation/swift/simd32)

###### Operators

- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-10d5p)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-1xcvq)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-24w7p)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-4nfb3)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-51nvg)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-59umb)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-5ehsq)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-6maed)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-6tid)
- [static func &* (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&*(_:_:)-8r7y1)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-2t3nr)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-2z0s7)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-4rx0a)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-5zxuu)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-72dnf)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-7hc0h)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-8nfzb)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-90j9c)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-99rfz)
- [static func &*= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&*=(_:_:)-9rpr2)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-1itt5)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-3btse)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-3e43c)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-3gdux)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-4mxpb)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-58lvj)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-7y0wz)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-823au)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-9wssy)
- [static func &+ (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&+(_:_:)-w70d)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-15cet)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-1o0yg)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-1v816)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-4s3z5)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-63764)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-6d53x)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-7s5ki)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-86txd)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-8zbds)
- [static func &+= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&+=(_:_:)-rmc)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-1fnzi)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-2e698)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-378x)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-3di3j)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-4a5qw)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-67lsa)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-7kezr)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-97vnn)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-9833k)
- [static func &- (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMD32<Scalar>](/documentation/swift/simd32/&-(_:_:)-pwyk)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-39zko)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-4juf3)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-546j7)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-61zaw)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-6en0q)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-767vd)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-8rceb)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-9huay)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-gu6o)
- [static func &-= (inout SIMD32<Scalar>, SIMD32<Scalar>)](/documentation/swift/simd32/&-=(_:_:)-nlqy)
- [static func .!= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-1zxtz)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-21n3w)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-26sgl)
- [static func .!= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-4aub6)
- [static func .!= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-4e94s)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-4pl1l)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-52pgf)
- [static func .!= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-55srg)
- [static func .!= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-5dol6)
- [static func .!= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-5lukx)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-5m9ya)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-6ia6g)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-6njpp)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-7xxuv)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-8270q)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-8nprl)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-92bkt)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-9u20d)
- [static func .!= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-9vk8l)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-14vwl)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-1d4ef)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-2j8za)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-33cdt)
- [static func .== (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-502vs)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-506zi)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-5kd05)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-60n8s)
- [static func .== (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-60r4n)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-6tfjq)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-7a71z)
- [static func .== (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-7kyv4)
- [static func .== (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-7qv2j)
- [static func .== (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-84g5l)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-8u9ke)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-93khl)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-958fg)
- [static func .== (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-9p8mu)
- [static func .== (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-rk9i)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-147jo)
- [static func .> (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-15mq1)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-19g1c)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-1goth)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-21g9y)
- [static func .> (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-21vos)
- [static func .< (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-23gq6)
- [static func .> (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-2dze8)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-2iysy)
- [static func .> (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-2xk74)
- [static func .> (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-2ygq)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-3cu0a)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-3qif7)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-4421f)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-45fh5)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-49uz)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-532p4)
- [static func .< (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-5c99u)
- [static func .> (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-5jy6n)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-5muzp)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-5xye0)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-672ev)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-6in31)
- [static func .< (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-71pfo)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-73r8)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-87jt)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-89h8r)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-8n114)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-8vya7)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-92tlq)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-9e393)
- [static func .< (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-9fbf8)
- [static func .> (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-9u1rq)
- [static func .< (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-9w1u6)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-n7x0)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-o3rx)
- [static func .< (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-r6a5)
- [static func .< (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-x09f)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-11ora)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-18zfw)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-1jbkk)
- [static func .>= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-1pzc5)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-21kci)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-226zc)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2375k)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2bc16)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2ofnf)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2uri4)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2vp6k)
- [static func .<= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2xf8y)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2xrmp)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2xto)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-37mit)
- [static func .<= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-3ib84)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-3x944)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-46gd9)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-523s9)
- [static func .<= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-5ado7)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-5or10)
- [static func .<= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-63lfc)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-64het)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-69fm2)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-6fsyy)
- [static func .>= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-6qme1)
- [static func .>= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-6rka6)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-6u29t)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-6wunc)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-74z9a)
- [static func .>= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-8k36x)
- [static func .>= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-9c9rj)
- [static func .<= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-9ksg6)
- [static func .>= (Scalar, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-9t2my)
- [static func .>= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-crv1)
- [static func .<= (SIMD32<Scalar>, Scalar) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-dbt4)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-relh)
- [static func .<= (SIMD32<Scalar>, SIMD32<Scalar>) -> SIMDMask<SIMD32<Scalar>.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-y30q)

###### Initializers

- [init()](/documentation/swift/simd32/init())
- [init<Other>(SIMD32<Other>)](/documentation/swift/simd32/init(_:)-5imow)
- [init<Other>(SIMD32<Other>)](/documentation/swift/simd32/init(_:)-8g4gm)
- [init(Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar)](/documentation/swift/simd32/init(_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:))
- [init<Other>(SIMD32<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd32/init(_:rounding:))
- [init<Other>(clamping: SIMD32<Other>)](/documentation/swift/simd32/init(clamping:))
- [init(lowHalf: SIMD16<UInt>, highHalf: SIMD16<UInt>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-19jsh)
- [init(lowHalf: SIMD16<Int32>, highHalf: SIMD16<Int32>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-1asgj)
- [init(lowHalf: SIMD16<Int>, highHalf: SIMD16<Int>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-1eppu)
- [init(lowHalf: SIMD16<Int64>, highHalf: SIMD16<Int64>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-2ardj)
- [init(lowHalf: SIMD16<UInt8>, highHalf: SIMD16<UInt8>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-3hnge)
- [init(lowHalf: SIMD16<UInt64>, highHalf: SIMD16<UInt64>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-471m3)
- [init(lowHalf: SIMD16<UInt32>, highHalf: SIMD16<UInt32>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-4zav)
- [init(lowHalf: SIMD16<Float>, highHalf: SIMD16<Float>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-509cl)
- [init(lowHalf: SIMD16<Float16>, highHalf: SIMD16<Float16>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-56y3t)
- [init(lowHalf: SIMD16<Scalar>, highHalf: SIMD16<Scalar>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-5tdrt)
- [init(lowHalf: SIMD16<Int8>, highHalf: SIMD16<Int8>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-951ax)
- [init(lowHalf: SIMD16<Int16>, highHalf: SIMD16<Int16>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-9biv8)
- [init(lowHalf: SIMD16<Double>, highHalf: SIMD16<Double>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-9kbcj)
- [init(lowHalf: SIMD16<UInt16>, highHalf: SIMD16<UInt16>)](/documentation/swift/simd32/init(lowhalf:highhalf:)-xy6c)
- [init(repeating: Int64)](/documentation/swift/simd32/init(repeating:)-2223r)
- [init(repeating: UInt8)](/documentation/swift/simd32/init(repeating:)-235au)
- [init(repeating: Float16)](/documentation/swift/simd32/init(repeating:)-32e9u)
- [init(repeating: Int8)](/documentation/swift/simd32/init(repeating:)-4d5ds)
- [init(repeating: Int32)](/documentation/swift/simd32/init(repeating:)-4f9ha)
- [init(repeating: UInt32)](/documentation/swift/simd32/init(repeating:)-4uiif)
- [init(repeating: Int16)](/documentation/swift/simd32/init(repeating:)-5l6wp)
- [init(repeating: Double)](/documentation/swift/simd32/init(repeating:)-73er4)
- [init(repeating: Int)](/documentation/swift/simd32/init(repeating:)-894lr)
- [init(repeating: UInt)](/documentation/swift/simd32/init(repeating:)-8nen7)
- [init(repeating: UInt64)](/documentation/swift/simd32/init(repeating:)-8qn7)
- [init(repeating: UInt16)](/documentation/swift/simd32/init(repeating:)-9hu2m)
- [init(repeating: Float)](/documentation/swift/simd32/init(repeating:)-q7f1)
- [init<Other>(truncatingIfNeeded: SIMD32<Other>)](/documentation/swift/simd32/init(truncatingifneeded:))

###### Instance Properties

- [var evenHalf: SIMD16<Scalar>](/documentation/swift/simd32/evenhalf)
- [var hashValue: Int](/documentation/swift/simd32/hashvalue)
- [var highHalf: SIMD16<Scalar>](/documentation/swift/simd32/highhalf)
- [var lowHalf: SIMD16<Scalar>](/documentation/swift/simd32/lowhalf)
- [var oddHalf: SIMD16<Scalar>](/documentation/swift/simd32/oddhalf)
- [var scalarCount: Int](/documentation/swift/simd32/scalarcount)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd32/subscript(_:))

###### Type Aliases

- [SIMD32.ArrayLiteralElement](/documentation/swift/simd32/arrayliteralelement)
- [SIMD32.MaskStorage](/documentation/swift/simd32/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd32/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd32/debugdescription)
- [Equatable Implementations](/documentation/swift/simd32/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd32/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd32/simd-implementations)

###### Operators

- [static func & (Self, Self) -> Self](/documentation/swift/simd32/&(_:_:)-3y4ee)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&(_:_:)-5hn2d)
- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&(_:_:)-6m27n)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd32/&*(_:_:)-18c2j)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&*(_:_:)-39jwx)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&*(_:_:)-7snfm)
- [static func &*= (inout Self, Self)](/documentation/swift/simd32/&*=(_:_:)-317ft)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd32/&*=(_:_:)-4o8xl)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&+(_:_:)-2klka)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&+(_:_:)-5s8y2)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd32/&+(_:_:)-6wi7o)
- [static func &+= (inout Self, Self)](/documentation/swift/simd32/&+=(_:_:)-1ho7b)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd32/&+=(_:_:)-579bp)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&-(_:_:)-1e36y)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&-(_:_:)-4705x)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd32/&-(_:_:)-8s9k4)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd32/&-=(_:_:)-594jw)
- [static func &-= (inout Self, Self)](/documentation/swift/simd32/&-=(_:_:)-5pn4x)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd32/&=(_:_:)-5eswa)
- [static func &= (inout Self, Self)](/documentation/swift/simd32/&=(_:_:)-9jgzy)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&__(_:_:)-29eng)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&__(_:_:)-4gsmr)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd32/&__(_:_:)-78ish)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd32/&__(_:_:)-7zqu8)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd32/&__(_:_:)-89xqs)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd32/&__(_:_:)-9hia9)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd32/&__=(_:_:)-3ali8)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd32/&__=(_:_:)-762kk)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd32/&__=(_:_:)-815bv)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd32/&__=(_:_:)-92dly)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd32/*(_:_:)-2s55h)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd32/*(_:_:)-418m6)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd32/*(_:_:)-4x7hq)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd32/*(_:_:)-7q0sz)
- [static func * (Self, Self) -> Self](/documentation/swift/simd32/*(_:_:)-7shb0)
- [static func * (Self, Self) -> Self](/documentation/swift/simd32/*(_:_:)-9qya8)
- [static func *= (inout Self, Self)](/documentation/swift/simd32/*=(_:_:)-1i0tm)
- [static func *= (inout Self, Self)](/documentation/swift/simd32/*=(_:_:)-36zit)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd32/*=(_:_:)-46f5z)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd32/*=(_:_:)-8kra8)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd32/+(_:_:)-2phi3)
- [static func + (Self, Self) -> Self](/documentation/swift/simd32/+(_:_:)-473a4)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd32/+(_:_:)-4w7pm)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd32/+(_:_:)-59ak9)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd32/+(_:_:)-5rl9l)
- [static func + (Self, Self) -> Self](/documentation/swift/simd32/+(_:_:)-tzme)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd32/+=(_:_:)-2gvba)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd32/+=(_:_:)-318n3)
- [static func += (inout Self, Self)](/documentation/swift/simd32/+=(_:_:)-6aukb)
- [static func += (inout Self, Self)](/documentation/swift/simd32/+=(_:_:)-9yj49)
- [static func - (Self) -> Self](/documentation/swift/simd32/-(_:))
- [static func - (Self, Self) -> Self](/documentation/swift/simd32/-(_:_:)-27153)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd32/-(_:_:)-2zgvi)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd32/-(_:_:)-4vvz)
- [static func - (Self, Self) -> Self](/documentation/swift/simd32/-(_:_:)-7rtph)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd32/-(_:_:)-8y206)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd32/-(_:_:)-ily3)
- [static func -= (inout Self, Self)](/documentation/swift/simd32/-=(_:_:)-1bm21)
- [static func -= (inout Self, Self)](/documentation/swift/simd32/-=(_:_:)-2aro2)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd32/-=(_:_:)-4c6ab)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd32/-=(_:_:)-6ujbc)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-2u3yd)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-6dgv1)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.!=(_:_:)-968x6)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-5y9oc)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-6oddf)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'.==(_:_:)-8sr5e)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-28t6e)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-4ahoi)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-6xg1q)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-78u7r)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-7bowa)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._(_:_:)-89ezy)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-2c2t0)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-3t7xa)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-58tjg)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-5htya)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-64co6)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd32/'._=(_:_:)-9lx6q)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd32/==(_:_:))
- [static func % (Self, Self) -> Self](/documentation/swift/simd32/_(_:_:)-34uwb)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd32/_(_:_:)-3w1pz)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd32/_(_:_:)-414xo)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd32/_(_:_:)-44n0x)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd32/_(_:_:)-474ry)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd32/_(_:_:)-4lwb2)
- [static func / (Self, Self) -> Self](/documentation/swift/simd32/_(_:_:)-4n158)
- [static func / (Self, Self) -> Self](/documentation/swift/simd32/_(_:_:)-4ucgx)
- [static func | (Self, Self) -> Self](/documentation/swift/simd32/_(_:_:)-50id9)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd32/_(_:_:)-5j9uq)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd32/_(_:_:)-5y65m)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd32/_(_:_:)-6zy)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd32/_(_:_:)-7fea3)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd32/_(_:_:)-8nial)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd32/_(_:_:)-pk1j)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd32/_=(_:_:)-11pnj)
- [static func %= (inout Self, Self)](/documentation/swift/simd32/_=(_:_:)-1vap7)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd32/_=(_:_:)-20gc6)
- [static func |= (inout Self, Self)](/documentation/swift/simd32/_=(_:_:)-26y2h)
- [static func /= (inout Self, Self)](/documentation/swift/simd32/_=(_:_:)-2dyv7)
- [static func /= (inout Self, Self)](/documentation/swift/simd32/_=(_:_:)-2okko)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd32/_=(_:_:)-49dhy)
- [static func ^= (inout Self, Self)](/documentation/swift/simd32/_=(_:_:)-4prs)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd32/_=(_:_:)-66xdx)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd32/_=(_:_:)-8y875)
- [static func ~ (Self) -> Self](/documentation/swift/simd32/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd32/init(_:)-6afuc)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd32/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd32/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd32/init(repeating:)-1e473)

###### Instance Properties

- [var description: String](/documentation/swift/simd32/description)
- [var indices: Range<Int>](/documentation/swift/simd32/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd32/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd32/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd32/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd32/addproduct(_:_:)-2e6v4)
- [func addProduct(Self, Self)](/documentation/swift/simd32/addproduct(_:_:)-65sbs)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd32/addproduct(_:_:)-9epk7)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd32/addingproduct(_:_:)-7uual)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd32/addingproduct(_:_:)-8gka)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd32/addingproduct(_:_:)-8svnk)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd32/clamp(lowerbound:upperbound:)-mfa1)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd32/clamp(lowerbound:upperbound:)-r8mu)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd32/clamped(lowerbound:upperbound:)-3fn6n)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd32/clamped(lowerbound:upperbound:)-5edvy)
- [func encode(to: any Encoder) throws](/documentation/swift/simd32/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd32/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd32/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd32/max()-36c8c)
- [func max() -> Self.Scalar](/documentation/swift/simd32/max()-9t6zm)
- [func min() -> Self.Scalar](/documentation/swift/simd32/min()-5cvw3)
- [func min() -> Self.Scalar](/documentation/swift/simd32/min()-9a3ey)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd32/replace(with:where:)-7o8hd)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd32/replace(with:where:)-9jte6)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd32/replacing(with:where:)-3v5ph)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd32/replacing(with:where:)-h40g)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd32/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd32/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd32/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd32/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd32/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd32/one-13jdz)
- [static var one: Self](/documentation/swift/simd32/one-3mop8)
- [static var zero: Self](/documentation/swift/simd32/zero-2wd1r)
- [static var zero: Self](/documentation/swift/simd32/zero-3kong)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd32/random(in:)-3w4wf)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd32/random(in:)-82yup)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd32/random(in:using:)-7fl57)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd32/random(in:using:)-7xfit)
- [SIMD64](/documentation/swift/simd64)

###### Operators

- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-1nies)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-260nd)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-2oono)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-4am5c)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-6fivz)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-6nevl)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-6z2gk)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-8axy6)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-8dfx8)
- [static func &* (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&*(_:_:)-8wirt)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-15yd5)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-185kx)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-1adyr)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-1byil)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-36mll)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-3rg5d)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-4oi76)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-769qv)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-ka55)
- [static func &*= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&*=(_:_:)-xy7u)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-2ufe6)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-35gh4)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-3elq5)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-40abu)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-4h7n)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-4iw8o)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-58udo)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-7lqu0)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-854q6)
- [static func &+ (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&+(_:_:)-yx3k)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-1m6vg)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-31s20)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-3dasm)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-43iwb)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-4t7or)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-56h8p)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-7wsxv)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-94lfa)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-9kwf1)
- [static func &+= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&+=(_:_:)-9oeon)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-11gz6)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-5v387)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-646vl)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-6c1vz)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-6ew72)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-6qahe)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-81ued)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-8xf3r)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-8z1z3)
- [static func &- (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMD64<Scalar>](/documentation/swift/simd64/&-(_:_:)-99873)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-16i05)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-30fsn)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-3h8zf)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-3laqf)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-41le9)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-5omju)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-87aow)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-8b2t3)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-8bxz5)
- [static func &-= (inout SIMD64<Scalar>, SIMD64<Scalar>)](/documentation/swift/simd64/&-=(_:_:)-9ivxf)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-1672o)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-1psmc)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-23qev)
- [static func .!= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-2jo15)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-2nnb6)
- [static func .!= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-2pyma)
- [static func .!= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-470qi)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-4cif7)
- [static func .!= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-57ivo)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-58qz7)
- [static func .!= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-5g7na)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-62b8a)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-7sndj)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-7ty32)
- [static func .!= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-7wxw6)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-85lqf)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-8y7s9)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-99wn9)
- [static func .!= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-cwhd)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-1565o)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-1a4ze)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-1wwna)
- [static func .== (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-2zdet)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-313pg)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-4azos)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-4dxcu)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-4ia29)
- [static func .== (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-4lizh)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-5lj8z)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-7ezg9)
- [static func .== (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-7ksx6)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-7n5dw)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-83u9i)
- [static func .== (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-8hf5d)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-8j9ds)
- [static func .== (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-8s6tq)
- [static func .== (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-9d2d9)
- [static func .== (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-z33t)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-177uc)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-1lb5o)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-1pb6p)
- [static func .> (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-2biz4)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-2czkl)
- [static func .< (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-2dddq)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-2rxgt)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3089u)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-33rfj)
- [static func .< (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-35ys)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3csxk)
- [static func .> (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3ep9p)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3h8j0)
- [static func .< (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3v7zi)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3w5c8)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-43x9l)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-4bi1l)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-4kmka)
- [static func .> (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-4v53j)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-54oza)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-5xqjv)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-66auz)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-6nyvk)
- [static func .> (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-6vgju)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-708u)
- [static func .< (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-73coq)
- [static func .< (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-7eaio)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-89gyk)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-8apvk)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-8ehoo)
- [static func .< (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-8fgby)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-9hnxx)
- [static func .> (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-9w6aa)
- [static func .> (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-9zaun)
- [static func .> (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-k2j)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-nt6n)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-p4ho)
- [static func .< (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-yg07)
- [static func .<= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1901x)
- [static func .>= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1ahdu)
- [static func .>= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1dsbz)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1t539)
- [static func .>= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1vb8h)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1yb7n)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-28lr6)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-29f23)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-2h2qx)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-2jrjk)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-2virz)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-30ji0)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-3nuyj)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-4f8ww)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-52vxo)
- [static func .>= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-53ml4)
- [static func .<= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-59hvt)
- [static func .<= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-59rir)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-5t9td)
- [static func .<= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-5u1ld)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-5v8f7)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-61408)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-645sj)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-656yo)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-6ab1t)
- [static func .<= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-6cjfh)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-6i9kd)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-736a3)
- [static func .>= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-7df2n)
- [static func .>= (Scalar, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-7uivb)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-862yz)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-887zi)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-9llhj)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-9qnjw)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-9shgf)
- [static func .<= (SIMD64<Scalar>, Scalar) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-9vrgx)
- [static func .>= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-9z4fl)
- [static func .<= (SIMD64<Scalar>, SIMD64<Scalar>) -> SIMDMask<SIMD64<Scalar>.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-xdbb)

###### Initializers

- [init()](/documentation/swift/simd64/init())
- [init<Other>(SIMD64<Other>)](/documentation/swift/simd64/init(_:)-1i716)
- [init<Other>(SIMD64<Other>)](/documentation/swift/simd64/init(_:)-1ogvd)
- [init(Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar, Scalar)](/documentation/swift/simd64/init(_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:_:))
- [init<Other>(SIMD64<Other>, rounding: FloatingPointRoundingRule)](/documentation/swift/simd64/init(_:rounding:))
- [init<Other>(clamping: SIMD64<Other>)](/documentation/swift/simd64/init(clamping:))
- [init(lowHalf: SIMD32<Int>, highHalf: SIMD32<Int>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-1trg7)
- [init(lowHalf: SIMD32<Int8>, highHalf: SIMD32<Int8>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-28ffo)
- [init(lowHalf: SIMD32<Int64>, highHalf: SIMD32<Int64>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-2xbxv)
- [init(lowHalf: SIMD32<Scalar>, highHalf: SIMD32<Scalar>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-6eaf6)
- [init(lowHalf: SIMD32<Int32>, highHalf: SIMD32<Int32>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-6m61v)
- [init(lowHalf: SIMD32<UInt64>, highHalf: SIMD32<UInt64>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-6op80)
- [init(lowHalf: SIMD32<UInt>, highHalf: SIMD32<UInt>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-7a8xd)
- [init(lowHalf: SIMD32<Float>, highHalf: SIMD32<Float>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-7eekb)
- [init(lowHalf: SIMD32<UInt32>, highHalf: SIMD32<UInt32>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-7qmjs)
- [init(lowHalf: SIMD32<Float16>, highHalf: SIMD32<Float16>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-7znin)
- [init(lowHalf: SIMD32<Double>, highHalf: SIMD32<Double>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-8g6uw)
- [init(lowHalf: SIMD32<Int16>, highHalf: SIMD32<Int16>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-8m9fq)
- [init(lowHalf: SIMD32<UInt16>, highHalf: SIMD32<UInt16>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-8v8h3)
- [init(lowHalf: SIMD32<UInt8>, highHalf: SIMD32<UInt8>)](/documentation/swift/simd64/init(lowhalf:highhalf:)-9eket)
- [init(repeating: UInt64)](/documentation/swift/simd64/init(repeating:)-14iv3)
- [init(repeating: UInt16)](/documentation/swift/simd64/init(repeating:)-1k04p)
- [init(repeating: Int16)](/documentation/swift/simd64/init(repeating:)-1oiya)
- [init(repeating: Int32)](/documentation/swift/simd64/init(repeating:)-205cx)
- [init(repeating: UInt32)](/documentation/swift/simd64/init(repeating:)-3wxg7)
- [init(repeating: Float16)](/documentation/swift/simd64/init(repeating:)-4ebdx)
- [init(repeating: Int)](/documentation/swift/simd64/init(repeating:)-6v9hc)
- [init(repeating: Float)](/documentation/swift/simd64/init(repeating:)-86hc)
- [init(repeating: Int8)](/documentation/swift/simd64/init(repeating:)-8fb17)
- [init(repeating: Double)](/documentation/swift/simd64/init(repeating:)-92lq0)
- [init(repeating: UInt8)](/documentation/swift/simd64/init(repeating:)-aen4)
- [init(repeating: Int64)](/documentation/swift/simd64/init(repeating:)-fq9s)
- [init(repeating: UInt)](/documentation/swift/simd64/init(repeating:)-ylnh)
- [init<Other>(truncatingIfNeeded: SIMD64<Other>)](/documentation/swift/simd64/init(truncatingifneeded:))

###### Instance Properties

- [var evenHalf: SIMD32<Scalar>](/documentation/swift/simd64/evenhalf)
- [var hashValue: Int](/documentation/swift/simd64/hashvalue)
- [var highHalf: SIMD32<Scalar>](/documentation/swift/simd64/highhalf)
- [var lowHalf: SIMD32<Scalar>](/documentation/swift/simd64/lowhalf)
- [var oddHalf: SIMD32<Scalar>](/documentation/swift/simd64/oddhalf)
- [var scalarCount: Int](/documentation/swift/simd64/scalarcount)

###### Subscripts

- [subscript(Int) -> Scalar](/documentation/swift/simd64/subscript(_:))

###### Type Aliases

- [SIMD64.ArrayLiteralElement](/documentation/swift/simd64/arrayliteralelement)
- [SIMD64.MaskStorage](/documentation/swift/simd64/maskstorage)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/simd64/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/simd64/debugdescription)
- [Equatable Implementations](/documentation/swift/simd64/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simd64/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simd64/simd-implementations)

###### Operators

- [static func & (Self, Self) -> Self](/documentation/swift/simd64/&(_:_:)-48kwh)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&(_:_:)-5sdoy)
- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&(_:_:)-659cg)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&*(_:_:)-3k94q)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&*(_:_:)-7amwd)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd64/&*(_:_:)-rfmc)
- [static func &*= (inout Self, Self)](/documentation/swift/simd64/&*=(_:_:)-2qjaa)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd64/&*=(_:_:)-551ly)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&+(_:_:)-31fpl)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&+(_:_:)-69btx)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd64/&+(_:_:)-6m447)
- [static func &+= (inout Self, Self)](/documentation/swift/simd64/&+=(_:_:)-1s4xc)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd64/&+=(_:_:)-5gvtu)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&-(_:_:)-1oiep)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&-(_:_:)-4gmrm)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd64/&-(_:_:)-8b6pz)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd64/&-=(_:_:)-4ygnj)
- [static func &-= (inout Self, Self)](/documentation/swift/simd64/&-=(_:_:)-67jym)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd64/&=(_:_:)-5wpkl)
- [static func &= (inout Self, Self)](/documentation/swift/simd64/&=(_:_:)-98sr1)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&__(_:_:)-1ri1r)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&__(_:_:)-3zzo0)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd64/&__(_:_:)-7iub3)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd64/&__(_:_:)-7j9fy)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd64/&__(_:_:)-8keg3)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd64/&__(_:_:)-9rxgq)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd64/&__=(_:_:)-3sibz)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd64/&__=(_:_:)-6veiv)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd64/&__=(_:_:)-8i87o)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd64/&__=(_:_:)-8rzj9)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd64/*(_:_:)-38y62)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd64/*(_:_:)-3kbvd)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd64/*(_:_:)-4mjjh)
- [static func * (Self, Self) -> Self](/documentation/swift/simd64/*(_:_:)-7agrf)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd64/*(_:_:)-80pyw)
- [static func * (Self, Self) -> Self](/documentation/swift/simd64/*(_:_:)-99vn7)
- [static func *= (inout Self, Self)](/documentation/swift/simd64/*=(_:_:)-1z3id)
- [static func *= (inout Self, Self)](/documentation/swift/simd64/*=(_:_:)-3ntoe)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd64/*=(_:_:)-3vpxk)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd64/*=(_:_:)-8vgob)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd64/+(_:_:)-27h1w)
- [static func + (Self, Self) -> Self](/documentation/swift/simd64/+(_:_:)-3wpa7)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd64/+(_:_:)-4ff09)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd64/+(_:_:)-5r8e2)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd64/+(_:_:)-69rpi)
- [static func + (Self, Self) -> Self](/documentation/swift/simd64/+(_:_:)-jka1)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd64/+=(_:_:)-26hfp)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd64/+=(_:_:)-2kbw8)
- [static func += (inout Self, Self)](/documentation/swift/simd64/+=(_:_:)-5sues)
- [static func += (inout Self, Self)](/documentation/swift/simd64/+=(_:_:)-9gmka)
- [static func - (Self) -> Self](/documentation/swift/simd64/-(_:))
- [static func - (Self, Self) -> Self](/documentation/swift/simd64/-(_:_:)-1q4hs)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd64/-(_:_:)-2pwx9)
- [static func - (Self, Self) -> Self](/documentation/swift/simd64/-(_:_:)-7ar0m)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd64/-(_:_:)-8nctl)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd64/-(_:_:)-fbas)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd64/-(_:_:)-tcjo)
- [static func -= (inout Self, Self)](/documentation/swift/simd64/-=(_:_:)-117zm)
- [static func -= (inout Self, Self)](/documentation/swift/simd64/-=(_:_:)-20ca5)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd64/-=(_:_:)-4lsxo)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd64/-=(_:_:)-7bdez)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-2c3lu)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-5wk7u)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.!=(_:_:)-8woo1)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-68z13)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-75g24)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'.==(_:_:)-99k0t)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-1s0b9)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-3tla5)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-6n0pt)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-6yfx0)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-7smbh)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._(_:_:)-7srs5)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-1v69f)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-34q4)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-4b5ol)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-4y5lb)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-4zn9d)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd64/'._=(_:_:)-6dy5p)
- [static func == (Self, Self) -> Bool](/documentation/swift/simd64/==(_:_:))
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd64/_(_:_:)-3e53o)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd64/_(_:_:)-3mmse)
- [static func % (Self, Self) -> Self](/documentation/swift/simd64/_(_:_:)-3mrhw)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd64/_(_:_:)-3rknz)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd64/_(_:_:)-4b85p)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd64/_(_:_:)-4p1dd)
- [static func / (Self, Self) -> Self](/documentation/swift/simd64/_(_:_:)-53v87)
- [static func | (Self, Self) -> Self](/documentation/swift/simd64/_(_:_:)-5axk6)
- [static func / (Self, Self) -> Self](/documentation/swift/simd64/_(_:_:)-5bfge)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd64/_(_:_:)-5tz1l)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd64/_(_:_:)-6f021)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd64/_(_:_:)-7xkx0)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd64/_(_:_:)-8y8tm)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd64/_(_:_:)-9p4bu)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd64/_(_:_:)-f4mg)
- [static func %= (inout Self, Self)](/documentation/swift/simd64/_=(_:_:)-1d41k)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd64/_=(_:_:)-2haal)
- [static func |= (inout Self, Self)](/documentation/swift/simd64/_=(_:_:)-2nqna)
- [static func /= (inout Self, Self)](/documentation/swift/simd64/_=(_:_:)-2opf0)
- [static func /= (inout Self, Self)](/documentation/swift/simd64/_=(_:_:)-2z9yb)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd64/_=(_:_:)-3rd8x)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd64/_=(_:_:)-6hdyq)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd64/_=(_:_:)-98nne)
- [static func ^= (inout Self, Self)](/documentation/swift/simd64/_=(_:_:)-9mati)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd64/_=(_:_:)-r1oc)
- [static func ~ (Self) -> Self](/documentation/swift/simd64/~(_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simd64/init(_:)-6l6bn)
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simd64/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simd64/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simd64/init(repeating:)-1uy8k)

###### Instance Properties

- [var description: String](/documentation/swift/simd64/description)
- [var indices: Range<Int>](/documentation/swift/simd64/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd64/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd64/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd64/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd64/addproduct(_:_:)-2v9r3)
- [func addProduct(Self, Self)](/documentation/swift/simd64/addproduct(_:_:)-6gitz)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd64/addproduct(_:_:)-94bac)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd64/addingproduct(_:_:)-8bwvm)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd64/addingproduct(_:_:)-99pn7)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd64/addingproduct(_:_:)-ivsx)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd64/clamp(lowerbound:upperbound:)-ac6p)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd64/clamp(lowerbound:upperbound:)-wuiq)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd64/clamped(lowerbound:upperbound:)-3qdwo)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd64/clamped(lowerbound:upperbound:)-5ot5h)
- [func encode(to: any Encoder) throws](/documentation/swift/simd64/encode(to:))
- [func formSquareRoot()](/documentation/swift/simd64/formsquareroot())
- [func hash(into: inout Hasher)](/documentation/swift/simd64/hash(into:))
- [func max() -> Self.Scalar](/documentation/swift/simd64/max()-3n69z)
- [func max() -> Self.Scalar](/documentation/swift/simd64/max()-9irq5)
- [func min() -> Self.Scalar](/documentation/swift/simd64/min()-52hug)
- [func min() -> Self.Scalar](/documentation/swift/simd64/min()-9s02d)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd64/replace(with:where:)-7685a)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd64/replace(with:where:)-99fgt)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd64/replacing(with:where:)-3ecx2)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd64/replacing(with:where:)-xwqn)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd64/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd64/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd64/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd64/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd64/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd64/one-1lpug)
- [static var one: Self](/documentation/swift/simd64/one-44mp3)
- [static var zero: Self](/documentation/swift/simd64/zero-2faik)
- [static var zero: Self](/documentation/swift/simd64/zero-3vf97)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd64/random(in:)-46u2s)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd64/random(in:)-8do2i)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd64/random(in:using:)-7qbkk)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd64/random(in:using:)-8863m)

##### Supporting Types

- [SIMD](/documentation/swift/simd)

###### Operators

- [static func & (Self, Self) -> Self](/documentation/swift/simd/&(_:_:)-7euv2)
- [static func & (Self.Scalar, Self) -> Self](/documentation/swift/simd/&(_:_:)-9iwe1)
- [static func & (Self, Self.Scalar) -> Self](/documentation/swift/simd/&(_:_:)-hube)
- [static func &* (Self, Self) -> Self](/documentation/swift/simd/&*(_:_:)-6dnx3)
- [static func &* (Self.Scalar, Self) -> Self](/documentation/swift/simd/&*(_:_:)-6q9r4)
- [static func &* (Self, Self.Scalar) -> Self](/documentation/swift/simd/&*(_:_:)-96x3e)
- [static func &*= (inout Self, Self.Scalar)](/documentation/swift/simd/&*=(_:_:)-2nncu)
- [static func &*= (inout Self, Self)](/documentation/swift/simd/&*=(_:_:)-7upvw)
- [static func &+ (Self, Self.Scalar) -> Self](/documentation/swift/simd/&+(_:_:)-11ezq)
- [static func &+ (Self.Scalar, Self) -> Self](/documentation/swift/simd/&+(_:_:)-2dwe6)
- [static func &+ (Self, Self) -> Self](/documentation/swift/simd/&+(_:_:)-7atvo)
- [static func &+= (inout Self, Self.Scalar)](/documentation/swift/simd/&+=(_:_:)-4nb37)
- [static func &+= (inout Self, Self)](/documentation/swift/simd/&+=(_:_:)-6bl8h)
- [static func &- (Self, Self.Scalar) -> Self](/documentation/swift/simd/&-(_:_:)-18r5t)
- [static func &- (Self.Scalar, Self) -> Self](/documentation/swift/simd/&-(_:_:)-3k78n)
- [static func &- (Self, Self) -> Self](/documentation/swift/simd/&-(_:_:)-8sti5)
- [static func &-= (inout Self, Self.Scalar)](/documentation/swift/simd/&-=(_:_:)-8wqjs)
- [static func &-= (inout Self, Self)](/documentation/swift/simd/&-=(_:_:)-9uxv2)
- [static func &= (inout Self, Self.Scalar)](/documentation/swift/simd/&=(_:_:)-8ruc4)
- [static func &= (inout Self, Self)](/documentation/swift/simd/&=(_:_:)-9p2uz)
- [static func &>> (Self.Scalar, Self) -> Self](/documentation/swift/simd/&__(_:_:)-4zcvd)
- [static func &>> (Self, Self.Scalar) -> Self](/documentation/swift/simd/&__(_:_:)-5ccr)
- [static func &<< (Self.Scalar, Self) -> Self](/documentation/swift/simd/&__(_:_:)-5zfif)
- [static func &<< (Self, Self) -> Self](/documentation/swift/simd/&__(_:_:)-6vdh9)
- [static func &>> (Self, Self) -> Self](/documentation/swift/simd/&__(_:_:)-8f94f)
- [static func &<< (Self, Self.Scalar) -> Self](/documentation/swift/simd/&__(_:_:)-9p0g4)
- [static func &<<= (inout Self, Self)](/documentation/swift/simd/&__=(_:_:)-2r7mx)
- [static func &>>= (inout Self, Self)](/documentation/swift/simd/&__=(_:_:)-66i5n)
- [static func &>>= (inout Self, Self.Scalar)](/documentation/swift/simd/&__=(_:_:)-8yrf)
- [static func &<<= (inout Self, Self.Scalar)](/documentation/swift/simd/&__=(_:_:)-94hft)
- [static func * (Self, Self) -> Self](/documentation/swift/simd/*(_:_:)-33k6i)
- [static func * (Self.Scalar, Self) -> Self](/documentation/swift/simd/*(_:_:)-4fl9b)
- [static func * (Self, Self.Scalar) -> Self](/documentation/swift/simd/*(_:_:)-4wltm)
- [static func *= (inout Self, Self.Scalar)](/documentation/swift/simd/*=(_:_:)-33czt)
- [static func *= (inout Self, Self)](/documentation/swift/simd/*=(_:_:)-jal7)
- [static func + (Self, Self.Scalar) -> Self](/documentation/swift/simd/+(_:_:)-48zcp)
- [static func + (Self, Self) -> Self](/documentation/swift/simd/+(_:_:)-64jan)
- [static func + (Self.Scalar, Self) -> Self](/documentation/swift/simd/+(_:_:)-68uuk)
- [static func += (inout Self, Self.Scalar)](/documentation/swift/simd/+=(_:_:)-14pp9)
- [static func += (inout Self, Self)](/documentation/swift/simd/+=(_:_:)-3jf1j)
- [static func += (inout Self, Self)](/documentation/swift/simd/+=(_:_:)-9f7e0)
- [static func - (Self) -> Self](/documentation/swift/simd/-(_:)-7asi6)
- [static func - (Self) -> Self](/documentation/swift/simd/-(_:)-9ukvl)
- [static func - (Self.Scalar, Self) -> Self](/documentation/swift/simd/-(_:_:)-2ad59)
- [static func - (Self, Self.Scalar) -> Self](/documentation/swift/simd/-(_:_:)-3lx2i)
- [static func - (Self, Self) -> Self](/documentation/swift/simd/-(_:_:)-oego)
- [static func -= (inout Self, Self.Scalar)](/documentation/swift/simd/-=(_:_:)-4uwnp)
- [static func -= (inout Self, Self)](/documentation/swift/simd/-=(_:_:)-6dwmc)
- [static func -= (inout Self, Self)](/documentation/swift/simd/-=(_:_:)-6ejxe)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.!=(_:_:)-3m98p)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.!=(_:_:)-402ba)
- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.!=(_:_:)-8undu)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.==(_:_:)-1nb4h)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.==(_:_:)-5akc8)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'.==(_:_:)-8utr5)
- [static func .> (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-2bb66)
- [static func .< (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-2g6i2)
- [static func .> (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-6kr63)
- [static func .> (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-7ad36)
- [static func .< (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-8bwmo)
- [static func .< (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._(_:_:)-935pf)
- [static func .>= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-1grcf)
- [static func .>= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-4poyx)
- [static func .<= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-7ulie)
- [static func .<= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-8vgvo)
- [static func .>= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-d7g2)
- [static func .<= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simd/'._=(_:_:)-iulp)
- [static func % (Self.Scalar, Self) -> Self](/documentation/swift/simd/_(_:_:)-1qdv9)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd/_(_:_:)-1rb4)
- [static func | (Self, Self.Scalar) -> Self](/documentation/swift/simd/_(_:_:)-225ln)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd/_(_:_:)-2hi2t)
- [static func / (Self, Self.Scalar) -> Self](/documentation/swift/simd/_(_:_:)-2om3p)
- [static func | (Self, Self) -> Self](/documentation/swift/simd/_(_:_:)-3ge91)
- [static func % (Self, Self.Scalar) -> Self](/documentation/swift/simd/_(_:_:)-3scvv)
- [static func % (Self, Self) -> Self](/documentation/swift/simd/_(_:_:)-4djx9)
- [static func | (Self.Scalar, Self) -> Self](/documentation/swift/simd/_(_:_:)-5f3rz)
- [static func ^ (Self, Self) -> Self](/documentation/swift/simd/_(_:_:)-620ag)
- [static func ^ (Self, Self.Scalar) -> Self](/documentation/swift/simd/_(_:_:)-6ryjr)
- [static func / (Self, Self) -> Self](/documentation/swift/simd/_(_:_:)-6tba5)
- [static func ^ (Self.Scalar, Self) -> Self](/documentation/swift/simd/_(_:_:)-73syd)
- [static func / (Self.Scalar, Self) -> Self](/documentation/swift/simd/_(_:_:)-80bu5)
- [static func / (Self, Self) -> Self](/documentation/swift/simd/_(_:_:)-8gl48)
- [static func %= (inout Self, Self)](/documentation/swift/simd/_=(_:_:)-17fvb)
- [static func |= (inout Self, Self)](/documentation/swift/simd/_=(_:_:)-1olgw)
- [static func /= (inout Self, Self)](/documentation/swift/simd/_=(_:_:)-1xum3)
- [static func /= (inout Self, Self)](/documentation/swift/simd/_=(_:_:)-2i5w5)
- [static func ^= (inout Self, Self.Scalar)](/documentation/swift/simd/_=(_:_:)-5qmfn)
- [static func |= (inout Self, Self.Scalar)](/documentation/swift/simd/_=(_:_:)-7q26h)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd/_=(_:_:)-9rh2)
- [static func ^= (inout Self, Self)](/documentation/swift/simd/_=(_:_:)-9yqbl)
- [static func /= (inout Self, Self.Scalar)](/documentation/swift/simd/_=(_:_:)-dtaz)
- [static func %= (inout Self, Self.Scalar)](/documentation/swift/simd/_=(_:_:)-eq5q)
- [static func ~ (Self) -> Self](/documentation/swift/simd/~(_:))

###### Associated Types

- [MaskStorage](/documentation/swift/simd/maskstorage)

###### Initializers

- [init<S>(S)](/documentation/swift/simd/init(_:)-18uy8)
- [init(Self.Scalar)](/documentation/swift/simd/init(_:)-4h623)
- [init(repeating: Self.Scalar)](/documentation/swift/simd/init(repeating:))

###### Instance Properties

- [var indices: Range<Int>](/documentation/swift/simd/indices)
- [var leadingZeroBitCount: Self](/documentation/swift/simd/leadingzerobitcount)
- [var nonzeroBitCount: Self](/documentation/swift/simd/nonzerobitcount)
- [var trailingZeroBitCount: Self](/documentation/swift/simd/trailingzerobitcount)

###### Instance Methods

- [func addProduct(Self.Scalar, Self)](/documentation/swift/simd/addproduct(_:_:)-256j6)
- [func addProduct(Self, Self.Scalar)](/documentation/swift/simd/addproduct(_:_:)-3mvjt)
- [func addProduct(Self, Self)](/documentation/swift/simd/addproduct(_:_:)-i1fp)
- [func addingProduct(Self, Self.Scalar) -> Self](/documentation/swift/simd/addingproduct(_:_:)-4h4k3)
- [func addingProduct(Self.Scalar, Self) -> Self](/documentation/swift/simd/addingproduct(_:_:)-59qn8)
- [func addingProduct(Self, Self) -> Self](/documentation/swift/simd/addingproduct(_:_:)-kk15)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd/clamp(lowerbound:upperbound:)-3tdwm)
- [func clamp(lowerBound: Self, upperBound: Self)](/documentation/swift/simd/clamp(lowerbound:upperbound:)-yh51)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd/clamped(lowerbound:upperbound:)-4k4gy)
- [func clamped(lowerBound: Self, upperBound: Self) -> Self](/documentation/swift/simd/clamped(lowerbound:upperbound:)-9hl58)
- [func formSquareRoot()](/documentation/swift/simd/formsquareroot())
- [func max() -> Self.Scalar](/documentation/swift/simd/max()-7j0po)
- [func max() -> Self.Scalar](/documentation/swift/simd/max()-l6ds)
- [func min() -> Self.Scalar](/documentation/swift/simd/min()-7pa71)
- [func min() -> Self.Scalar](/documentation/swift/simd/min()-9z12h)
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd/replace(with:where:)-6if0p)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simd/replace(with:where:)-91tn3)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd/replacing(with:where:)-1nga6)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simd/replacing(with:where:)-8vzk)
- [func round(FloatingPointRoundingRule)](/documentation/swift/simd/round(_:))
- [func rounded(FloatingPointRoundingRule) -> Self](/documentation/swift/simd/rounded(_:))
- [func squareRoot() -> Self](/documentation/swift/simd/squareroot())
- [func sum() -> Self.Scalar](/documentation/swift/simd/sum())
- [func wrappedSum() -> Self.Scalar](/documentation/swift/simd/wrappedsum())

###### Type Properties

- [static var one: Self](/documentation/swift/simd/one-428b1)
- [static var one: Self](/documentation/swift/simd/one-6bgr9)
- [static var zero: Self](/documentation/swift/simd/zero-6gnz)
- [static var zero: Self](/documentation/swift/simd/zero-8n566)

###### Type Methods

- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd/random(in:)-13ruo)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd/random(in:)-3meec)
- [static func random(in: ClosedRange<Self.Scalar>) -> Self](/documentation/swift/simd/random(in:)-4rat4)
- [static func random(in: Range<Self.Scalar>) -> Self](/documentation/swift/simd/random(in:)-5ur5a)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd/random(in:using:)-5uz8w)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd/random(in:using:)-86tab)
- [static func random<T>(in: Range<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd/random(in:using:)-8bcnv)
- [static func random<T>(in: ClosedRange<Self.Scalar>, using: inout T) -> Self](/documentation/swift/simd/random(in:using:)-8yt59)
- [SIMDScalar](/documentation/swift/simdscalar)

###### Associated Types

- [SIMD16Storage](/documentation/swift/simdscalar/simd16storage)
- [SIMD2Storage](/documentation/swift/simdscalar/simd2storage)
- [SIMD32Storage](/documentation/swift/simdscalar/simd32storage)
- [SIMD4Storage](/documentation/swift/simdscalar/simd4storage)
- [SIMD64Storage](/documentation/swift/simdscalar/simd64storage)
- [SIMD8Storage](/documentation/swift/simdscalar/simd8storage)
- [SIMDMaskScalar](/documentation/swift/simdscalar/simdmaskscalar)
- [SIMDStorage](/documentation/swift/simdstorage)

###### Associated Types

- [Scalar](/documentation/swift/simdstorage/scalar)

###### Initializers

- [init()](/documentation/swift/simdstorage/init())

###### Instance Properties

- [var scalarCount: Int](/documentation/swift/simdstorage/scalarcount)

###### SIMDStorage Implementations

- [static var scalarCount: Int](/documentation/swift/simdstorage/scalarcount-swift.type.property)

###### Subscripts

- [subscript(Int) -> Self.Scalar](/documentation/swift/simdstorage/subscript(_:))

###### SIMDStorage Implementations

- [subscript<Index>(SIMD2<Index>) -> SIMD2<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-11tl0)
- [subscript<Index>(SIMD64<Index>) -> SIMD64<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-4bxif)
- [subscript<Index>(SIMD4<Index>) -> SIMD4<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-4wdyq)
- [subscript<Index>(SIMD8<Index>) -> SIMD8<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-5dslw)
- [subscript<Index>(SIMD16<Index>) -> SIMD16<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-8lp1s)
- [subscript<Index>(SIMD32<Index>) -> SIMD32<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-9go95)
- [subscript<Index>(SIMD3<Index>) -> SIMD3<Self.Scalar>](/documentation/swift/simdstorage/subscript(_:)-9ota9)
- [SIMDMask](/documentation/swift/simdmask)

###### Operators

- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-1i6z4)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-1taxm)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-1uoo5)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-1wni3)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-21iaq)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-2s4rp)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-2xidg)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-369g7)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-37o53)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-3cez8)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-3v0wb)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-412oe)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-4j1ws)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-4jcjq)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-4x8xz)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-5byae)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-5glpy)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-5qm8v)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-6cygw)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-7iq11)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-7odl6)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-7odqs)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-7oxtu)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-7x8d0)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-864jr)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-88k9y)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-8ewdk)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-8fdgj)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-8ps9r)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-8qmdw)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-8qz21)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-9afyr)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-9j4wf)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-9lm1f)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-9oij3)
- [static func .! (SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!(_:)-w95r)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-1bstv)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-1xcmp)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-3aavu)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-3vfg0)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-3ylip)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-423h5)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-4efoo)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-4qjq3)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-4uyji)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-4yah8)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-52wyk)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-57336)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-5b2tn)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-5b65c)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-5c1ea)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-69426)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-6g155)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-6k7jt)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-6xo9v)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-72ix7)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-7c281)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-7eoc8)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-7i3ju)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-9gbp0)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-9pxno)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-9qlrq)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-9tocb)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-9vgs4)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-a5c6)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-dffz)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-eifj)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-g3o1)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-m7n7)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-mac2)
- [static func .!= (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.!=(_:_:)-y5ox)
- [static func .& (SIMDMask<Storage>, Bool) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-145py)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-169o8)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-1a23z)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-1pshx)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-1ucx5)
- [static func .& (Bool, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-20xdw)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-2awxi)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-2imak)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-2lwk7)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-2peib)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-3ky5)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-3q922)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-431pz)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-49px)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-4am8f)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-4dlkk)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-4ryow)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-4vik1)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-4x5gc)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-557cy)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-5zen)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-67j)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-67wgv)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-680i1)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-6xa9c)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-6xn07)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-7mo1z)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-892f)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-8pp6f)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-8q5wb)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-9429d)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-97hdm)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-9915i)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-9nff3)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-9qn9n)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-9u9mk)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-fq1q)
- [static func .& (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.&(_:_:)-zszx)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-12gkg)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-1cwox)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-1wpn1)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-1x3hq)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-20boa)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-252cj)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-2na0m)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-34ad1)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-3oxz3)
- [static func .&= (inout SIMDMask<Storage>, Bool)](/documentation/swift/simdmask/'.&=(_:_:)-4ysik)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-52kbo)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-5en6)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-5jyb3)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-5kwst)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-5lkct)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-5qb7m)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-62ajs)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-63gip)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-6ou9w)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-6p7x3)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-6tmg8)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-6zusl)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-70wd4)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-7oyep)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-7wb1u)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-844uv)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-85bn8)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-86khr)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-8ur23)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-8yjqn)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-95thm)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-962kz)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-9kh2c)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-9wv32)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-icc)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-lg4i)
- [static func .&= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'.&=(_:_:)-skpc)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-11d2d)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-1jvgs)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-1og62)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-1ubfu)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-284j9)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-2brx5)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-2dam3)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-2iimf)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-39nci)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-3gcbu)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-3hdhk)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-3kebh)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-3myzv)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-42ijc)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-45t84)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-4b0ny)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-57ghp)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-587zp)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-5h2mq)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-5uq1i)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-60n7g)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-67dx6)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-6cck1)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-6fplg)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-6vw48)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-71h0j)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-7fdu0)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-7h67k)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-8ergy)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-8vssm)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-91rl9)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-979dh)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-k5h7)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-riwy)
- [static func .== (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'.==(_:_:)-xxgz)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-11sjt)
- [static func .^ (Bool, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1ke9)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1kfk0)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1lqpw)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1lxbl)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1lz4p)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1na0j)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1orsn)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-1zt0u)
- [static func .^ (SIMDMask<Storage>, Bool) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-2cb7l)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-2fut5)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-2ihng)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-2qbki)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-33q5z)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-374nn)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3bgdq)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3n4if)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3o5p8)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3qurd)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3r14q)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3t3b6)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3tj8x)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3uhaz)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-3wd47)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-4akg1)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-4hjau)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-4qn8l)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-521pj)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-52ll8)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5bq2t)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5coqj)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5crsr)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5ic47)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5pu7e)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-5to13)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-63r3t)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6dhf6)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6g5ou)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6j7cz)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6l9ra)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6pru)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-6v0gb)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-753hw)
- [static func .| (SIMDMask<Storage>, Bool) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-75fbk)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-77675)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-78lxr)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-7feku)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-7qdxf)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-7tall)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-7yq75)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-81c6m)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-856yj)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-865a6)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-86pih)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-87ha8)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-8ovj4)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-8oxhr)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-8pb64)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-8pklp)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-8z99n)
- [static func .| (Bool, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-91mg7)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-93fh3)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-93uww)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-94c8y)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-952oz)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-99sse)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9h7g4)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9i0ho)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9lt9f)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9picb)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9s54c)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9t6d6)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-9wmqe)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-gx5e)
- [static func .| (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-rztm)
- [static func .^ (SIMDMask<Storage>, SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/'._(_:_:)-vf27)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-10b9k)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-11elm)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-17zji)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-187ym)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-19x8)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-1bqze)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-1kwjk)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-1l06v)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-1skak)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-289ei)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-28avd)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-2fptv)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-32bpi)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-33sbw)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-35gl4)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-36fwo)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-36zd7)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-37pr7)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3c5yv)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3cq16)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3dnxc)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3dwxc)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3jpjw)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3l4kc)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3lgta)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3lp52)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-3zval)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-424pq)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-48r5d)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-49ffo)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4c0l2)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4hstr)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4jn7m)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4m5ba)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4rjbb)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-4w85p)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-53c71)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-55m63)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-564rm)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-5p4g2)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-5yqz0)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-68krs)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6gi0j)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6jqlh)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6ncn)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6q6ca)
- [static func .|= (inout SIMDMask<Storage>, Bool)](/documentation/swift/simdmask/'._=(_:_:)-6rb2k)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6vrul)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6y37h)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-6yxof)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-75ws5)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-77voy)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-78qic)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-7bu3y)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-7gotm)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-7hjr8)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-7rhqy)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-7vb81)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-8n751)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-8ts0r)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-8wkee)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-8xdh5)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-91v5a)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-9cexc)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-9s8nu)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-9wm9x)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-9ybag)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-bbyz)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-dji1)
- [static func .|= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-g3jo)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-gpt7)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-jiue)
- [static func .^= (inout SIMDMask<Storage>, SIMDMask<Storage>)](/documentation/swift/simdmask/'._=(_:_:)-nixb)
- [static func .^= (inout SIMDMask<Storage>, Bool)](/documentation/swift/simdmask/'._=(_:_:)-wwci)

###### Initializers

- [init()](/documentation/swift/simdmask/init())
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-1m52n)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-202bd)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-248q1)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-2pmca)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-2x534)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-2yqe1)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-3q2ur)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-3w0ux)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-3w4ke)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-42cre)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-42vxu)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-4kh6e)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-4n5yz)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-4p6y0)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-59l18)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-5cst1)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-5gywa)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-5zr61)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-6cczf)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-6lkx7)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-6r2mi)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-6wd06)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-6xdsz)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-78cdd)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-7xzo4)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-80x0s)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-87zs0)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-89avq)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-8omke)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-8y7bw)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-9fi4f)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-9ndns)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-9su40)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-ufux)
- [init(repeating: Bool)](/documentation/swift/simdmask/init(repeating:)-wbsm)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/simdmask/hashvalue)
- [var scalarCount: Int](/documentation/swift/simdmask/scalarcount)

###### Instance Methods

- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-11sio)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-1apjj)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-21nlg)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-24wgu)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-2hsah)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-2l1cw)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-2xv7u)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-3huzu)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-3wsfp)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-4acy9)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-4egrz)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-4zc4a)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-4zrb4)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-58aw)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-5mzr3)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-5wj86)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-6b6u3)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-6unjm)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-6x0g3)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-76v5a)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-7ehzz)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-7hlsy)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-7qg9m)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-7qytv)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-889b7)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-8gg39)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-9nlep)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-9pxoc)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-aosa)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-hn35)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-klo8)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-lhds)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-p18j)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-qerf)
- [func replace(with: SIMDMask<Storage>, where: SIMDMask<Storage>)](/documentation/swift/simdmask/replace(with:where:)-wt51)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-1tc07)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-1uajn)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-1vwr2)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-211v4)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-221u7)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-2h7n9)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-2j2hn)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-2jm3v)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-3firb)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-3kfo4)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-3y37w)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-4gvh6)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-4htdo)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-4mmzd)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-4nikh)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-515tf)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-5dsdp)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-5eb2n)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-5n09x)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-60cao)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-6mn7k)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-6vk5h)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7q8n5)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7qxdb)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7uyp7)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7wb0w)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7wxag)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-7yvsx)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-8bs2p)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-8fafz)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-8kc21)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-91l51)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-93wj5)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-9wyi2)
- [func replacing(with: SIMDMask<Storage>, where: SIMDMask<Storage>) -> SIMDMask<Storage>](/documentation/swift/simdmask/replacing(with:where:)-x0wd)

###### Subscripts

- [subscript(Int) -> Bool](/documentation/swift/simdmask/subscript(_:))

###### Type Aliases

- [SIMDMask.ArrayLiteralElement](/documentation/swift/simdmask/arrayliteralelement)
- [SIMDMask.MaskStorage](/documentation/swift/simdmask/maskstorage)
- [SIMDMask.Scalar](/documentation/swift/simdmask/scalar)

###### Type Methods

- [static func random() -> SIMDMask<Storage>](/documentation/swift/simdmask/random())
- [static func random<T>(using: inout T) -> SIMDMask<Storage>](/documentation/swift/simdmask/random(using:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/simdmask/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/simdmask/!=(_:_:))
- [SIMD Implementations](/documentation/swift/simdmask/simd-implementations)

###### Operators

- [static func .!= (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.!=(_:_:)-4o6ac)
- [static func .!= (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.!=(_:_:)-5cnom)
- [static func .!= (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.!=(_:_:)-94n12)
- [static func .== (Self.Scalar, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.==(_:_:)-4l749)
- [static func .== (Self, Self.Scalar) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.==(_:_:)-6aq3z)
- [static func .== (Self, Self) -> SIMDMask<Self.MaskStorage>](/documentation/swift/simdmask/'.==(_:_:)-8vdyh)
- [static func == (Self, Self) -> Bool](/documentation/swift/simdmask/==(_:_:))

###### Initializers

- [init<S>(S)](/documentation/swift/simdmask/init(_:))
- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/simdmask/init(arrayliteral:))
- [init(from: any Decoder) throws](/documentation/swift/simdmask/init(from:))
- [init(repeating: Self.Scalar)](/documentation/swift/simdmask/init(repeating:)-5pwub)

###### Instance Properties

- [var description: String](/documentation/swift/simdmask/description)
- [var indices: Range<Int>](/documentation/swift/simdmask/indices)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/simdmask/encode(to:))
- [func hash(into: inout Hasher)](/documentation/swift/simdmask/hash(into:))
- [func replace(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simdmask/replace(with:where:)-6wonx)
- [func replace(with: Self, where: SIMDMask<Self.MaskStorage>)](/documentation/swift/simdmask/replace(with:where:)-7bhx)
- [func replacing(with: Self, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simdmask/replacing(with:where:)-2gka4)
- [func replacing(with: Self.Scalar, where: SIMDMask<Self.MaskStorage>) -> Self](/documentation/swift/simdmask/replacing(with:where:)-3lyjl)

##### Supporting Functions

- [func all<Storage>(SIMDMask<Storage>) -> Bool](/documentation/swift/all(_:))
- [func any<Storage>(SIMDMask<Storage>) -> Bool](/documentation/swift/any(_:))
- [func pointwiseMax<T>(T, T) -> T](/documentation/swift/pointwisemax(_:_:)-29hn2)
- [func pointwiseMax<T>(T, T) -> T](/documentation/swift/pointwisemax(_:_:)-2k6er)
- [func pointwiseMin<T>(T, T) -> T](/documentation/swift/pointwisemin(_:_:)-39txi)
- [func pointwiseMin<T>(T, T) -> T](/documentation/swift/pointwisemin(_:_:)-8v95p)
- [Global Numeric Functions](/documentation/swift/global-numeric-functions)

##### Choosing the Smallest and Largest Value

- [func min<T>(T, T) -> T](/documentation/swift/min(_:_:))
- [func min<T>(T, T, T, T...) -> T](/documentation/swift/min(_:_:_:_:))
- [func max<T>(T, T) -> T](/documentation/swift/max(_:_:))
- [func max<T>(T, T, T, T...) -> T](/documentation/swift/max(_:_:_:_:))

##### Finding the Absolute Value

- [func abs<T>(T) -> T](/documentation/swift/abs(_:))

#### Random Number Generators

- [SystemRandomNumberGenerator](/documentation/swift/systemrandomnumbergenerator)

##### Creating a Generator

- [init()](/documentation/swift/systemrandomnumbergenerator/init())

##### Generating Random Binary Data

- [func next() -> UInt64](/documentation/swift/systemrandomnumbergenerator/next())
- [func next<T>() -> T](/documentation/swift/systemrandomnumbergenerator/next()-2x0ly)
- [func next<T>(upperBound: T) -> T](/documentation/swift/systemrandomnumbergenerator/next(upperbound:))

##### Default Implementations

- [RandomNumberGenerator Implementations](/documentation/swift/systemrandomnumbergenerator/randomnumbergenerator-implementations)

###### Instance Methods

- [func next<T>() -> T](/documentation/swift/systemrandomnumbergenerator/next()-2x0ly)
- [func next() -> UInt64](/documentation/swift/systemrandomnumbergenerator/next()-70qj7)
- [func next<T>(upperBound: T) -> T](/documentation/swift/systemrandomnumbergenerator/next(upperbound:))
- [RandomNumberGenerator](/documentation/swift/randomnumbergenerator)

##### Generating Random Binary Data

- [func next() -> UInt64](/documentation/swift/randomnumbergenerator/next())

###### RandomNumberGenerator Implementations

- [func next<T>() -> T](/documentation/swift/randomnumbergenerator/next()-6auxg)
- [func next<T>(upperBound: T) -> T](/documentation/swift/randomnumbergenerator/next(upperbound:))
- [Strings and Text](/documentation/swift/strings-and-text)

#### Strings and Characters

- [String](/documentation/swift/string)

##### Creating a String

- [init(decoding: FilePath)](/documentation/swift/string/init(decoding:)-nm7v)
- [init()](/documentation/swift/string/init())
- [init(Character)](/documentation/swift/string/init(_:)-8v3fo)
- [init<S>(S)](/documentation/swift/string/init(_:)-8og6g)
- [init<S>(S)](/documentation/swift/string/init(_:)-1ip93)
- [init<S>(S)](/documentation/swift/string/init(_:)-50pwi)
- [init(Substring)](/documentation/swift/string/init(_:)-14lv5)
- [init(repeating: String, count: Int)](/documentation/swift/string/init(repeating:count:)-23xjt)
- [init(repeating: Character, count: Int)](/documentation/swift/string/init(repeating:count:)-11bpi)
- [init(unsafeUninitializedCapacity: Int, initializingUTF8With: (UnsafeMutableBufferPointer<UInt8>) throws -> Int) rethrows](/documentation/swift/string/init(unsafeuninitializedcapacity:initializingutf8with:))

##### Inspecting a String

- [var isEmpty: Bool](/documentation/swift/string/isempty)
- [var count: Int](/documentation/swift/string/count)

##### Creating a String from Unicode Data

- [init(Unicode.Scalar)](/documentation/swift/string/init(_:)-8ay23)
- [init?(data: Data, encoding: String.Encoding)](/documentation/swift/string/init(data:encoding:))
- [init?(validatingUTF8: UnsafePointer<CChar>)](/documentation/swift/string/init(validatingutf8:)-208fn)
- [init?<Encoding>(validating: some Sequence, as: Encoding.Type)](/documentation/swift/string/init(validating:as:)-84qr9)
- [init?<Encoding>(validating: some Sequence<Int8>, as: Encoding.Type)](/documentation/swift/string/init(validating:as:)-5cw2c)
- [init?(utf8String: [CChar])](/documentation/swift/string/init(utf8string:)-8qmaq)
- [init?(utf8String: UnsafePointer<CChar>)](/documentation/swift/string/init(utf8string:)-3mcco)
- [init(utf16CodeUnits: UnsafePointer<unichar>, count: Int)](/documentation/swift/string/init(utf16codeunits:count:))
- [init(utf16CodeUnitsNoCopy: UnsafePointer<unichar>, count: Int, freeWhenDone: Bool)](/documentation/swift/string/init(utf16codeunitsnocopy:count:freewhendone:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/string/init(decoding:as:))

##### Creating a String Using Formats

- [init(format: String, any CVarArg...)](/documentation/swift/string/init(format:_:))
- [init(format: String, arguments: [any CVarArg])](/documentation/swift/string/init(format:arguments:))
- [init(format: String, locale: Locale?, any CVarArg...)](/documentation/swift/string/init(format:locale:_:))
- [init(format: String, locale: Locale?, arguments: [any CVarArg])](/documentation/swift/string/init(format:locale:arguments:))
- [static func localizedStringWithFormat(String, any CVarArg...) -> String](/documentation/swift/string/localizedstringwithformat(_:_:))

##### Creating a Localized String

- [init(localized: String.LocalizationValue, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:table:bundle:locale:comment:))
- [init(localized: String.LocalizationValue, options: String.LocalizationOptions, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:options:table:bundle:locale:comment:))
- [String.LocalizationValue](/documentation/swift/string/localizationvalue)

###### Creating a string localization value instance

- [init(String)](/documentation/swift/string/localizationvalue/init(_:))

###### Supporting types

- [String.LocalizationValue.Placeholder](/documentation/swift/string/localizationvalue/placeholder)

###### Placeholder types

- [case int](/documentation/swift/string/localizationvalue/placeholder/int)
- [case uint](/documentation/swift/string/localizationvalue/placeholder/uint)
- [case float](/documentation/swift/string/localizationvalue/placeholder/float)
- [case double](/documentation/swift/string/localizationvalue/placeholder/double)
- [case object](/documentation/swift/string/localizationvalue/placeholder/object)
- [String.LocalizationOptions](/documentation/swift/string/localizationoptions)

###### Specifying localization behavior

- [var replacements: [any CVarArg]?](/documentation/swift/string/localizationoptions/replacements)

###### Initializers

- [init()](/documentation/swift/string/localizationoptions/init())
- [init(localized: StaticString, defaultValue: String.LocalizationValue, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:defaultvalue:table:bundle:locale:comment:))
- [init(localized: StaticString, defaultValue: String.LocalizationValue, options: String.LocalizationOptions, table: String?, bundle: Bundle?, locale: Locale, comment: StaticString?)](/documentation/swift/string/init(localized:defaultvalue:options:table:bundle:locale:comment:))
- [init(localized: LocalizedStringResource)](/documentation/swift/string/init(localized:))
- [init(localized: LocalizedStringResource, options: String.LocalizationOptions)](/documentation/swift/string/init(localized:options:))

##### Converting Numeric Values

- [init<T>(T, radix: Int, uppercase: Bool)](/documentation/swift/string/init(_:radix:uppercase:))

##### Converting a C String

- [init?<S>(bytes: S, encoding: String.Encoding)](/documentation/swift/string/init(bytes:encoding:))
- [init?(bytesNoCopy: UnsafeMutableRawPointer, length: Int, encoding: String.Encoding, freeWhenDone: Bool)](/documentation/swift/string/init(bytesnocopy:length:encoding:freewhendone:))
- [init?(validatingCString: UnsafePointer<CChar>)](/documentation/swift/string/init(validatingcstring:)-992vo)
- [init?(validatingCString: [CChar])](/documentation/swift/string/init(validatingcstring:)-98wra)
- [init(cString: UnsafePointer<CChar>)](/documentation/swift/string/init(cstring:)-2p84k)
- [init(cString: UnsafePointer<UInt8>)](/documentation/swift/string/init(cstring:)-6kr8s)
- [init?(cString: [CChar], encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-3h7bc)
- [init?(cString: UnsafePointer<CChar>, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-3qgzd)
- [init<Encoding>(decodingCString: [Encoding.CodeUnit], as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-8way7)
- [static func decodeCString<Encoding>(UnsafePointer<Encoding.CodeUnit>?, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-46n2p)

##### Converting Other Types to Strings

- [init<T>(T)](/documentation/swift/string/init(_:)-1ywfq)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-588wb)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-hsqw)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-6ttci)
- [init<Subject>(describing: Subject)](/documentation/swift/string/init(describing:)-67ncf)
- [init<Subject>(reflecting: Subject)](/documentation/swift/string/init(reflecting:))

##### Creating a String from a File or URL

- [init(contentsOf: URL) throws](/documentation/swift/string/init(contentsof:))
- [init(contentsOf: URL, encoding: String.Encoding) throws](/documentation/swift/string/init(contentsof:encoding:))
- [init(contentsOf: URL, usedEncoding: inout String.Encoding) throws](/documentation/swift/string/init(contentsof:usedencoding:))
- [init(contentsOfFile: String) throws](/documentation/swift/string/init(contentsoffile:))
- [init(contentsOfFile: String, encoding: String.Encoding) throws](/documentation/swift/string/init(contentsoffile:encoding:))
- [init(contentsOfFile: String, usedEncoding: inout String.Encoding) throws](/documentation/swift/string/init(contentsoffile:usedencoding:))

##### Writing to a File or URL

- [func write(String)](/documentation/swift/string/write(_:))
- [func write<Target>(to: inout Target)](/documentation/swift/string/write(to:))

##### Appending Strings and Characters

- [func append(String)](/documentation/swift/string/append(_:)-4xa8f)
- [func append(Character)](/documentation/swift/string/append(_:)-4xi3j)
- [func append(contentsOf: String)](/documentation/swift/string/append(contentsof:)-oxek)
- [func append(contentsOf: Substring)](/documentation/swift/string/append(contentsof:)-9vb4t)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-7est5)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-9foms)
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:))
- [static func + (String, String) -> String](/documentation/swift/string/+(_:_:))
- [static func += (inout String, String)](/documentation/swift/string/+=(_:_:))
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/+(_:_:)-6h59y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-n329)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-9fm57)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/+=(_:_:)-676gx)

##### Inserting Characters

- [func insert(Character, at: String.Index)](/documentation/swift/string/insert(_:at:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/insert(_:at:)-88yqh)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/insert(contentsof:at:)-rdu9)
- [func insert<S>(contentsOf: S, at: String.Index)](/documentation/swift/string/insert(contentsof:at:))

##### Replacing Substrings

- [func replaceSubrange<C>(Range<String.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/replacesubrange(_:with:)-72947)

##### Removing Substrings

- [func remove(at: String.Index) -> Character](/documentation/swift/string/remove(at:))
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/remove(at:)-5g0wm)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/removelast())
- [func removeLast(Int)](/documentation/swift/string/removelast(_:))
- [func removeSubrange(Range<String.Index>)](/documentation/swift/string/removesubrange(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/removesubrange(_:)-8maxn)
- [func removeSubrange<R>(R)](/documentation/swift/string/removesubrange(_:)-9twng)
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/filter(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/droplast(_:))
- [func popLast() -> Self.Element?](/documentation/swift/string/poplast())

##### Changing Case

- [func lowercased() -> String](/documentation/swift/string/lowercased())
- [func uppercased() -> String](/documentation/swift/string/uppercased())

##### Comparing Strings Using Operators

- [static func == (String, String) -> Bool](/documentation/swift/string/==(_:_:))
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/string/==(_:_:)-8kzxf)
- [static func != (Self, Self) -> Bool](/documentation/swift/string/!=(_:_:)-1bb05)
- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/string/!=(_:_:)-frzf)
- [static func ~= (String, Substring) -> Bool](/documentation/swift/string/~=(_:_:))

##### Comparing Characters

- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:by:))

##### Creating and Applying Differences

- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/applying(_:))
- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:by:))

##### Finding Substrings

- [func hasPrefix(String) -> Bool](/documentation/swift/string/hasprefix(_:))
- [func hasSuffix(String) -> Bool](/documentation/swift/string/hassuffix(_:))

##### Finding Characters

- [func contains(Self.Element) -> Bool](/documentation/swift/string/contains(_:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/allsatisfy(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/contains(where:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/first(where:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/firstindex(where:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/lastindex(where:))
- [func max() -> Self.Element?](/documentation/swift/string/max())
- [func max<T>(T, T) -> T](/documentation/swift/string/max(_:_:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/min())
- [func min<T>(T, T) -> T](/documentation/swift/string/min(_:_:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/min(by:))

##### Getting Substrings

- [subscript(Range<String.Index>) -> Substring](/documentation/swift/string/subscript(_:)-2so14)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4h7s3)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4al9c)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/suffix(from:))

##### Splitting a String

- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/split(separator:maxsplits:omittingemptysubsequences:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/split(maxsplits:omittingemptysubsequences:whereseparator:))

##### Getting Characters and Bytes

- [subscript(String.Index) -> Character](/documentation/swift/string/subscript(_:)-lc0v)
- [var first: Self.Element?](/documentation/swift/string/first)
- [var last: Self.Element?](/documentation/swift/string/last)
- [func randomElement() -> Self.Element?](/documentation/swift/string/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/randomelement(using:))

##### Working with Encodings

- [static var availableStringEncodings: [String.Encoding]](/documentation/swift/string/availablestringencodings)
- [static var defaultCStringEncoding: String.Encoding](/documentation/swift/string/defaultcstringencoding)
- [static func localizedName(of: String.Encoding) -> String](/documentation/swift/string/localizedname(of:))
- [var isContiguousUTF8: Bool](/documentation/swift/string/iscontiguousutf8)
- [func makeContiguousUTF8()](/documentation/swift/string/makecontiguousutf8())
- [func withUTF8<R>((UnsafeBufferPointer<UInt8>) throws -> R) rethrows -> R](/documentation/swift/string/withutf8(_:))

##### Working with String Views

- [var unicodeScalars: String.UnicodeScalarView](/documentation/swift/string/unicodescalars)
- [init(String.UnicodeScalarView)](/documentation/swift/string/init(_:)-2t931)
- [init(Substring.UnicodeScalarView)](/documentation/swift/string/init(_:)-11jx3)
- [var utf16: String.UTF16View](/documentation/swift/string/utf16)
- [init(String.UTF16View)](/documentation/swift/string/init(_:)-wbcx)
- [init?(Substring.UTF16View)](/documentation/swift/string/init(_:)-expd)
- [var utf8: String.UTF8View](/documentation/swift/string/utf8)
- [init(String.UTF8View)](/documentation/swift/string/init(_:)-6sprj)
- [init?(Substring.UTF8View)](/documentation/swift/string/init(_:)-83bub)

##### Transforming a String’s Characters

- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/compactmap(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/flatmap(_:)-i3m9)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/flatmap(_:)-6chuq)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/reduce(into:_:))
- [var lazy: LazySequence<Self>](/documentation/swift/string/lazy)

##### Iterating over a String’s Characters

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/enumerated())
- [func makeIterator() -> String.Iterator](/documentation/swift/string/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/string/underestimatedcount)

##### Reordering a String’s Characters

- [func sorted() -> [Self.Element]](/documentation/swift/string/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/sorted(by:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/string/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/shuffled(using:))

##### Getting C Strings

- [var utf8CString: ContiguousArray<CChar>](/documentation/swift/string/utf8cstring)
- [func withCString<Result>((UnsafePointer<Int8>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(encodedas:_:))

##### Working with Paths

- [init(FilePath)](/documentation/swift/string/init(_:)-3a5mh)
- [init?(validatingUTF8: FilePath)](/documentation/swift/string/init(validatingutf8:)-6i0in)

##### Manipulating Indices

- [var startIndex: String.Index](/documentation/swift/string/startindex)
- [var endIndex: String.Index](/documentation/swift/string/endindex)
- [func index(after: String.Index) -> String.Index](/documentation/swift/string/index(after:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/formindex(after:))
- [func index(before: String.Index) -> String.Index](/documentation/swift/string/index(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/formindex(before:))
- [func index(String.Index, offsetBy: Int) -> String.Index](/documentation/swift/string/index(_:offsetby:))
- [func index(String.Index, offsetBy: Int, limitedBy: String.Index) -> String.Index?](/documentation/swift/string/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/formindex(_:offsetby:limitedby:))
- [func distance(from: String.Index, to: String.Index) -> Int](/documentation/swift/string/distance(from:to:))
- [var indices: DefaultIndices<Self>](/documentation/swift/string/indices-swift.property)

##### Creating a Range Expression

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/'...(_:_:))
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/'...(_:)-4mm4o)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/'...(_:)-6ct5g)

##### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/string/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/string/init(from:))

##### Describing a String

- [var description: String](/documentation/swift/string/description)
- [var debugDescription: String](/documentation/swift/string/debugdescription)
- [var customMirror: Mirror](/documentation/swift/string/custommirror)
- [var hashValue: Int](/documentation/swift/string/hashvalue)
- [func hash(into: inout Hasher)](/documentation/swift/string/hash(into:))

##### Infrequently Used Functionality

- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/index(of:))
- [init(NSString)](/documentation/swift/string/init(_:)-5a5lw)
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:))
- [init(stringLiteral: String)](/documentation/swift/string/init(stringliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/string/init(unicodescalarliteral:))
- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/string/init(extendedgraphemeclusterliteral:))
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/customplaygroundquicklook)
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/withcontiguousstorageifavailable(_:))

##### Reference Types

- [NSString](/documentation/foundation/nsstring)
- [NSMutableString](/documentation/foundation/nsmutablestring)

##### Related String Types

- [Substring](/documentation/swift/substring)

###### Operators

- [static func ~= (Substring, String) -> Bool](/documentation/swift/substring/~=(_:_:))

###### Initializers

- [init()](/documentation/swift/substring/init())
- [init(Substring.UTF8View)](/documentation/swift/substring/init(_:)-4njms)
- [init(Substring.UTF16View)](/documentation/swift/substring/init(_:)-61zpv)
- [init(Substring.UnicodeScalarView)](/documentation/swift/substring/init(_:)-7k0au)

###### Instance Properties

- [var base: String](/documentation/swift/substring/base)
- [var characters: Substring](/documentation/swift/substring/characters)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/substring/customplaygroundquicklook)
- [var isContiguousUTF8: Bool](/documentation/swift/substring/iscontiguousutf8)
- [var utf8Span: UTF8Span](/documentation/swift/substring/utf8span)

###### Instance Methods

- [func filter((Substring.Element) throws -> Bool) rethrows -> String](/documentation/swift/substring/filter(_:))
- [func makeContiguousUTF8()](/documentation/swift/substring/makecontiguousutf8())
- [func replaceSubrange(Range<Substring.Index>, with: Substring)](/documentation/swift/substring/replacesubrange(_:with:)-mfwu)
- [func withMutableCharacters<R>((inout Substring) -> R) -> R](/documentation/swift/substring/withmutablecharacters(_:))
- [func withUTF8<R>((UnsafeBufferPointer<UInt8>) throws -> R) rethrows -> R](/documentation/swift/substring/withutf8(_:))

###### Type Aliases

- [Substring.CharacterView](/documentation/swift/substring/characterview)
- [Substring.Output](/documentation/swift/substring/output)

###### Default Implementations

- [Attachable Implementations](/documentation/swift/substring/attachable-implementations)

###### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<Substring>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/substring/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/substring/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/difference(from:by:))
- [func distance(from: Substring.Index, to: Substring.Index) -> Int](/documentation/swift/substring/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/substring/formindex(before:))
- [func index(Substring.Index, offsetBy: Int) -> Substring.Index](/documentation/swift/substring/index(_:offsetby:))
- [func index(Substring.Index, offsetBy: Int, limitedBy: Substring.Index) -> Substring.Index?](/documentation/swift/substring/index(_:offsetby:limitedby:))
- [func index(after: Substring.Index) -> Substring.Index](/documentation/swift/substring/index(after:))
- [func index(before: Substring.Index) -> Substring.Index](/documentation/swift/substring/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-7k3s0)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-2gcne)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-8r1d9)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/suffix(_:))

###### Subscripts

- [subscript(Range<Substring.Index>) -> Substring](/documentation/swift/substring/subscript(_:)-6e3qj)
- [Collection Implementations](/documentation/swift/substring/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/count)
- [var endIndex: Substring.Index](/documentation/swift/substring/endindex)
- [var first: Self.Element?](/documentation/swift/substring/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/substring/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/isempty)
- [var startIndex: Substring.Index](/documentation/swift/substring/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/substring/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/map(_:)-5p6oh)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-5bf95)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-5qb6j)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/suffix(from:))

###### Subscripts

- [subscript(Substring.Index) -> Character](/documentation/swift/substring/subscript(_:)-2nr4p)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/subscript(_:)-392pj)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/subscript(_:)-4al8g)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/subscript(_:)-4h7r7)

###### Type Aliases

- [Substring.Index](/documentation/swift/substring/index)
- [Substring.Indices](/documentation/swift/substring/indices)
- [Substring.Iterator](/documentation/swift/substring/iterator)
- [Substring.SubSequence](/documentation/swift/substring/subsequence)
- [Comparable Implementations](/documentation/swift/substring/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/substring/'...(_:)-4mm5k)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/substring/'...(_:)-6ct6c)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/substring/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/substring/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/substring/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/substring/_(_:_:)-24u51)
- [static func <= (Self, Self) -> Bool](/documentation/swift/substring/_=(_:_:)-1ii2)
- [static func >= (Self, Self) -> Bool](/documentation/swift/substring/_=(_:_:)-8lyhq)
- [CustomDebugStringConvertible Implementations](/documentation/swift/substring/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/substring/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/substring/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/substring/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/substring/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/substring/description)
- [Equatable Implementations](/documentation/swift/substring/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/substring/!=(_:_:)-1baz9)
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/substring/expressiblebyextendedgraphemeclusterliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: String)](/documentation/swift/substring/init(extendedgraphemeclusterliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/substring/init(unicodescalarliteral:)-53rjt)

###### Type Aliases

- [Substring.ExtendedGraphemeClusterLiteralType](/documentation/swift/substring/extendedgraphemeclusterliteraltype)
- [ExpressibleByStringInterpolation Implementations](/documentation/swift/substring/expressiblebystringinterpolation-implementations)

###### Initializers

- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/substring/init(stringinterpolation:))
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/substring/init(stringinterpolation:)-62cd)

###### Type Aliases

- [Substring.StringInterpolation](/documentation/swift/substring/stringinterpolation)
- [ExpressibleByStringLiteral Implementations](/documentation/swift/substring/expressiblebystringliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/substring/init(extendedgraphemeclusterliteral:)-3gyj6)
- [init(stringLiteral: String)](/documentation/swift/substring/init(stringliteral:))

###### Type Aliases

- [Substring.StringLiteralType](/documentation/swift/substring/stringliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/substring/expressiblebyunicodescalarliteral-implementations)

###### Initializers

- [init(unicodeScalarLiteral: String)](/documentation/swift/substring/init(unicodescalarliteral:))

###### Type Aliases

- [Substring.UnicodeScalarLiteralType](/documentation/swift/substring/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/substring/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/substring/hashvalue)
- [LosslessStringConvertible Implementations](/documentation/swift/substring/losslessstringconvertible-implementations)

###### Initializers

- [init(String)](/documentation/swift/substring/init(_:)-95va8)
- [RangeReplaceableCollection Implementations](/documentation/swift/substring/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/substring/+(_:_:)-6h592)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/+(_:_:)-9fm63)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/+(_:_:)-n335)
- [static func += <Other>(inout Self, Other)](/documentation/swift/substring/+=(_:_:))

###### Initializers

- [init<S>(S)](/documentation/swift/substring/init(_:)-1ip9z)
- [init<S>(S)](/documentation/swift/substring/init(_:)-6lxbv)
- [init(repeating: Self.Element, count: Int)](/documentation/swift/substring/init(repeating:count:))

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/substring/append(_:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/append(contentsof:)-9folw)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/substring/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/substring/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/substring/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-70a2x)
- [func popLast() -> Self.Element?](/documentation/swift/substring/poplast()-nrp9)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/substring/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/substring/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/substring/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-2cpd8)
- [func removeFirst() -> Self.Element](/documentation/swift/substring/removefirst()-39om1)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-43evo)
- [func removeFirst(Int)](/documentation/swift/substring/removefirst(_:)-5s82s)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-4kq76)
- [func removeLast() -> Self.Element](/documentation/swift/substring/removelast()-5b56p)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-1xrzw)
- [func removeLast(Int)](/documentation/swift/substring/removelast(_:)-5ulmx)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/substring/removesubrange(_:)-8mayj)
- [func removeSubrange<R>(R)](/documentation/swift/substring/removesubrange(_:)-9twoc)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/substring/removesubranges(_:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-3hke2)
- [func replaceSubrange<C>(Range<Substring.Index>, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-5g58l)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/substring/replacesubrange(_:with:)-7293b)
- [func reserveCapacity(Int)](/documentation/swift/substring/reservecapacity(_:))
- [Sequence Implementations](/documentation/swift/substring/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/flatmap(_:)-6chtu)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/flatmap(_:)-i3n5)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/map(_:)-9jnor)
- [func max() -> Self.Element?](/documentation/swift/substring/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Substring.Element](/documentation/swift/substring/element)
- [StringProtocol Implementations](/documentation/swift/substring/stringprotocol-implementations)

###### Structures

- [Substring.UTF16View](/documentation/swift/substring/utf16view)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/utf16view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf16view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/droplast(_:))
- [func formIndex(before: inout Substring.UTF16View.Index)](/documentation/swift/substring/utf16view/formindex(before:))
- [func index(before: Substring.UTF16View.Index) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf16view/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/utf16view/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/substring/utf16view/removelast())
- [func removeLast(Int)](/documentation/swift/substring/utf16view/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/utf16view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/utf16view/count)
- [var endIndex: Substring.UTF16View.Index](/documentation/swift/substring/utf16view/endindex)
- [var first: Self.Element?](/documentation/swift/substring/utf16view/first)
- [var indices: Substring.UTF16View.Indices](/documentation/swift/substring/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/utf16view/isempty)
- [var startIndex: Substring.UTF16View.Index](/documentation/swift/substring/utf16view/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/utf16view/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UTF16View.Index, to: Substring.UTF16View.Index) -> Int](/documentation/swift/substring/utf16view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UTF16View.Index)](/documentation/swift/substring/utf16view/formindex(after:))
- [func index(Substring.UTF16View.Index, offsetBy: Int) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(_:offsetby:))
- [func index(Substring.UTF16View.Index, offsetBy: Int, limitedBy: Substring.UTF16View.Index) -> Substring.UTF16View.Index?](/documentation/swift/substring/utf16view/index(_:offsetby:limitedby:))
- [func index(after: Substring.UTF16View.Index) -> Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/utf16view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf16view/map(_:)-2jwvg)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/utf16view/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/utf16view/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/utf16view/removefirst())
- [func removeFirst(Int)](/documentation/swift/substring/utf16view/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf16view/suffix(from:))

###### Subscripts

- [subscript(Range<Substring.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/substring/utf16view/subscript(_:)-20thk)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/utf16view/subscript(_:)-2ljg7)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf16view/subscript(_:)-3ijoy)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/utf16view/subscript(_:)-5j3ao)
- [subscript(Substring.UTF16View.Index) -> Substring.UTF16View.Element](/documentation/swift/substring/utf16view/subscript(_:)-ketw)

###### Type Aliases

- [Substring.UTF16View.Index](/documentation/swift/substring/utf16view/index)
- [Substring.UTF16View.Indices](/documentation/swift/substring/utf16view/indices-swift.typealias)
- [Substring.UTF16View.Iterator](/documentation/swift/substring/utf16view/iterator)
- [Substring.UTF16View.SubSequence](/documentation/swift/substring/utf16view/subsequence)
- [Sequence Implementations](/documentation/swift/substring/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/utf16view/flatmap(_:)-2i1gn)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf16view/flatmap(_:)-8ecws)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf16view/map(_:)-7n24w)
- [func max() -> Self.Element?](/documentation/swift/substring/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Substring.UTF16View.Element](/documentation/swift/substring/utf16view/element)
- [Substring.UTF8View](/documentation/swift/substring/utf8view)

###### Instance Properties

- [var span: Span<UTF8.CodeUnit>](/documentation/swift/substring/utf8view/span)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/droplast(_:))
- [func formIndex(before: inout Substring.UTF8View.Index)](/documentation/swift/substring/utf8view/formindex(before:))
- [func index(before: Substring.UTF8View.Index) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf8view/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/utf8view/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/substring/utf8view/removelast())
- [func removeLast(Int)](/documentation/swift/substring/utf8view/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/utf8view/count)
- [var endIndex: Substring.UTF8View.Index](/documentation/swift/substring/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/substring/utf8view/first)
- [var indices: Substring.UTF8View.Indices](/documentation/swift/substring/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/utf8view/isempty)
- [var startIndex: Substring.UTF8View.Index](/documentation/swift/substring/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/utf8view/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UTF8View.Index, to: Substring.UTF8View.Index) -> Int](/documentation/swift/substring/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UTF8View.Index)](/documentation/swift/substring/utf8view/formindex(after:))
- [func index(Substring.UTF8View.Index, offsetBy: Int) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(_:offsetby:))
- [func index(Substring.UTF8View.Index, offsetBy: Int, limitedBy: Substring.UTF8View.Index) -> Substring.UTF8View.Index?](/documentation/swift/substring/utf8view/index(_:offsetby:limitedby:))
- [func index(after: Substring.UTF8View.Index) -> Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf8view/map(_:)-3dhqn)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/utf8view/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/utf8view/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/utf8view/removefirst())
- [func removeFirst(Int)](/documentation/swift/substring/utf8view/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/utf8view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/utf8view/subscript(_:)-3zacs)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/utf8view/subscript(_:)-6liln)
- [subscript(Range<Substring.UTF8View.Index>) -> Substring.UTF8View](/documentation/swift/substring/utf8view/subscript(_:)-7hfz9)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/utf8view/subscript(_:)-9ouv5)
- [subscript(Substring.UTF8View.Index) -> Substring.UTF8View.Element](/documentation/swift/substring/utf8view/subscript(_:)-goc1)

###### Type Aliases

- [Substring.UTF8View.Index](/documentation/swift/substring/utf8view/index)
- [Substring.UTF8View.Indices](/documentation/swift/substring/utf8view/indices-swift.typealias)
- [Substring.UTF8View.Iterator](/documentation/swift/substring/utf8view/iterator)
- [Substring.UTF8View.SubSequence](/documentation/swift/substring/utf8view/subsequence)
- [Sequence Implementations](/documentation/swift/substring/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/utf8view/flatmap(_:)-3zvpt)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/utf8view/flatmap(_:)-524db)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/utf8view/map(_:)-1lwff)
- [func max() -> Self.Element?](/documentation/swift/substring/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Substring.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/utf8view/withcontiguousstorageifavailable(_:)-7usx4)

###### Type Aliases

- [Substring.UTF8View.Element](/documentation/swift/substring/utf8view/element)
- [Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalarview)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/substring/unicodescalarview/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/substring/unicodescalarview/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/substring/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/substring/unicodescalarview/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Substring.UnicodeScalarView.Index)](/documentation/swift/substring/unicodescalarview/formindex(before:))
- [func index(before: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/unicodescalarview/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-7f9to)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-8b12x)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-4vtt6)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/substring/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/suffix(_:))
- [Collection Implementations](/documentation/swift/substring/unicodescalarview/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/substring/unicodescalarview/count)
- [var endIndex: Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/endindex)
- [var first: Self.Element?](/documentation/swift/substring/unicodescalarview/first)
- [var indices: Substring.UnicodeScalarView.Indices](/documentation/swift/substring/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/substring/unicodescalarview/isempty)
- [var startIndex: Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/startindex)
- [var underestimatedCount: Int](/documentation/swift/substring/unicodescalarview/underestimatedcount)

###### Instance Methods

- [func distance(from: Substring.UnicodeScalarView.Index, to: Substring.UnicodeScalarView.Index) -> Int](/documentation/swift/substring/unicodescalarview/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/substring/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/substring/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/substring/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Substring.UnicodeScalarView.Index)](/documentation/swift/substring/unicodescalarview/formindex(after:))
- [func index(Substring.UnicodeScalarView.Index, offsetBy: Int) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(_:offsetby:))
- [func index(Substring.UnicodeScalarView.Index, offsetBy: Int, limitedBy: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index?](/documentation/swift/substring/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/substring/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/substring/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/substring/unicodescalarview/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/substring/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/unicodescalarview/map(_:)-3wgri)
- [func popFirst() -> Self.Element?](/documentation/swift/substring/unicodescalarview/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/substring/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/substring/unicodescalarview/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-2wary)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-2iv78)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/substring/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/substring/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/suffix(from:))

###### Subscripts

- [subscript(Substring.UnicodeScalarView.Index) -> Substring.UnicodeScalarView.Element](/documentation/swift/substring/unicodescalarview/subscript(_:)-57h51)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/subscript(_:)-7ylky)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/substring/unicodescalarview/subscript(_:)-9p7x7)
- [subscript(Range<Substring.UnicodeScalarView.Index>) -> Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalarview/subscript(_:)-ua5x)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/substring/unicodescalarview/subscript(_:)-zsz3)

###### Type Aliases

- [Substring.UnicodeScalarView.Index](/documentation/swift/substring/unicodescalarview/index)
- [Substring.UnicodeScalarView.Indices](/documentation/swift/substring/unicodescalarview/indices-swift.typealias)
- [Substring.UnicodeScalarView.Iterator](/documentation/swift/substring/unicodescalarview/iterator)
- [Substring.UnicodeScalarView.SubSequence](/documentation/swift/substring/unicodescalarview/subsequence)
- [RangeReplaceableCollection Implementations](/documentation/swift/substring/unicodescalarview/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-1c1pd)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-1p67y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/substring/unicodescalarview/+(_:_:)-9qjws)
- [static func += <Other>(inout Self, Other)](/documentation/swift/substring/unicodescalarview/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/substring/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/substring/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/substring/unicodescalarview/init(repeating:count:))

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/substring/unicodescalarview/append(_:))
- [func append<S>(contentsOf: S)](/documentation/swift/substring/unicodescalarview/append(contentsof:))
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/substring/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/substring/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/substring/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/substring/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-46voy)
- [func popLast() -> Self.Element?](/documentation/swift/substring/unicodescalarview/poplast()-7zgh4)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/substring/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/substring/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/substring/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-2a3ja)
- [func removeFirst() -> Self.Element](/documentation/swift/substring/unicodescalarview/removefirst()-5t2ib)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-2lfkb)
- [func removeFirst(Int)](/documentation/swift/substring/unicodescalarview/removefirst(_:)-5314w)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-3izvn)
- [func removeLast() -> Self.Element](/documentation/swift/substring/unicodescalarview/removelast()-75qy7)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-30fw5)
- [func removeLast(Int)](/documentation/swift/substring/unicodescalarview/removelast(_:)-74qgu)
- [func removeSubrange<R>(R)](/documentation/swift/substring/unicodescalarview/removesubrange(_:)-2qm37)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/substring/unicodescalarview/removesubrange(_:)-5c1al)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/substring/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<Substring.UnicodeScalarView.Index>, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:)-4kmx6)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/substring/unicodescalarview/replacesubrange(_:with:)-7xjpm)
- [func reserveCapacity(Int)](/documentation/swift/substring/unicodescalarview/reservecapacity(_:))
- [Sequence Implementations](/documentation/swift/substring/unicodescalarview/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/substring/unicodescalarview/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/substring/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/substring/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/substring/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/substring/unicodescalarview/flatmap(_:)-1uifa)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/substring/unicodescalarview/flatmap(_:)-3yg2b)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/substring/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/substring/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/substring/unicodescalarview/map(_:)-2cf6k)
- [func max() -> Self.Element?](/documentation/swift/substring/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/substring/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/substring/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/substring/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/substring/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/substring/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/substring/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/substring/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/substring/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/substring/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/substring/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/substring/unicodescalarview/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Substring.UnicodeScalarView.Element](/documentation/swift/substring/unicodescalarview/element)

###### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/!=(_:_:)-fryj)
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/==(_:_:))
- [static func > <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_(_:_:)-6o7pz)
- [static func < <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_(_:_:)-8d1w2)
- [static func <= <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_=(_:_:)-5y23r)
- [static func >= <RHS>(Self, RHS) -> Bool](/documentation/swift/substring/_=(_:_:)-nd7a)

###### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/substring/init(cstring:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/substring/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/substring/init(decodingcstring:as:))

###### Instance Properties

- [var unicodeScalars: Substring.UnicodeScalarView](/documentation/swift/substring/unicodescalars)
- [var utf16: Substring.UTF16View](/documentation/swift/substring/utf16)
- [var utf8: Substring.UTF8View](/documentation/swift/substring/utf8)

###### Instance Methods

- [func hasPrefix<Prefix>(Prefix) -> Bool](/documentation/swift/substring/hasprefix(_:))
- [func hasSuffix<Suffix>(Suffix) -> Bool](/documentation/swift/substring/hassuffix(_:))
- [func hash(into: inout Hasher)](/documentation/swift/substring/hash(into:))
- [func lowercased() -> String](/documentation/swift/substring/lowercased())
- [func uppercased() -> String](/documentation/swift/substring/uppercased())
- [func withCString<Result>((UnsafePointer<CChar>) throws -> Result) rethrows -> Result](/documentation/swift/substring/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/substring/withcstring(encodedas:_:))
- [TextOutputStream Implementations](/documentation/swift/substring/textoutputstream-implementations)

###### Instance Methods

- [func write(String)](/documentation/swift/substring/write(_:))
- [TextOutputStreamable Implementations](/documentation/swift/substring/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/substring/write(to:))
- [StringProtocol](/documentation/swift/stringprotocol)

###### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/stringprotocol/!=(_:_:))

###### Associated Types

- [SubSequence](/documentation/swift/stringprotocol/subsequence)
- [UTF16View](/documentation/swift/stringprotocol/utf16view)
- [UTF8View](/documentation/swift/stringprotocol/utf8view)
- [UnicodeScalarView](/documentation/swift/stringprotocol/unicodescalarview)

###### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/stringprotocol/init(cstring:))
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/stringprotocol/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/stringprotocol/init(decodingcstring:as:))

###### Instance Properties

- [var capitalized: String](/documentation/swift/stringprotocol/capitalized)
- [var decomposedStringWithCanonicalMapping: String](/documentation/swift/stringprotocol/decomposedstringwithcanonicalmapping)
- [var decomposedStringWithCompatibilityMapping: String](/documentation/swift/stringprotocol/decomposedstringwithcompatibilitymapping)
- [var fastestEncoding: String.Encoding](/documentation/swift/stringprotocol/fastestencoding)
- [var hash: Int](/documentation/swift/stringprotocol/hash)
- [var localizedCapitalized: String](/documentation/swift/stringprotocol/localizedcapitalized)
- [var localizedLowercase: String](/documentation/swift/stringprotocol/localizedlowercase)
- [var localizedUppercase: String](/documentation/swift/stringprotocol/localizeduppercase)
- [var precomposedStringWithCanonicalMapping: String](/documentation/swift/stringprotocol/precomposedstringwithcanonicalmapping)
- [var precomposedStringWithCompatibilityMapping: String](/documentation/swift/stringprotocol/precomposedstringwithcompatibilitymapping)
- [var removingPercentEncoding: String?](/documentation/swift/stringprotocol/removingpercentencoding)
- [var smallestEncoding: String.Encoding](/documentation/swift/stringprotocol/smallestencoding)
- [var unicodeScalars: Self.UnicodeScalarView](/documentation/swift/stringprotocol/unicodescalars)
- [var utf16: Self.UTF16View](/documentation/swift/stringprotocol/utf16)
- [var utf8: Self.UTF8View](/documentation/swift/stringprotocol/utf8)

###### Instance Methods

- [func addingPercentEncoding(withAllowedCharacters: CharacterSet) -> String?](/documentation/swift/stringprotocol/addingpercentencoding(withallowedcharacters:))
- [func addingPercentEscapes(using: String.Encoding) -> String?](/documentation/swift/stringprotocol/addingpercentescapes(using:))
- [func appending(some StringProtocol) -> String](/documentation/swift/stringprotocol/appending(_:))
- [func appendingFormat<T>(T, any CVarArg...) -> String](/documentation/swift/stringprotocol/appendingformat(_:_:))
- [func applyingTransform(StringTransform, reverse: Bool) -> String?](/documentation/swift/stringprotocol/applyingtransform(_:reverse:))
- [func cString(using: String.Encoding) -> [CChar]?](/documentation/swift/stringprotocol/cstring(using:))
- [func canBeConverted(to: String.Encoding) -> Bool](/documentation/swift/stringprotocol/canbeconverted(to:))
- [func capitalized(with: Locale?) -> String](/documentation/swift/stringprotocol/capitalized(with:))
- [func caseInsensitiveCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/caseinsensitivecompare(_:))
- [func commonPrefix<T>(with: T, options: String.CompareOptions) -> String](/documentation/swift/stringprotocol/commonprefix(with:options:))
- [func compare<T>(T, options: String.CompareOptions, range: Range<Self.Index>?, locale: Locale?) -> ComparisonResult](/documentation/swift/stringprotocol/compare(_:options:range:locale:))
- [func completePath(into: UnsafeMutablePointer<String>?, caseSensitive: Bool, matchesInto: UnsafeMutablePointer<[String]>?, filterTypes: [String]?) -> Int](/documentation/swift/stringprotocol/completepath(into:casesensitive:matchesinto:filtertypes:))
- [func components(separatedBy: CharacterSet) -> [String]](/documentation/swift/stringprotocol/components(separatedby:)-4j26n)
- [func components<T>(separatedBy: T) -> [String]](/documentation/swift/stringprotocol/components(separatedby:)-8gl9t)
- [func contains<T>(T) -> Bool](/documentation/swift/stringprotocol/contains(_:)-40kbf)
- [func contains(String) -> Bool](/documentation/swift/stringprotocol/contains(_:)-78f5t)
- [func contains(Substring) -> Bool](/documentation/swift/stringprotocol/contains(_:)-78p35)
- [func data(using: String.Encoding, allowLossyConversion: Bool) -> Data?](/documentation/swift/stringprotocol/data(using:allowlossyconversion:))
- [func dataDetectorMatches(DataDetector.MatchType, options: DataDetector.Options) -> some AsyncSequence<DataDetector.Match, Never>
](/documentation/swift/stringprotocol/datadetectormatches(_:options:))
- [func enumerateLines(invoking: (String, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratelines(invoking:))
- [func enumerateLinguisticTags<T, R>(in: R, scheme: T, options: NSLinguisticTagger.Options, orthography: NSOrthography?, invoking: (String, Range<Self.Index>, Range<Self.Index>, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratelinguistictags(in:scheme:options:orthography:invoking:))
- [func enumerateSubstrings<R>(in: R, options: String.EnumerationOptions, (String?, Range<Self.Index>, Range<Self.Index>, inout Bool) -> Void)](/documentation/swift/stringprotocol/enumeratesubstrings(in:options:_:))
- [func folding(options: String.CompareOptions, locale: Locale?) -> String](/documentation/swift/stringprotocol/folding(options:locale:))
- [func getBytes<R>(inout [UInt8], maxLength: Int, usedLength: UnsafeMutablePointer<Int>, encoding: String.Encoding, options: String.EncodingConversionOptions, range: R, remaining: UnsafeMutablePointer<Range<Self.Index>>) -> Bool](/documentation/swift/stringprotocol/getbytes(_:maxlength:usedlength:encoding:options:range:remaining:))
- [func getCString(inout [CChar], maxLength: Int, encoding: String.Encoding) -> Bool](/documentation/swift/stringprotocol/getcstring(_:maxlength:encoding:))
- [func getLineStart(UnsafeMutablePointer<Self.Index>, end: UnsafeMutablePointer<Self.Index>, contentsEnd: UnsafeMutablePointer<Self.Index>, for: some RangeExpression<String.Index>)](/documentation/swift/stringprotocol/getlinestart(_:end:contentsend:for:))
- [func getParagraphStart(UnsafeMutablePointer<Self.Index>, end: UnsafeMutablePointer<Self.Index>, contentsEnd: UnsafeMutablePointer<Self.Index>, for: some RangeExpression<String.Index>)](/documentation/swift/stringprotocol/getparagraphstart(_:end:contentsend:for:))
- [func hasPrefix(String) -> Bool](/documentation/swift/stringprotocol/hasprefix(_:))

###### StringProtocol Implementations

- [func hasPrefix<Prefix>(Prefix) -> Bool](/documentation/swift/stringprotocol/hasprefix(_:)-9c8b6)
- [func hasSuffix(String) -> Bool](/documentation/swift/stringprotocol/hassuffix(_:))

###### StringProtocol Implementations

- [func hasSuffix<Suffix>(Suffix) -> Bool](/documentation/swift/stringprotocol/hassuffix(_:)-13eus)
- [func lengthOfBytes(using: String.Encoding) -> Int](/documentation/swift/stringprotocol/lengthofbytes(using:))
- [func lineRange(for: some RangeExpression<String.Index>) -> Range<Self.Index>](/documentation/swift/stringprotocol/linerange(for:))
- [func linguisticTags<T, R>(in: R, scheme: T, options: NSLinguisticTagger.Options, orthography: NSOrthography?, tokenRanges: UnsafeMutablePointer<[Range<Self.Index>]>?) -> [String]](/documentation/swift/stringprotocol/linguistictags(in:scheme:options:orthography:tokenranges:))
- [func localizedCaseInsensitiveCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedcaseinsensitivecompare(_:))
- [func localizedCaseInsensitiveContains<T>(T) -> Bool](/documentation/swift/stringprotocol/localizedcaseinsensitivecontains(_:))
- [func localizedCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedcompare(_:))
- [func localizedStandardCompare<T>(T) -> ComparisonResult](/documentation/swift/stringprotocol/localizedstandardcompare(_:))
- [func localizedStandardContains<T>(T) -> Bool](/documentation/swift/stringprotocol/localizedstandardcontains(_:))
- [func localizedStandardRange<T>(of: T) -> Range<Self.Index>?](/documentation/swift/stringprotocol/localizedstandardrange(of:))
- [func lowercased() -> String](/documentation/swift/stringprotocol/lowercased())
- [func lowercased(with: Locale?) -> String](/documentation/swift/stringprotocol/lowercased(with:))
- [func maximumLengthOfBytes(using: String.Encoding) -> Int](/documentation/swift/stringprotocol/maximumlengthofbytes(using:))
- [func padding<T>(toLength: Int, withPad: T, startingAt: Int) -> String](/documentation/swift/stringprotocol/padding(tolength:withpad:startingat:))
- [func paragraphRange(for: some RangeExpression<String.Index>) -> Range<Self.Index>](/documentation/swift/stringprotocol/paragraphrange(for:))
- [func propertyList() -> Any](/documentation/swift/stringprotocol/propertylist())
- [func propertyListFromStringsFileFormat() -> [String : String]](/documentation/swift/stringprotocol/propertylistfromstringsfileformat())
- [func range<T>(of: T, options: String.CompareOptions, range: Range<Self.Index>?, locale: Locale?) -> Range<Self.Index>?](/documentation/swift/stringprotocol/range(of:options:range:locale:))
- [func rangeOfCharacter(from: CharacterSet, options: String.CompareOptions, range: Range<Self.Index>?) -> Range<Self.Index>?](/documentation/swift/stringprotocol/rangeofcharacter(from:options:range:))
- [func rangeOfComposedCharacterSequence(at: Self.Index) -> Range<Self.Index>](/documentation/swift/stringprotocol/rangeofcomposedcharactersequence(at:))
- [func rangeOfComposedCharacterSequences<R>(for: R) -> Range<Self.Index>](/documentation/swift/stringprotocol/rangeofcomposedcharactersequences(for:))
- [func replacingCharacters<T, R>(in: R, with: T) -> String](/documentation/swift/stringprotocol/replacingcharacters(in:with:))
- [func replacingOccurrences<Target, Replacement>(of: Target, with: Replacement, options: String.CompareOptions, range: Range<Self.Index>?) -> String](/documentation/swift/stringprotocol/replacingoccurrences(of:with:options:range:))
- [func replacingPercentEscapes(using: String.Encoding) -> String?](/documentation/swift/stringprotocol/replacingpercentescapes(using:))
- [func split(separator: String, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Substring]](/documentation/swift/stringprotocol/split(separator:maxsplits:omittingemptysubsequences:)-7mfus)
- [func split(separator: Substring, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Substring]](/documentation/swift/stringprotocol/split(separator:maxsplits:omittingemptysubsequences:)-8wzc1)
- [func substring(from: Self.Index) -> String](/documentation/swift/stringprotocol/substring(from:))
- [func substring(to: Self.Index) -> String](/documentation/swift/stringprotocol/substring(to:))
- [func substring(with: Range<Self.Index>) -> String](/documentation/swift/stringprotocol/substring(with:))
- [func trimmingCharacters(in: CharacterSet) -> String](/documentation/swift/stringprotocol/trimmingcharacters(in:))
- [func uppercased() -> String](/documentation/swift/stringprotocol/uppercased())
- [func uppercased(with: Locale?) -> String](/documentation/swift/stringprotocol/uppercased(with:))
- [func withCString<Result>((UnsafePointer<CChar>) throws -> Result) rethrows -> Result](/documentation/swift/stringprotocol/withcstring(_:))
- [func withCString<Result, Encoding>(encodedAs: Encoding.Type, (UnsafePointer<Encoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/stringprotocol/withcstring(encodedas:_:))
- [func write(to: URL, atomically: Bool, encoding: String.Encoding) throws](/documentation/swift/stringprotocol/write(to:atomically:encoding:))
- [func write<T>(toFile: T, atomically: Bool, encoding: String.Encoding) throws](/documentation/swift/stringprotocol/write(tofile:atomically:encoding:))
- [String.Index](/documentation/swift/string/index)

###### Initializers

- [init?(String.Index, within: String.UTF16View)](/documentation/swift/string/index/init(_:within:)-2txd4)
- [init?(String.Index, within: String)](/documentation/swift/string/index/init(_:within:)-2u3iq)
- [init?<S>(AttributedString.Index, within: S)](/documentation/swift/string/index/init(_:within:)-379kg)
- [init?<S>(String.Index, within: S)](/documentation/swift/string/index/init(_:within:)-3eir6)
- [init?(String.Index, within: String.UTF8View)](/documentation/swift/string/index/init(_:within:)-5lb6l)
- [init?(String.Index, within: String.UnicodeScalarView)](/documentation/swift/string/index/init(_:within:)-7e1rw)
- [init(encodedOffset: Int)](/documentation/swift/string/index/init(encodedoffset:))
- [init<S>(utf16Offset: Int, in: S)](/documentation/swift/string/index/init(utf16offset:in:))

###### Instance Properties

- [var encodedOffset: Int](/documentation/swift/string/index/encodedoffset)

###### Instance Methods

- [func samePosition(in: String.UTF8View) -> String.UTF8View.Index?](/documentation/swift/string/index/sameposition(in:)-3mz95)
- [func samePosition(in: String.UnicodeScalarView) -> String.UnicodeScalarIndex?](/documentation/swift/string/index/sameposition(in:)-4yeo1)
- [func samePosition(in: String) -> String.Index?](/documentation/swift/string/index/sameposition(in:)-6oxfv)
- [func samePosition(in: String.UTF16View) -> String.UTF16View.Index?](/documentation/swift/string/index/sameposition(in:)-86cct)
- [func utf16Offset<S>(in: S) -> Int](/documentation/swift/string/index/utf16offset(in:))

###### Default Implementations

- [Comparable Implementations](/documentation/swift/string/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/index/'...(_:)-12nb2)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/index/'...(_:)-9mt9j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/index/'.._(_:_:))
- [static func < (String.Index, String.Index) -> Bool](/documentation/swift/string/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/index/_(_:_:)-7org4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-6jasp)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-88947)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/index/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/index/debugdescription)
- [Equatable Implementations](/documentation/swift/string/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/index/!=(_:_:))
- [static func == (String.Index, String.Index) -> Bool](/documentation/swift/string/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/string/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/string/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/index/hash(into:))
- [String.UnicodeScalarView](/documentation/swift/string/unicodescalarview)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/unicodescalarview/customplaygroundquicklook)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/unicodescalarview/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/endindex)
- [var last: Self.Element?](/documentation/swift/string/unicodescalarview/last)
- [var startIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:by:))
- [func distance(from: String.UnicodeScalarView.Index, to: String.UnicodeScalarView.Index) -> Int](/documentation/swift/string/unicodescalarview/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(before:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(_:offsetby:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int, limitedBy: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index?](/documentation/swift/string/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(after:))
- [func index(before: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(_:))

###### Subscripts

- [subscript(String.UnicodeScalarView.Index) -> Unicode.Scalar](/documentation/swift/string/unicodescalarview/subscript(_:)-2op53)
- [subscript(Range<String.UnicodeScalarView.Index>) -> String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-6aml8)
- [Collection Implementations](/documentation/swift/string/unicodescalarview/collection-implementations)

###### Structures

- [String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/iterator)

###### Instance Methods

- [func next() -> Unicode.Scalar?](/documentation/swift/string/unicodescalarview/iterator/next())

###### Type Aliases

- [String.UnicodeScalarView.Iterator.Element](/documentation/swift/string/unicodescalarview/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/unicodescalarview/count)
- [var first: Self.Element?](/documentation/swift/string/unicodescalarview/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/unicodescalarview/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/unicodescalarview/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(where:))
- [func makeIterator() -> String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-56zez)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(from:))

###### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-4i2sy)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/subscript(_:)-gee0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-qk0r)

###### Type Aliases

- [String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index)
- [String.UnicodeScalarView.Indices](/documentation/swift/string/unicodescalarview/indices)
- [String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/unicodescalarview/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/unicodescalarview/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/unicodescalarview/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/unicodescalarview/description)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/unicodescalarview/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-61ucr)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-8g18j)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-929xp)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/unicodescalarview/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/string/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/string/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/unicodescalarview/init(repeating:count:))

###### Instance Methods

- [func append(Unicode.Scalar)](/documentation/swift/string/unicodescalarview/append(_:))
- [func append(Self.Element)](/documentation/swift/string/unicodescalarview/append(_:)-5uy8n)
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:)-ton6)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/string/unicodescalarview/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/unicodescalarview/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/unicodescalarview/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/unicodescalarview/removelast())
- [func removeLast(Int)](/documentation/swift/string/unicodescalarview/removelast(_:))
- [func removeSubrange<R>(R)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-62wlg)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-6rv02)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.UnicodeScalarView.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-5z8uw)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-914bq)
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:)-4ygoa)
- [Sequence Implementations](/documentation/swift/string/unicodescalarview/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/unicodescalarview/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/flatmap(_:)-2t5f9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/unicodescalarview/flatmap(_:)-56uyh)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-198wk)
- [func max() -> Self.Element?](/documentation/swift/string/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/unicodescalarview/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UnicodeScalarView.Element](/documentation/swift/string/unicodescalarview/element)
- [String.UTF16View](/documentation/swift/string/utf16view)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf16view/customplaygroundquicklook)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/endindex)
- [var last: Self.Element?](/documentation/swift/string/utf16view/last)
- [var startIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:by:))
- [func distance(from: String.UTF16View.Index, to: String.UTF16View.Index) -> Int](/documentation/swift/string/utf16view/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf16view/formindex(before:))
- [func index(String.UTF16View.Index, offsetBy: Int) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(_:offsetby:))
- [func index(String.UTF16View.Index, offsetBy: Int, limitedBy: String.UTF16View.Index) -> String.UTF16View.Index?](/documentation/swift/string/utf16view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(after:))
- [func index(before: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(_:))

###### Subscripts

- [subscript(Range<String.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/string/utf16view/subscript(_:)-5fneh)
- [subscript(String.UTF16View.Index) -> UTF16.CodeUnit](/documentation/swift/string/utf16view/subscript(_:)-5ta1h)
- [Collection Implementations](/documentation/swift/string/utf16view/collection-implementations)

###### Structures

- [String.UTF16View.Iterator](/documentation/swift/string/utf16view/iterator)

###### Instance Methods

- [func next() -> UInt16?](/documentation/swift/string/utf16view/iterator/next())

###### Type Aliases

- [String.UTF16View.Iterator.Element](/documentation/swift/string/utf16view/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf16view/count)
- [var first: Self.Element?](/documentation/swift/string/utf16view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf16view/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/utf16view/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf16view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(where:))
- [func makeIterator() -> String.UTF16View.Iterator](/documentation/swift/string/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-28kz8)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf16view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-2785k)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-5x88v)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/subscript(_:)-6mt4v)

###### Type Aliases

- [String.UTF16View.Index](/documentation/swift/string/utf16view/index)
- [String.UTF16View.Indices](/documentation/swift/string/utf16view/indices)
- [String.UTF16View.SubSequence](/documentation/swift/string/utf16view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf16view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf16view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf16view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf16view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf16view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf16view/description)
- [Sequence Implementations](/documentation/swift/string/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf16view/flatmap(_:)-4cccc)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/flatmap(_:)-5kmpj)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-7ggk1)
- [func max() -> Self.Element?](/documentation/swift/string/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UTF16View.Element](/documentation/swift/string/utf16view/element)
- [String.UTF8View](/documentation/swift/string/utf8view)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf8view/customplaygroundquicklook)
- [var span: Span<UTF8.CodeUnit>](/documentation/swift/string/utf8view/span)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/string/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf8view/formindex(before:))
- [func index(before: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/string/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf8view/count)
- [var endIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/string/utf8view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf8view/isempty)
- [var startIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/string/utf8view/underestimatedcount)

###### Instance Methods

- [func distance(from: String.UTF8View.Index, to: String.UTF8View.Index) -> Int](/documentation/swift/string/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf8view/formindex(after:))
- [func index(String.UTF8View.Index, offsetBy: Int) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(_:offsetby:))
- [func index(String.UTF8View.Index, offsetBy: Int, limitedBy: String.UTF8View.Index) -> String.UTF8View.Index?](/documentation/swift/string/utf8view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/string/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-4exvs)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf8view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-227fo)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/subscript(_:)-25vyw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3gfsv)
- [subscript(Range<String.UTF8View.Index>) -> String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3wo7k)
- [subscript(String.UTF8View.Index) -> UTF8.CodeUnit](/documentation/swift/string/utf8view/subscript(_:)-6nubh)

###### Type Aliases

- [String.UTF8View.Index](/documentation/swift/string/utf8view/index)
- [String.UTF8View.Indices](/documentation/swift/string/utf8view/indices)
- [String.UTF8View.Iterator](/documentation/swift/string/utf8view/iterator)
- [String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf8view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf8view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf8view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf8view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf8view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf8view/description)
- [Sequence Implementations](/documentation/swift/string/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf8view/flatmap(_:)-3i8lk)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/flatmap(_:)-83zdf)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-6zfwg)
- [func max() -> Self.Element?](/documentation/swift/string/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<String.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:)-3fk9a)

###### Type Aliases

- [String.UTF8View.Element](/documentation/swift/string/utf8view/element)
- [String.Iterator](/documentation/swift/string/iterator)

###### Instance Methods

- [func next() -> Character?](/documentation/swift/string/iterator/next())

###### Type Aliases

- [String.Iterator.Element](/documentation/swift/string/iterator/element)
- [String.Encoding](/documentation/swift/string/encoding)

###### Initializers

- [init?(ianaName: String)](/documentation/swift/string/encoding/init(iananame:))

###### Instance Properties

- [var ianaName: String?](/documentation/swift/string/encoding/iananame)

###### Type Properties

- [static let ascii: String.Encoding](/documentation/swift/string/encoding/ascii)
- [static let iso2022JP: String.Encoding](/documentation/swift/string/encoding/iso2022jp)
- [static let isoLatin1: String.Encoding](/documentation/swift/string/encoding/isolatin1)
- [static let isoLatin2: String.Encoding](/documentation/swift/string/encoding/isolatin2)
- [static let japaneseEUC: String.Encoding](/documentation/swift/string/encoding/japaneseeuc)
- [static let macOSRoman: String.Encoding](/documentation/swift/string/encoding/macosroman)
- [static let nextstep: String.Encoding](/documentation/swift/string/encoding/nextstep)
- [static let nonLossyASCII: String.Encoding](/documentation/swift/string/encoding/nonlossyascii)
- [static let shiftJIS: String.Encoding](/documentation/swift/string/encoding/shiftjis)
- [static let symbol: String.Encoding](/documentation/swift/string/encoding/symbol)
- [static let unicode: String.Encoding](/documentation/swift/string/encoding/unicode)
- [static let utf16: String.Encoding](/documentation/swift/string/encoding/utf16)
- [static let utf16BigEndian: String.Encoding](/documentation/swift/string/encoding/utf16bigendian)
- [static let utf16LittleEndian: String.Encoding](/documentation/swift/string/encoding/utf16littleendian)
- [static let utf32: String.Encoding](/documentation/swift/string/encoding/utf32)
- [static let utf32BigEndian: String.Encoding](/documentation/swift/string/encoding/utf32bigendian)
- [static let utf32LittleEndian: String.Encoding](/documentation/swift/string/encoding/utf32littleendian)
- [static let utf8: String.Encoding](/documentation/swift/string/encoding/utf8)
- [static let windowsCP1250: String.Encoding](/documentation/swift/string/encoding/windowscp1250)
- [static let windowsCP1251: String.Encoding](/documentation/swift/string/encoding/windowscp1251)
- [static let windowsCP1252: String.Encoding](/documentation/swift/string/encoding/windowscp1252)
- [static let windowsCP1253: String.Encoding](/documentation/swift/string/encoding/windowscp1253)
- [static let windowsCP1254: String.Encoding](/documentation/swift/string/encoding/windowscp1254)

##### Structures

- [String.Comparator](/documentation/swift/string/comparator)

###### Initializers

- [init(String.StandardComparator)](/documentation/swift/string/comparator/init(_:))
- [init(options: String.CompareOptions, locale: Locale?, order: SortOrder)](/documentation/swift/string/comparator/init(options:locale:order:))

###### Instance Properties

- [let locale: Locale?](/documentation/swift/string/comparator/locale)
- [let options: String.CompareOptions](/documentation/swift/string/comparator/options)
- [String.IntentInputOptions](/documentation/swift/string/intentinputoptions)

###### Initializers

- [init(keyboardType: String.IntentInputOptions.KeyboardType, capitalizationType: String.IntentInputOptions.CapitalizationType, multiline: Bool, autocorrect: Bool, smartQuotes: Bool, smartDashes: Bool)](/documentation/swift/string/intentinputoptions/init(keyboardtype:capitalizationtype:multiline:autocorrect:smartquotes:smartdashes:))

###### Instance Properties

- [var autocorrect: Bool](/documentation/swift/string/intentinputoptions/autocorrect)
- [var capitalizationType: String.IntentInputOptions.CapitalizationType](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.property)
- [var keyboardType: String.IntentInputOptions.KeyboardType](/documentation/swift/string/intentinputoptions/keyboardtype-swift.property)
- [var multiline: Bool](/documentation/swift/string/intentinputoptions/multiline)
- [var smartDashes: Bool](/documentation/swift/string/intentinputoptions/smartdashes)
- [var smartQuotes: Bool](/documentation/swift/string/intentinputoptions/smartquotes)

###### Enumerations

- [String.IntentInputOptions.CapitalizationType](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum)

###### Enumeration Cases

- [case allCharacters](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/allcharacters)
- [case none](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/none)
- [case sentences](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/sentences)
- [case words](/documentation/swift/string/intentinputoptions/capitalizationtype-swift.enum/words)
- [String.IntentInputOptions.KeyboardType](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum)

###### Enumeration Cases

- [case URL](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/url)
- [case asciiCapable](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/asciicapable)
- [case `default`](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/default)
- [case numberPad](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/numberpad)
- [case numbersAndPunctuation](/documentation/swift/string/intentinputoptions/keyboardtype-swift.enum/numbersandpunctuation)
- [String.StandardComparator](/documentation/swift/string/standardcomparator)

###### Initializers

- [init(String.StandardComparator, order: SortOrder)](/documentation/swift/string/standardcomparator/init(_:order:))

###### Type Properties

- [static let lexical: String.StandardComparator](/documentation/swift/string/standardcomparator/lexical)
- [static let localized: String.StandardComparator](/documentation/swift/string/standardcomparator/localized)
- [static let localizedStandard: String.StandardComparator](/documentation/swift/string/standardcomparator/localizedstandard)

##### Initializers

- [init(URL.Template.VariableName)](/documentation/swift/string/init(_:)-1oup7)
- [init(Slice<AttributedString.CharacterView>)](/documentation/swift/string/init(_:)-5ruqx)
- [init(cString: inout CChar)](/documentation/swift/string/init(cstring:)-1gatt)
- [init(cString: inout UInt8)](/documentation/swift/string/init(cstring:)-295hy)
- [init(cString: [UInt8])](/documentation/swift/string/init(cstring:)-472zs)
- [init(cString: [CChar])](/documentation/swift/string/init(cstring:)-54awj)
- [init(cString: String)](/documentation/swift/string/init(cstring:)-cgw2)
- [init?(cString: inout CChar, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-358mb)
- [init?(cString: String, encoding: String.Encoding)](/documentation/swift/string/init(cstring:encoding:)-4ydt6)
- [init(copying: UTF8Span)](/documentation/swift/string/init(copying:))
- [init(decoding: FilePath.Root)](/documentation/swift/string/init(decoding:)-364r2)
- [init(decoding: FilePath.Component)](/documentation/swift/string/init(decoding:)-9xh58)
- [init<Encoding>(decodingCString: String, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-2zmjc)
- [init<Encoding>(decodingCString: inout Encoding.CodeUnit, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-534rp)
- [init(describingForTest: some Any)](/documentation/swift/string/init(describingfortest:))
- [init(platformString: String)](/documentation/swift/string/init(platformstring:)-341sr)
- [init(platformString: inout CInterop.PlatformChar)](/documentation/swift/string/init(platformstring:)-36ydz)
- [init(platformString: UnsafePointer<CInterop.PlatformChar>)](/documentation/swift/string/init(platformstring:)-5j2y3)
- [init(platformString: [CInterop.PlatformChar])](/documentation/swift/string/init(platformstring:)-7hjry)
- [init?(utf8String: String)](/documentation/swift/string/init(utf8string:)-5v4k8)
- [init?(utf8String: inout CChar)](/documentation/swift/string/init(utf8string:)-7t980)
- [init?(validating: FilePath.Root)](/documentation/swift/string/init(validating:)-6r2j9)
- [init?(validating: FilePath.Component)](/documentation/swift/string/init(validating:)-95n8b)
- [init?(validating: FilePath)](/documentation/swift/string/init(validating:)-9dx2b)
- [init?(validatingCString: inout CChar)](/documentation/swift/string/init(validatingcstring:)-1x5p0)
- [init?(validatingCString: String)](/documentation/swift/string/init(validatingcstring:)-7gjlg)
- [init?(validatingPlatformString: UnsafePointer<CInterop.PlatformChar>)](/documentation/swift/string/init(validatingplatformstring:)-2920w)
- [init?(validatingPlatformString: inout CInterop.PlatformChar)](/documentation/swift/string/init(validatingplatformstring:)-8x1kn)
- [init?(validatingPlatformString: [CInterop.PlatformChar])](/documentation/swift/string/init(validatingplatformstring:)-91z6f)
- [init?(validatingPlatformString: String)](/documentation/swift/string/init(validatingplatformstring:)-go44)
- [init?(validatingUTF8: [CChar])](/documentation/swift/string/init(validatingutf8:)-2m5lb)
- [init?(validatingUTF8: inout CChar)](/documentation/swift/string/init(validatingutf8:)-2o7g5)
- [init?(validatingUTF8: String)](/documentation/swift/string/init(validatingutf8:)-8awk3)

##### Instance Properties

- [var characters: String](/documentation/swift/string/characters)
- [var utf8Span: UTF8Span](/documentation/swift/string/utf8span)

##### Instance Methods

- [func data(using: String.Encoding, allowLossyConversion: Bool) -> Data?](/documentation/swift/string/data(using:allowlossyconversion:))
- [func withMutableCharacters<R>((inout String) -> R) -> R](/documentation/swift/string/withmutablecharacters(_:))
- [func withPlatformString<Result>((UnsafePointer<CInterop.PlatformChar>) throws -> Result) rethrows -> Result](/documentation/swift/string/withplatformstring(_:))

##### Type Aliases

- [String.CharacterView](/documentation/swift/string/characterview)
- [String.CompareOptions](/documentation/swift/string/compareoptions)
- [String.EncodingConversionOptions](/documentation/swift/string/encodingconversionoptions)
- [String.EnumerationOptions](/documentation/swift/string/enumerationoptions)
- [String.IndexDistance](/documentation/swift/string/indexdistance)
- [String.Output](/documentation/swift/string/output)
- [String.Specification](/documentation/swift/string/specification)
- [String.UnicodeScalarIndex](/documentation/swift/string/unicodescalarindex)
- [String.UnwrappedType](/documentation/swift/string/unwrappedtype)
- [String.ValueType](/documentation/swift/string/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/string/defaultresolverspecification)

##### Type Methods

- [static func decodeCString<Encoding>(inout Encoding.CodeUnit, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-2l7u6)
- [static func decodeCString<Encoding>([Encoding.CodeUnit], as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-3mvvy)
- [static func decodeCString<Encoding>(String, as: Encoding.Type, repairingInvalidCodeUnits: Bool) -> (result: String, repairsMade: Bool)?](/documentation/swift/string/decodecstring(_:as:repairinginvalidcodeunits:)-9pdmv)

##### Default Implementations

- [Attachable Implementations](/documentation/swift/string/attachable-implementations)

###### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<String>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/string/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/string/bidirectionalcollection-implementations)

###### Structures

- [String.Index](/documentation/swift/string/index)

###### Initializers

- [init?(String.Index, within: String.UTF16View)](/documentation/swift/string/index/init(_:within:)-2txd4)
- [init?(String.Index, within: String)](/documentation/swift/string/index/init(_:within:)-2u3iq)
- [init?<S>(AttributedString.Index, within: S)](/documentation/swift/string/index/init(_:within:)-379kg)
- [init?<S>(String.Index, within: S)](/documentation/swift/string/index/init(_:within:)-3eir6)
- [init?(String.Index, within: String.UTF8View)](/documentation/swift/string/index/init(_:within:)-5lb6l)
- [init?(String.Index, within: String.UnicodeScalarView)](/documentation/swift/string/index/init(_:within:)-7e1rw)
- [init(encodedOffset: Int)](/documentation/swift/string/index/init(encodedoffset:))
- [init<S>(utf16Offset: Int, in: S)](/documentation/swift/string/index/init(utf16offset:in:))

###### Instance Properties

- [var encodedOffset: Int](/documentation/swift/string/index/encodedoffset)

###### Instance Methods

- [func samePosition(in: String.UTF8View) -> String.UTF8View.Index?](/documentation/swift/string/index/sameposition(in:)-3mz95)
- [func samePosition(in: String.UnicodeScalarView) -> String.UnicodeScalarIndex?](/documentation/swift/string/index/sameposition(in:)-4yeo1)
- [func samePosition(in: String) -> String.Index?](/documentation/swift/string/index/sameposition(in:)-6oxfv)
- [func samePosition(in: String.UTF16View) -> String.UTF16View.Index?](/documentation/swift/string/index/sameposition(in:)-86cct)
- [func utf16Offset<S>(in: S) -> Int](/documentation/swift/string/index/utf16offset(in:))

###### Default Implementations

- [Comparable Implementations](/documentation/swift/string/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/index/'...(_:)-12nb2)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/index/'...(_:)-9mt9j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/index/'.._(_:_:))
- [static func < (String.Index, String.Index) -> Bool](/documentation/swift/string/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/index/_(_:_:)-7org4)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-6jasp)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/index/_=(_:_:)-88947)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/index/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/index/debugdescription)
- [Equatable Implementations](/documentation/swift/string/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/index/!=(_:_:))
- [static func == (String.Index, String.Index) -> Bool](/documentation/swift/string/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/string/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/string/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/index/hash(into:))

###### Instance Properties

- [var endIndex: String.Index](/documentation/swift/string/endindex)
- [var last: Self.Element?](/documentation/swift/string/last)
- [var startIndex: String.Index](/documentation/swift/string/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/difference(from:by:))
- [func distance(from: String.Index, to: String.Index) -> Int](/documentation/swift/string/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/formindex(before:))
- [func index(String.Index, offsetBy: Int) -> String.Index](/documentation/swift/string/index(_:offsetby:))
- [func index(String.Index, offsetBy: Int, limitedBy: String.Index) -> String.Index?](/documentation/swift/string/index(_:offsetby:limitedby:))
- [func index(after: String.Index) -> String.Index](/documentation/swift/string/index(after:))
- [func index(before: String.Index) -> String.Index](/documentation/swift/string/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/suffix(_:))

###### Subscripts

- [subscript(Range<String.Index>) -> Substring](/documentation/swift/string/subscript(_:)-2so14)
- [subscript(String.Index) -> Character](/documentation/swift/string/subscript(_:)-lc0v)
- [CodingKeyRepresentable Implementations](/documentation/swift/string/codingkeyrepresentable-implementations)

###### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/string/init(codingkey:))

###### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/string/codingkey)
- [Collection Implementations](/documentation/swift/string/collection-implementations)

###### Structures

- [String.Iterator](/documentation/swift/string/iterator)

###### Instance Methods

- [func next() -> Character?](/documentation/swift/string/iterator/next())

###### Type Aliases

- [String.Iterator.Element](/documentation/swift/string/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/count)
- [var first: Self.Element?](/documentation/swift/string/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/indices(where:))
- [func makeIterator() -> String.Iterator](/documentation/swift/string/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/map(_:)-5p6pd)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/subscript(_:)-392on)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4al9c)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/subscript(_:)-4h7s3)

###### Type Aliases

- [String.Indices](/documentation/swift/string/indices)
- [String.SubSequence](/documentation/swift/string/subsequence)
- [Comparable Implementations](/documentation/swift/string/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/string/'...(_:)-4mm4o)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/string/'...(_:)-6ct5g)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/string/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/string/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/string/'.._(_:_:))
- [static func < (String, String) -> Bool](/documentation/swift/string/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/string/_(_:_:)-24u5x)
- [static func <= (Self, Self) -> Bool](/documentation/swift/string/_=(_:_:)-1ih6)
- [static func >= (Self, Self) -> Bool](/documentation/swift/string/_=(_:_:)-8lyim)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/description)
- [Decodable Implementations](/documentation/swift/string/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/string/init(from:))
- [Encodable Implementations](/documentation/swift/string/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/string/encode(to:))
- [Equatable Implementations](/documentation/swift/string/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/string/!=(_:_:)-1bb05)
- [static func == (String, String) -> Bool](/documentation/swift/string/==(_:_:))
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/string/expressiblebyextendedgraphemeclusterliteral-implementations)

###### Initializers

- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/string/init(unicodescalarliteral:))

###### Type Aliases

- [String.ExtendedGraphemeClusterLiteralType](/documentation/swift/string/extendedgraphemeclusterliteraltype)
- [ExpressibleByStringInterpolation Implementations](/documentation/swift/string/expressiblebystringinterpolation-implementations)

###### Initializers

- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:))
- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/string/init(stringinterpolation:)-62d9)

###### Type Aliases

- [String.StringInterpolation](/documentation/swift/string/stringinterpolation)
- [ExpressibleByStringLiteral Implementations](/documentation/swift/string/expressiblebystringliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/string/init(extendedgraphemeclusterliteral:))
- [init(stringLiteral: String)](/documentation/swift/string/init(stringliteral:))

###### Type Aliases

- [String.StringLiteralType](/documentation/swift/string/stringliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/string/expressiblebyunicodescalarliteral-implementations)

###### Type Aliases

- [String.UnicodeScalarLiteralType](/documentation/swift/string/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/string/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/string/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/string/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/string/losslessstringconvertible-implementations)

###### Initializers

- [init<S>(S)](/documentation/swift/string/init(_:)-50pwi)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/+(_:_:)-6h59y)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-9fm57)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/+(_:_:)-n329)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/+=(_:_:)-676gx)

###### Initializers

- [init<S>(S)](/documentation/swift/string/init(_:)-1ip93)
- [init<S>(S)](/documentation/swift/string/init(_:)-8og6g)
- [init(repeating: Character, count: Int)](/documentation/swift/string/init(repeating:count:)-11bpi)
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/init(repeating:count:)-5y5em)

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/string/append(_:)-1re5n)
- [func append(Character)](/documentation/swift/string/append(_:)-4xi3j)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-7est5)
- [func append<S>(contentsOf: S)](/documentation/swift/string/append(contentsof:)-9foms)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/filter(_:))
- [func insert(Character, at: String.Index)](/documentation/swift/string/insert(_:at:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/insert(_:at:)-88yqh)
- [func insert<S>(contentsOf: S, at: String.Index)](/documentation/swift/string/insert(contentsof:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/insert(contentsof:at:)-rdu9)
- [func popLast() -> Self.Element?](/documentation/swift/string/poplast())
- [func remove(at: String.Index) -> Character](/documentation/swift/string/remove(at:))
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/remove(at:)-5g0wm)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/removeall(keepingcapacity:)-6xw7h)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/removelast())
- [func removeLast(Int)](/documentation/swift/string/removelast(_:))
- [func removeSubrange(Range<String.Index>)](/documentation/swift/string/removesubrange(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/removesubrange(_:)-8maxn)
- [func removeSubrange<R>(R)](/documentation/swift/string/removesubrange(_:)-9twng)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/replacesubrange(_:with:)-3hkd6)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/replacesubrange(_:with:)-72947)
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/reservecapacity(_:)-8lw57)
- [Sequence Implementations](/documentation/swift/string/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/flatmap(_:)-6chuq)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/flatmap(_:)-i3m9)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/map(_:)-9jnnv)
- [func max() -> Self.Element?](/documentation/swift/string/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.Element](/documentation/swift/string/element)
- [StringProtocol Implementations](/documentation/swift/string/stringprotocol-implementations)

###### Structures

- [String.UTF16View](/documentation/swift/string/utf16view)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf16view/customplaygroundquicklook)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/endindex)
- [var last: Self.Element?](/documentation/swift/string/utf16view/last)
- [var startIndex: String.UTF16View.Index](/documentation/swift/string/utf16view/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf16view/difference(from:by:))
- [func distance(from: String.UTF16View.Index, to: String.UTF16View.Index) -> Int](/documentation/swift/string/utf16view/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf16view/formindex(before:))
- [func index(String.UTF16View.Index, offsetBy: Int) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(_:offsetby:))
- [func index(String.UTF16View.Index, offsetBy: Int, limitedBy: String.UTF16View.Index) -> String.UTF16View.Index?](/documentation/swift/string/utf16view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(after:))
- [func index(before: String.UTF16View.Index) -> String.UTF16View.Index](/documentation/swift/string/utf16view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(_:))

###### Subscripts

- [subscript(Range<String.UTF16View.Index>) -> Substring.UTF16View](/documentation/swift/string/utf16view/subscript(_:)-5fneh)
- [subscript(String.UTF16View.Index) -> UTF16.CodeUnit](/documentation/swift/string/utf16view/subscript(_:)-5ta1h)
- [Collection Implementations](/documentation/swift/string/utf16view/collection-implementations)

###### Structures

- [String.UTF16View.Iterator](/documentation/swift/string/utf16view/iterator)

###### Instance Methods

- [func next() -> UInt16?](/documentation/swift/string/utf16view/iterator/next())

###### Type Aliases

- [String.UTF16View.Iterator.Element](/documentation/swift/string/utf16view/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf16view/count)
- [var first: Self.Element?](/documentation/swift/string/utf16view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf16view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf16view/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/utf16view/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf16view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf16view/indices(where:))
- [func makeIterator() -> String.UTF16View.Iterator](/documentation/swift/string/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-28kz8)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf16view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf16view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-2785k)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf16view/subscript(_:)-5x88v)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf16view/subscript(_:)-6mt4v)

###### Type Aliases

- [String.UTF16View.Index](/documentation/swift/string/utf16view/index)
- [String.UTF16View.Indices](/documentation/swift/string/utf16view/indices)
- [String.UTF16View.SubSequence](/documentation/swift/string/utf16view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf16view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf16view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf16view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf16view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf16view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf16view/description)
- [Sequence Implementations](/documentation/swift/string/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf16view/flatmap(_:)-4cccc)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf16view/flatmap(_:)-5kmpj)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf16view/map(_:)-7ggk1)
- [func max() -> Self.Element?](/documentation/swift/string/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UTF16View.Element](/documentation/swift/string/utf16view/element)
- [String.UTF8View](/documentation/swift/string/utf8view)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/utf8view/customplaygroundquicklook)
- [var span: Span<UTF8.CodeUnit>](/documentation/swift/string/utf8view/span)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/string/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/utf8view/formindex(before:))
- [func index(before: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/string/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/string/utf8view/count)
- [var endIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/endindex)
- [var first: Self.Element?](/documentation/swift/string/utf8view/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/utf8view/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/utf8view/isempty)
- [var startIndex: String.UTF8View.Index](/documentation/swift/string/utf8view/startindex)
- [var underestimatedCount: Int](/documentation/swift/string/utf8view/underestimatedcount)

###### Instance Methods

- [func distance(from: String.UTF8View.Index, to: String.UTF8View.Index) -> Int](/documentation/swift/string/utf8view/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/utf8view/formindex(after:))
- [func index(String.UTF8View.Index, offsetBy: Int) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(_:offsetby:))
- [func index(String.UTF8View.Index, offsetBy: Int, limitedBy: String.UTF8View.Index) -> String.UTF8View.Index?](/documentation/swift/string/utf8view/index(_:offsetby:limitedby:))
- [func index(after: String.UTF8View.Index) -> String.UTF8View.Index](/documentation/swift/string/utf8view/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/string/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-4exvs)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/utf8view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/utf8view/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-227fo)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/utf8view/subscript(_:)-25vyw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3gfsv)
- [subscript(Range<String.UTF8View.Index>) -> String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subscript(_:)-3wo7k)
- [subscript(String.UTF8View.Index) -> UTF8.CodeUnit](/documentation/swift/string/utf8view/subscript(_:)-6nubh)

###### Type Aliases

- [String.UTF8View.Index](/documentation/swift/string/utf8view/index)
- [String.UTF8View.Indices](/documentation/swift/string/utf8view/indices)
- [String.UTF8View.Iterator](/documentation/swift/string/utf8view/iterator)
- [String.UTF8View.SubSequence](/documentation/swift/string/utf8view/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/utf8view/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/utf8view/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/utf8view/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/utf8view/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/utf8view/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/utf8view/description)
- [Sequence Implementations](/documentation/swift/string/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/utf8view/flatmap(_:)-3i8lk)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/utf8view/flatmap(_:)-83zdf)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/utf8view/map(_:)-6zfwg)
- [func max() -> Self.Element?](/documentation/swift/string/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<String.UTF8View.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/utf8view/withcontiguousstorageifavailable(_:)-3fk9a)

###### Type Aliases

- [String.UTF8View.Element](/documentation/swift/string/utf8view/element)
- [String.UnicodeScalarView](/documentation/swift/string/unicodescalarview)

###### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/string/unicodescalarview/customplaygroundquicklook)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/string/unicodescalarview/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/endindex)
- [var last: Self.Element?](/documentation/swift/string/unicodescalarview/last)
- [var startIndex: String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/string/unicodescalarview/difference(from:by:))
- [func distance(from: String.UnicodeScalarView.Index, to: String.UnicodeScalarView.Index) -> Int](/documentation/swift/string/unicodescalarview/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(before:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(_:offsetby:))
- [func index(String.UnicodeScalarView.Index, offsetBy: Int, limitedBy: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index?](/documentation/swift/string/unicodescalarview/index(_:offsetby:limitedby:))
- [func index(after: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(after:))
- [func index(before: String.UnicodeScalarView.Index) -> String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/string/unicodescalarview/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(_:))

###### Subscripts

- [subscript(String.UnicodeScalarView.Index) -> Unicode.Scalar](/documentation/swift/string/unicodescalarview/subscript(_:)-2op53)
- [subscript(Range<String.UnicodeScalarView.Index>) -> String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-6aml8)
- [Collection Implementations](/documentation/swift/string/unicodescalarview/collection-implementations)

###### Structures

- [String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/iterator)

###### Instance Methods

- [func next() -> Unicode.Scalar?](/documentation/swift/string/unicodescalarview/iterator/next())

###### Type Aliases

- [String.UnicodeScalarView.Iterator.Element](/documentation/swift/string/unicodescalarview/iterator/element)

###### Instance Properties

- [var count: Int](/documentation/swift/string/unicodescalarview/count)
- [var first: Self.Element?](/documentation/swift/string/unicodescalarview/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/string/unicodescalarview/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/string/unicodescalarview/isempty)
- [var underestimatedCount: Int](/documentation/swift/string/unicodescalarview/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/string/unicodescalarview/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/string/unicodescalarview/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/string/unicodescalarview/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/string/unicodescalarview/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/string/unicodescalarview/indices(where:))
- [func makeIterator() -> String.UnicodeScalarView.Iterator](/documentation/swift/string/unicodescalarview/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-56zez)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/string/unicodescalarview/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/string/unicodescalarview/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/string/unicodescalarview/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/suffix(from:))

###### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-4i2sy)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/string/unicodescalarview/subscript(_:)-gee0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/string/unicodescalarview/subscript(_:)-qk0r)

###### Type Aliases

- [String.UnicodeScalarView.Index](/documentation/swift/string/unicodescalarview/index)
- [String.UnicodeScalarView.Indices](/documentation/swift/string/unicodescalarview/indices)
- [String.UnicodeScalarView.SubSequence](/documentation/swift/string/unicodescalarview/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/string/unicodescalarview/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/string/unicodescalarview/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/string/unicodescalarview/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/string/unicodescalarview/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/string/unicodescalarview/description)
- [RangeReplaceableCollection Implementations](/documentation/swift/string/unicodescalarview/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-61ucr)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-8g18j)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/string/unicodescalarview/+(_:_:)-929xp)
- [static func += <Other>(inout Self, Other)](/documentation/swift/string/unicodescalarview/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/string/unicodescalarview/init())
- [init<S>(S)](/documentation/swift/string/unicodescalarview/init(_:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/string/unicodescalarview/init(repeating:count:))

###### Instance Methods

- [func append(Unicode.Scalar)](/documentation/swift/string/unicodescalarview/append(_:))
- [func append(Self.Element)](/documentation/swift/string/unicodescalarview/append(_:)-5uy8n)
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/string/unicodescalarview/append(contentsof:)-ton6)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/string/unicodescalarview/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/string/unicodescalarview/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/string/unicodescalarview/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/string/unicodescalarview/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/string/unicodescalarview/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/string/unicodescalarview/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/string/unicodescalarview/removeall(where:))
- [func removeFirst() -> Self.Element](/documentation/swift/string/unicodescalarview/removefirst())
- [func removeFirst(Int)](/documentation/swift/string/unicodescalarview/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/string/unicodescalarview/removelast())
- [func removeLast(Int)](/documentation/swift/string/unicodescalarview/removelast(_:))
- [func removeSubrange<R>(R)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-62wlg)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubrange(_:)-6rv02)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/string/unicodescalarview/removesubranges(_:))
- [func replaceSubrange<C>(Range<String.UnicodeScalarView.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-5z8uw)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/string/unicodescalarview/replacesubrange(_:with:)-914bq)
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:))
- [func reserveCapacity(Int)](/documentation/swift/string/unicodescalarview/reservecapacity(_:)-4ygoa)
- [Sequence Implementations](/documentation/swift/string/unicodescalarview/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/string/unicodescalarview/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/string/unicodescalarview/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/string/unicodescalarview/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/string/unicodescalarview/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/string/unicodescalarview/flatmap(_:)-2t5f9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/string/unicodescalarview/flatmap(_:)-56uyh)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/string/unicodescalarview/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/string/unicodescalarview/map(_:)-198wk)
- [func max() -> Self.Element?](/documentation/swift/string/unicodescalarview/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/max(by:))
- [func min() -> Self.Element?](/documentation/swift/string/unicodescalarview/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/string/unicodescalarview/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/string/unicodescalarview/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/string/unicodescalarview/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/string/unicodescalarview/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/string/unicodescalarview/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/string/unicodescalarview/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/string/unicodescalarview/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [String.UnicodeScalarView.Element](/documentation/swift/string/unicodescalarview/element)

###### Operators

- [static func != <RHS>(Self, RHS) -> Bool](/documentation/swift/string/!=(_:_:)-frzf)
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/string/==(_:_:)-8kzxf)
- [static func > <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_(_:_:)-6o7qv)
- [static func < <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_(_:_:)-8d1wy)
- [static func <= <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_=(_:_:)-5y22v)
- [static func >= <RHS>(Self, RHS) -> Bool](/documentation/swift/string/_=(_:_:)-nd86)

###### Initializers

- [init(cString: UnsafePointer<CChar>)](/documentation/swift/string/init(cstring:)-2p84k)
- [init<C, Encoding>(decoding: C, as: Encoding.Type)](/documentation/swift/string/init(decoding:as:))
- [init<Encoding>(decodingCString: UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)](/documentation/swift/string/init(decodingcstring:as:)-8yowf)

###### Instance Properties

- [var unicodeScalars: String.UnicodeScalarView](/documentation/swift/string/unicodescalars)
- [var utf16: String.UTF16View](/documentation/swift/string/utf16)
- [var utf8: String.UTF8View](/documentation/swift/string/utf8)

###### Instance Methods

- [func hasPrefix(String) -> Bool](/documentation/swift/string/hasprefix(_:))
- [func hasSuffix(String) -> Bool](/documentation/swift/string/hassuffix(_:))
- [func lowercased() -> String](/documentation/swift/string/lowercased())
- [func uppercased() -> String](/documentation/swift/string/uppercased())
- [func withCString<Result>((UnsafePointer<Int8>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(_:))
- [func withCString<Result, TargetEncoding>(encodedAs: TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) throws -> Result) rethrows -> Result](/documentation/swift/string/withcstring(encodedas:_:))
- [TextOutputStream Implementations](/documentation/swift/string/textoutputstream-implementations)

###### Instance Methods

- [func write(String)](/documentation/swift/string/write(_:))
- [TextOutputStreamable Implementations](/documentation/swift/string/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/string/write(to:))
- [Character](/documentation/swift/character)

##### Creating a Character

- [init(String)](/documentation/swift/character/init(_:)-6o1aq)

##### Writing to a Text Stream

- [func write<Target>(to: inout Target)](/documentation/swift/character/write(to:))

##### Comparing Characters

- [static func == (Character, Character) -> Bool](/documentation/swift/character/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/character/!=(_:_:))

##### Working with a Character’s Unicode Values

- [init(Unicode.Scalar)](/documentation/swift/character/init(_:)-8hq6x)
- [var unicodeScalars: Character.UnicodeScalarView](/documentation/swift/character/unicodescalars)
- [Character.UnicodeScalarView](/documentation/swift/character/unicodescalarview)
- [var isASCII: Bool](/documentation/swift/character/isascii)
- [var asciiValue: UInt8?](/documentation/swift/character/asciivalue)

##### Inspecting a Character

- [var isLetter: Bool](/documentation/swift/character/isletter)
- [var isPunctuation: Bool](/documentation/swift/character/ispunctuation)
- [var isNewline: Bool](/documentation/swift/character/isnewline)
- [var isWhitespace: Bool](/documentation/swift/character/iswhitespace)
- [var isSymbol: Bool](/documentation/swift/character/issymbol)
- [var isMathSymbol: Bool](/documentation/swift/character/ismathsymbol)
- [var isCurrencySymbol: Bool](/documentation/swift/character/iscurrencysymbol)

##### Checking a Character’s Case

- [var isCased: Bool](/documentation/swift/character/iscased)
- [var isUppercase: Bool](/documentation/swift/character/isuppercase)
- [func uppercased() -> String](/documentation/swift/character/uppercased())
- [var isLowercase: Bool](/documentation/swift/character/islowercase)
- [func lowercased() -> String](/documentation/swift/character/lowercased())

##### Checking a Character’s Numeric Properties

- [var isNumber: Bool](/documentation/swift/character/isnumber)
- [var isWholeNumber: Bool](/documentation/swift/character/iswholenumber)
- [var wholeNumberValue: Int?](/documentation/swift/character/wholenumbervalue)
- [var isHexDigit: Bool](/documentation/swift/character/ishexdigit)
- [var hexDigitValue: Int?](/documentation/swift/character/hexdigitvalue)

##### Creating a Range Expression

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/character/'...(_:_:))
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/character/'...(_:)-4mm4x)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/character/'...(_:)-6ct59)

##### Describing a Character

- [var description: String](/documentation/swift/character/description)
- [var debugDescription: String](/documentation/swift/character/debugdescription)
- [var customMirror: Mirror](/documentation/swift/character/custommirror)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/character/customplaygroundquicklook)
- [func hash(into: inout Hasher)](/documentation/swift/character/hash(into:))

##### Infrequently Used Functionality

- [init(extendedGraphemeClusterLiteral: Character)](/documentation/swift/character/init(extendedgraphemeclusterliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/character/init(unicodescalarliteral:))

##### Instance Properties

- [var utf16: Character.UTF16View](/documentation/swift/character/utf16)
- [var utf8: Character.UTF8View](/documentation/swift/character/utf8)

##### Type Aliases

- [Character.Output](/documentation/swift/character/output)
- [Character.UTF16View](/documentation/swift/character/utf16view)
- [Character.UTF8View](/documentation/swift/character/utf8view)

##### Default Implementations

- [Comparable Implementations](/documentation/swift/character/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/character/'...(_:)-4mm4x)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/character/'...(_:)-6ct59)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/character/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/character/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/character/'.._(_:_:))
- [static func < (Character, Character) -> Bool](/documentation/swift/character/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/character/_(_:_:)-24u5o)
- [static func <= (Self, Self) -> Bool](/documentation/swift/character/_=(_:_:)-1ihf)
- [static func >= (Self, Self) -> Bool](/documentation/swift/character/_=(_:_:)-8lyhz)
- [CustomDebugStringConvertible Implementations](/documentation/swift/character/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/character/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/character/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/character/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/character/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/character/description)
- [Equatable Implementations](/documentation/swift/character/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/character/!=(_:_:))
- [static func == (Character, Character) -> Bool](/documentation/swift/character/==(_:_:))
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/character/expressiblebyextendedgraphemeclusterliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: Character)](/documentation/swift/character/init(extendedgraphemeclusterliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/character/init(unicodescalarliteral:))

###### Type Aliases

- [Character.ExtendedGraphemeClusterLiteralType](/documentation/swift/character/extendedgraphemeclusterliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/character/expressiblebyunicodescalarliteral-implementations)

###### Type Aliases

- [Character.UnicodeScalarLiteralType](/documentation/swift/character/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/character/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/character/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/character/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/character/losslessstringconvertible-implementations)

###### Initializers

- [init(String)](/documentation/swift/character/init(_:)-6o1aq)
- [TextOutputStreamable Implementations](/documentation/swift/character/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/character/write(to:))

#### Regular Expressions

- [Regex](/documentation/swift/regex)

##### Structures

- [Regex.Match](/documentation/swift/regex/match)

###### Initializers

- [init<OtherOutput>(Regex<OtherOutput>.Match)](/documentation/swift/regex/match/init(_:))

###### Instance Properties

- [var output: Output](/documentation/swift/regex/match/output)
- [let range: Range<String.Index>](/documentation/swift/regex/match/range)

###### Subscripts

- [subscript(String) -> AnyRegexOutput.Element?](/documentation/swift/regex/match/subscript(_:)-9bzv4)
- [subscript<Capture>(Reference<Capture>) -> Capture](/documentation/swift/regex/match/subscript(_:)-vbin)
- [subscript<T>(dynamicMember _: KeyPath<Output, T>) -> T](/documentation/swift/regex/match/subscript(dynamicmember:))

##### Initializers

- [init(() -> some RegexComponent<Output>)](/documentation/swift/regex/init(_:)-4ef55)
- [init(String) throws](/documentation/swift/regex/init(_:)-52kg)
- [init<OtherOutput>(Regex<OtherOutput>)](/documentation/swift/regex/init(_:)-92siq)
- [init?(Regex<AnyRegexOutput>, as: Output.Type)](/documentation/swift/regex/init(_:as:)-2ucu7)
- [init(String, as: Output.Type) throws](/documentation/swift/regex/init(_:as:)-5z5nu)
- [init(verbatim: String)](/documentation/swift/regex/init(verbatim:))

##### Instance Properties

- [var regex: Regex<Output>](/documentation/swift/regex/regex)

##### Instance Methods

- [func anchorsMatchLineEndings(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/anchorsmatchlineendings(_:))
- [func asciiOnlyCharacterClasses(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/asciionlycharacterclasses(_:))
- [func asciiOnlyDigits(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/asciionlydigits(_:))
- [func asciiOnlyWhitespace(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/asciionlywhitespace(_:))
- [func asciiOnlyWordCharacters(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/asciionlywordcharacters(_:))
- [func contains(captureNamed: String) -> Bool](/documentation/swift/regex/contains(capturenamed:))
- [func dotMatchesNewlines(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/dotmatchesnewlines(_:))
- [func firstMatch(in: Substring) throws -> Regex<Output>.Match?](/documentation/swift/regex/firstmatch(in:)-45hz7)
- [func firstMatch(in: String) throws -> Regex<Output>.Match?](/documentation/swift/regex/firstmatch(in:)-6s8x0)
- [func ignoresCase(Bool) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/ignorescase(_:))
- [func matchingSemantics(RegexSemanticLevel) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/matchingsemantics(_:))
- [func prefixMatch(in: Substring) throws -> Regex<Output>.Match?](/documentation/swift/regex/prefixmatch(in:)-1an24)
- [func prefixMatch(in: String) throws -> Regex<Output>.Match?](/documentation/swift/regex/prefixmatch(in:)-5oh8i)
- [func repetitionBehavior(RegexRepetitionBehavior) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/repetitionbehavior(_:))
- [func wholeMatch(in: Substring) throws -> Regex<Output>.Match?](/documentation/swift/regex/wholematch(in:)-8hr88)
- [func wholeMatch(in: String) throws -> Regex<Output>.Match?](/documentation/swift/regex/wholematch(in:)-9do8t)
- [func wordBoundaryKind(RegexWordBoundaryKind) -> Regex<Regex<Output>.RegexOutput>](/documentation/swift/regex/wordboundarykind(_:))

##### Type Aliases

- [Regex.RegexOutput](/documentation/swift/regex/regexoutput)
- [RegexRepetitionBehavior](/documentation/swift/regexrepetitionbehavior)

##### Operators

- [static func == (RegexRepetitionBehavior, RegexRepetitionBehavior) -> Bool](/documentation/swift/regexrepetitionbehavior/==(_:_:))

##### Instance Properties

- [var hashValue: Int](/documentation/swift/regexrepetitionbehavior/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/regexrepetitionbehavior/hash(into:))

##### Type Properties

- [static var eager: RegexRepetitionBehavior](/documentation/swift/regexrepetitionbehavior/eager)
- [static var possessive: RegexRepetitionBehavior](/documentation/swift/regexrepetitionbehavior/possessive)
- [static var reluctant: RegexRepetitionBehavior](/documentation/swift/regexrepetitionbehavior/reluctant)

##### Default Implementations

- [Equatable Implementations](/documentation/swift/regexrepetitionbehavior/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/regexrepetitionbehavior/!=(_:_:))
- [RegexSemanticLevel](/documentation/swift/regexsemanticlevel)

##### Operators

- [static func == (RegexSemanticLevel, RegexSemanticLevel) -> Bool](/documentation/swift/regexsemanticlevel/==(_:_:))

##### Instance Properties

- [var hashValue: Int](/documentation/swift/regexsemanticlevel/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/regexsemanticlevel/hash(into:))

##### Type Properties

- [static var graphemeCluster: RegexSemanticLevel](/documentation/swift/regexsemanticlevel/graphemecluster)
- [static var unicodeScalar: RegexSemanticLevel](/documentation/swift/regexsemanticlevel/unicodescalar)

##### Default Implementations

- [Equatable Implementations](/documentation/swift/regexsemanticlevel/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/regexsemanticlevel/!=(_:_:))
- [RegexWordBoundaryKind](/documentation/swift/regexwordboundarykind)

##### Operators

- [static func == (RegexWordBoundaryKind, RegexWordBoundaryKind) -> Bool](/documentation/swift/regexwordboundarykind/==(_:_:))

##### Instance Properties

- [var hashValue: Int](/documentation/swift/regexwordboundarykind/hashvalue)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/regexwordboundarykind/hash(into:))

##### Type Properties

- [static var `default`: RegexWordBoundaryKind](/documentation/swift/regexwordboundarykind/default)
- [static var simple: RegexWordBoundaryKind](/documentation/swift/regexwordboundarykind/simple)

##### Default Implementations

- [Equatable Implementations](/documentation/swift/regexwordboundarykind/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/regexwordboundarykind/!=(_:_:))
- [AnyRegexOutput](/documentation/swift/anyregexoutput)

##### Initializers

- [init<Output>(Regex<Output>.Match)](/documentation/swift/anyregexoutput/init(_:))

##### Instance Methods

- [func extractValues<Output>(as: Output.Type) -> Output?](/documentation/swift/anyregexoutput/extractvalues(as:))

##### Subscripts

- [subscript(String) -> AnyRegexOutput.Element?](/documentation/swift/anyregexoutput/subscript(_:)-6qdcr)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/anyregexoutput/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/anyregexoutput/last)

###### Instance Methods

- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/anyregexoutput/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/anyregexoutput/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/anyregexoutput/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyregexoutput/last(where:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anyregexoutput/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/anyregexoutput/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/anyregexoutput/suffix(_:))
- [Collection Implementations](/documentation/swift/anyregexoutput/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/anyregexoutput/count)
- [var count: Int](/documentation/swift/anyregexoutput/count-9fygb)
- [var endIndex: Int](/documentation/swift/anyregexoutput/endindex)
- [var first: Self.Element?](/documentation/swift/anyregexoutput/first)
- [var isEmpty: Bool](/documentation/swift/anyregexoutput/isempty)
- [var startIndex: Int](/documentation/swift/anyregexoutput/startindex)
- [var underestimatedCount: Int](/documentation/swift/anyregexoutput/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/anyregexoutput/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/anyregexoutput/dropfirst(_:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anyregexoutput/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/anyregexoutput/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/anyregexoutput/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/anyregexoutput/formindex(after:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/anyregexoutput/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/anyregexoutput/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyregexoutput/map(_:)-1uh24)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/anyregexoutput/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/anyregexoutput/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/anyregexoutput/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/anyregexoutput/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/anyregexoutput/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/anyregexoutput/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anyregexoutput/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/anyregexoutput/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/anyregexoutput/suffix(from:))
- [func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/anyregexoutput/trimmingprefix(while:))

###### Subscripts

- [subscript(Int) -> AnyRegexOutput.Element](/documentation/swift/anyregexoutput/subscript(_:)-60hc1)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/anyregexoutput/subscript(_:)-smvg)

###### Type Aliases

- [AnyRegexOutput.Index](/documentation/swift/anyregexoutput/index)
- [AnyRegexOutput.Indices](/documentation/swift/anyregexoutput/indices)
- [AnyRegexOutput.Iterator](/documentation/swift/anyregexoutput/iterator)
- [AnyRegexOutput.SubSequence](/documentation/swift/anyregexoutput/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/anyregexoutput/randomaccesscollection-implementations)

###### Structures

- [AnyRegexOutput.Element](/documentation/swift/anyregexoutput/element)

###### Instance Properties

- [var name: String?](/documentation/swift/anyregexoutput/element/name)
- [var range: Range<String.Index>?](/documentation/swift/anyregexoutput/element/range)
- [var substring: Substring?](/documentation/swift/anyregexoutput/element/substring)
- [var type: any Any.Type](/documentation/swift/anyregexoutput/element/type)
- [var value: Any?](/documentation/swift/anyregexoutput/element/value)

###### Instance Properties

- [var indices: Range<Self.Index>](/documentation/swift/anyregexoutput/indices-swift.property)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/anyregexoutput/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/anyregexoutput/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/anyregexoutput/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/anyregexoutput/index(after:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/anyregexoutput/index(after:)-6xh6a)
- [func index(before: Int) -> Int](/documentation/swift/anyregexoutput/index(before:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/anyregexoutput/index(before:)-87bgk)
- [Sequence Implementations](/documentation/swift/anyregexoutput/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anyregexoutput/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyregexoutput/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyregexoutput/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyregexoutput/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anyregexoutput/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyregexoutput/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anyregexoutput/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyregexoutput/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyregexoutput/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anyregexoutput/flatmap(_:)-1qive)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyregexoutput/flatmap(_:)-6lqb3)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/anyregexoutput/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyregexoutput/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyregexoutput/map(_:)-4ybli)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyregexoutput/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyregexoutput/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anyregexoutput/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anyregexoutput/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/anyregexoutput/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anyregexoutput/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyregexoutput/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyregexoutput/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anyregexoutput/withcontiguousstorageifavailable(_:))
- [RegexComponent](/documentation/swift/regexcomponent)

##### Creating a regex component

- [init(CharacterClass, CharacterClass...)](/documentation/swift/regexcomponent/init(_:_:))

##### Getting a regex from a component

- [var regex: Regex<Self.RegexOutput>](/documentation/swift/regexcomponent/regex)

###### RegexComponent Implementations

- [var regex: Regex<Self.RegexOutput>](/documentation/swift/regexcomponent/regex-39060)

##### Matching substring sequences

- [static func anyOf<S>(S) -> CharacterClass](/documentation/swift/regexcomponent/anyof(_:)-3pexl)
- [static func anyOf<S>(S) -> CharacterClass](/documentation/swift/regexcomponent/anyof(_:)-4xgea)
- [static var any: CharacterClass](/documentation/swift/regexcomponent/any)
- [static var anyGraphemeCluster: CharacterClass](/documentation/swift/regexcomponent/anygraphemecluster)
- [static var anyNonNewline: CharacterClass](/documentation/swift/regexcomponent/anynonnewline)
- [static var digit: CharacterClass](/documentation/swift/regexcomponent/digit)
- [static var hexDigit: CharacterClass](/documentation/swift/regexcomponent/hexdigit)
- [static var word: CharacterClass](/documentation/swift/regexcomponent/word)

##### Matching whitespace and line endings

- [static var horizontalWhitespace: CharacterClass](/documentation/swift/regexcomponent/horizontalwhitespace)
- [static var newlineSequence: CharacterClass](/documentation/swift/regexcomponent/newlinesequence)
- [static var verticalWhitespace: CharacterClass](/documentation/swift/regexcomponent/verticalwhitespace)
- [static var whitespace: CharacterClass](/documentation/swift/regexcomponent/whitespace)

##### Matching dates and times

- [static func date(Date.FormatStyle.DateStyle, locale: Locale, timeZone: TimeZone, calendar: Calendar?) -> Date.ParseStrategy](/documentation/swift/regexcomponent/date(_:locale:timezone:calendar:))
- [static func date(format: Date.FormatString, locale: Locale, timeZone: TimeZone, calendar: Calendar?, twoDigitStartDate: Date) -> Self](/documentation/swift/regexcomponent/date(format:locale:timezone:calendar:twodigitstartdate:))
- [static func dateTime(date: Date.FormatStyle.DateStyle, time: Date.FormatStyle.TimeStyle, locale: Locale, timeZone: TimeZone, calendar: Calendar?) -> Date.ParseStrategy](/documentation/swift/regexcomponent/datetime(date:time:locale:timezone:calendar:))
- [static var iso8601: Date.ISO8601FormatStyle](/documentation/swift/regexcomponent/iso8601)
- [static func iso8601Date(timeZone: TimeZone, dateSeparator: Date.ISO8601FormatStyle.DateSeparator) -> Self](/documentation/swift/regexcomponent/iso8601date(timezone:dateseparator:))
- [static func iso8601(timeZone: TimeZone, includingFractionalSeconds: Bool, dateSeparator: Date.ISO8601FormatStyle.DateSeparator, dateTimeSeparator: Date.ISO8601FormatStyle.DateTimeSeparator, timeSeparator: Date.ISO8601FormatStyle.TimeSeparator) -> Self](/documentation/swift/regexcomponent/iso8601(timezone:includingfractionalseconds:dateseparator:datetimeseparator:timeseparator:))
- [static func iso8601WithTimeZone(includingFractionalSeconds: Bool, dateSeparator: Date.ISO8601FormatStyle.DateSeparator, dateTimeSeparator: Date.ISO8601FormatStyle.DateTimeSeparator, timeSeparator: Date.ISO8601FormatStyle.TimeSeparator, timeZoneSeparator: Date.ISO8601FormatStyle.TimeZoneSeparator) -> Self](/documentation/swift/regexcomponent/iso8601withtimezone(includingfractionalseconds:dateseparator:datetimeseparator:timeseparator:timezoneseparator:))

##### Matching numeric formats

- [static func localizedInteger(locale: Locale) -> Self](/documentation/swift/regexcomponent/localizedinteger(locale:))
- [static func localizedDouble(locale: Locale) -> Self](/documentation/swift/regexcomponent/localizeddouble(locale:))
- [static func localizedDecimal(locale: Locale) -> Self](/documentation/swift/regexcomponent/localizeddecimal(locale:))
- [static func localizedCurrency(code: Locale.Currency, locale: Locale) -> Self](/documentation/swift/regexcomponent/localizedcurrency(code:locale:))
- [static func localizedIntegerCurrency(code: Locale.Currency, locale: Locale) -> Self](/documentation/swift/regexcomponent/localizedintegercurrency(code:locale:))
- [static func localizedIntegerPercentage(locale: Locale) -> Self](/documentation/swift/regexcomponent/localizedintegerpercentage(locale:))
- [static func localizedDoublePercentage(locale: Locale) -> Self](/documentation/swift/regexcomponent/localizeddoublepercentage(locale:))

##### Matching URLs

- [static func url(scheme: URL.ParseStrategy.ComponentParseStrategy<String>, user: URL.ParseStrategy.ComponentParseStrategy<String>, password: URL.ParseStrategy.ComponentParseStrategy<String>, host: URL.ParseStrategy.ComponentParseStrategy<String>, port: URL.ParseStrategy.ComponentParseStrategy<Int>, path: URL.ParseStrategy.ComponentParseStrategy<String>, query: URL.ParseStrategy.ComponentParseStrategy<String>, fragment: URL.ParseStrategy.ComponentParseStrategy<String>) -> Self](/documentation/swift/regexcomponent/url(scheme:user:password:host:port:path:query:fragment:))

##### Supporting types

- [RegexOutput](/documentation/swift/regexcomponent/regexoutput)
- [RegexComponent.DateStyle](/documentation/swift/regexcomponent/datestyle)
- [RegexComponent.TimeStyle](/documentation/swift/regexcomponent/timestyle)

##### Type Properties

- [static var http: Date.HTTPFormatStyle](/documentation/swift/regexcomponent/http)
- [static var httpComponents: DateComponents.HTTPFormatStyle](/documentation/swift/regexcomponent/httpcomponents)
- [static var iso8601Components: DateComponents.ISO8601FormatStyle](/documentation/swift/regexcomponent/iso8601components)

##### Type Methods

- [static func iso8601Components(timeZone: TimeZone, includingFractionalSeconds: Bool, dateSeparator: Date.ISO8601FormatStyle.DateSeparator, dateTimeSeparator: Date.ISO8601FormatStyle.DateTimeSeparator, timeSeparator: Date.ISO8601FormatStyle.TimeSeparator) -> Self](/documentation/swift/regexcomponent/iso8601components(timezone:includingfractionalseconds:dateseparator:datetimeseparator:timeseparator:))
- [static func iso8601ComponentsWithTimeZone(includingFractionalSeconds: Bool, dateSeparator: Date.ISO8601FormatStyle.DateSeparator, dateTimeSeparator: Date.ISO8601FormatStyle.DateTimeSeparator, timeSeparator: Date.ISO8601FormatStyle.TimeSeparator, timeZoneSeparator: Date.ISO8601FormatStyle.TimeZoneSeparator) -> Self](/documentation/swift/regexcomponent/iso8601componentswithtimezone(includingfractionalseconds:dateseparator:datetimeseparator:timeseparator:timezoneseparator:))
- [static func iso8601DateComponents(timeZone: TimeZone, dateSeparator: Date.ISO8601FormatStyle.DateSeparator) -> Self](/documentation/swift/regexcomponent/iso8601datecomponents(timezone:dateseparator:))
- [CustomConsumingRegexComponent](/documentation/swift/customconsumingregexcomponent)

##### Instance Methods

- [func consuming(String, startingAt: String.Index, in: Range<String.Index>) throws -> (upperBound: String.Index, output: Self.RegexOutput)?](/documentation/swift/customconsumingregexcomponent/consuming(_:startingat:in:))

#### Encoding and Storage

- [Unicode](/documentation/swift/unicode)

##### Individual Unicode Scalar Values

- [Unicode.Scalar](/documentation/swift/unicode/scalar)

###### Creating a Scalar

- [init(UInt8)](/documentation/swift/unicode/scalar/init(_:)-2oo2e)
- [init(Unicode.Scalar)](/documentation/swift/unicode/scalar/init(_:)-5d6us)
- [init?(UInt32)](/documentation/swift/unicode/scalar/init(_:)-9eo1y)
- [init?(UInt16)](/documentation/swift/unicode/scalar/init(_:)-18u1m)
- [init?(Int)](/documentation/swift/unicode/scalar/init(_:)-96l5f)
- [init(unicodeScalarLiteral: Unicode.Scalar)](/documentation/swift/unicode/scalar/init(unicodescalarliteral:))
- [init?(String)](/documentation/swift/unicode/scalar/init(_:)-4p868)

###### Inspecting a Scalar

- [var value: UInt32](/documentation/swift/unicode/scalar/value)
- [var properties: Unicode.Scalar.Properties](/documentation/swift/unicode/scalar/properties-swift.property)
- [Unicode.Scalar.Properties](/documentation/swift/unicode/scalar/properties-swift.struct)

###### Instance Properties

- [var age: Unicode.Version?](/documentation/swift/unicode/scalar/properties-swift.struct/age)
- [var canonicalCombiningClass: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/scalar/properties-swift.struct/canonicalcombiningclass)
- [var changesWhenCaseFolded: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhencasefolded)
- [var changesWhenCaseMapped: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhencasemapped)
- [var changesWhenLowercased: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhenlowercased)
- [var changesWhenNFKCCaseFolded: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhennfkccasefolded)
- [var changesWhenTitlecased: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhentitlecased)
- [var changesWhenUppercased: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/changeswhenuppercased)
- [var generalCategory: Unicode.GeneralCategory](/documentation/swift/unicode/scalar/properties-swift.struct/generalcategory)
- [var isASCIIHexDigit: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isasciihexdigit)
- [var isAlphabetic: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isalphabetic)
- [var isBidiControl: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isbidicontrol)
- [var isBidiMirrored: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isbidimirrored)
- [var isCaseIgnorable: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/iscaseignorable)
- [var isCased: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/iscased)
- [var isDash: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isdash)
- [var isDefaultIgnorableCodePoint: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isdefaultignorablecodepoint)
- [var isDeprecated: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isdeprecated)
- [var isDiacritic: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isdiacritic)
- [var isEmoji: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isemoji)
- [var isEmojiModifier: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isemojimodifier)
- [var isEmojiModifierBase: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isemojimodifierbase)
- [var isEmojiPresentation: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isemojipresentation)
- [var isExtender: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isextender)
- [var isFullCompositionExclusion: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isfullcompositionexclusion)
- [var isGraphemeBase: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isgraphemebase)
- [var isGraphemeExtend: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isgraphemeextend)
- [var isHexDigit: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/ishexdigit)
- [var isIDContinue: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isidcontinue)
- [var isIDSBinaryOperator: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isidsbinaryoperator)
- [var isIDSTrinaryOperator: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isidstrinaryoperator)
- [var isIDStart: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isidstart)
- [var isIdeographic: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isideographic)
- [var isJoinControl: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isjoincontrol)
- [var isLogicalOrderException: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/islogicalorderexception)
- [var isLowercase: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/islowercase)
- [var isMath: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/ismath)
- [var isNoncharacterCodePoint: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isnoncharactercodepoint)
- [var isPatternSyntax: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/ispatternsyntax)
- [var isPatternWhitespace: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/ispatternwhitespace)
- [var isQuotationMark: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isquotationmark)
- [var isRadical: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isradical)
- [var isSentenceTerminal: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/issentenceterminal)
- [var isSoftDotted: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/issoftdotted)
- [var isTerminalPunctuation: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isterminalpunctuation)
- [var isUnifiedIdeograph: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isunifiedideograph)
- [var isUppercase: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isuppercase)
- [var isVariationSelector: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isvariationselector)
- [var isWhitespace: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/iswhitespace)
- [var isXIDContinue: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isxidcontinue)
- [var isXIDStart: Bool](/documentation/swift/unicode/scalar/properties-swift.struct/isxidstart)
- [var lowercaseMapping: String](/documentation/swift/unicode/scalar/properties-swift.struct/lowercasemapping)
- [var name: String?](/documentation/swift/unicode/scalar/properties-swift.struct/name)
- [var nameAlias: String?](/documentation/swift/unicode/scalar/properties-swift.struct/namealias)
- [var numericType: Unicode.NumericType?](/documentation/swift/unicode/scalar/properties-swift.struct/numerictype)
- [var numericValue: Double?](/documentation/swift/unicode/scalar/properties-swift.struct/numericvalue)
- [var titlecaseMapping: String](/documentation/swift/unicode/scalar/properties-swift.struct/titlecasemapping)
- [var uppercaseMapping: String](/documentation/swift/unicode/scalar/properties-swift.struct/uppercasemapping)
- [func hash(into: inout Hasher)](/documentation/swift/unicode/scalar/hash(into:))
- [var isASCII: Bool](/documentation/swift/unicode/scalar/isascii)

###### Printing and Displaying a Scalar

- [var description: String](/documentation/swift/unicode/scalar/description)
- [func write<Target>(to: inout Target)](/documentation/swift/unicode/scalar/write(to:))
- [func escaped(asASCII: Bool) -> String](/documentation/swift/unicode/scalar/escaped(asascii:))
- [var utf16: Unicode.Scalar.UTF16View](/documentation/swift/unicode/scalar/utf16)
- [Unicode.Scalar.UTF16View](/documentation/swift/unicode/scalar/utf16view)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/unicode/scalar/utf16view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unicode/scalar/utf16view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unicode/scalar/utf16view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unicode/scalar/utf16view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/unicode/scalar/utf16view/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unicode/scalar/utf16view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/suffix(_:))
- [Collection Implementations](/documentation/swift/unicode/scalar/utf16view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/unicode/scalar/utf16view/count)
- [var first: Self.Element?](/documentation/swift/unicode/scalar/utf16view/first)
- [var isEmpty: Bool](/documentation/swift/unicode/scalar/utf16view/isempty)
- [var underestimatedCount: Int](/documentation/swift/unicode/scalar/utf16view/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unicode/scalar/utf16view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unicode/scalar/utf16view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/unicode/scalar/utf16view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unicode/scalar/utf16view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unicode/scalar/utf16view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/unicode/scalar/utf16view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unicode/scalar/utf16view/map(_:)-1zmqr)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unicode/scalar/utf16view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unicode/scalar/utf16view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unicode/scalar/utf16view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf16view/suffix(from:))

###### Type Aliases

- [Unicode.Scalar.UTF16View.Index](/documentation/swift/unicode/scalar/utf16view/index)
- [Unicode.Scalar.UTF16View.Indices](/documentation/swift/unicode/scalar/utf16view/indices)
- [Unicode.Scalar.UTF16View.Iterator](/documentation/swift/unicode/scalar/utf16view/iterator)
- [Unicode.Scalar.UTF16View.SubSequence](/documentation/swift/unicode/scalar/utf16view/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/unicode/scalar/utf16view/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/unicode/scalar/utf16view/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/unicode/scalar/utf16view/indices-swift.property)
- [var startIndex: Int](/documentation/swift/unicode/scalar/utf16view/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/unicode/scalar/utf16view/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/unicode/scalar/utf16view/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/unicode/scalar/utf16view/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/unicode/scalar/utf16view/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/unicode/scalar/utf16view/index(before:))

###### Subscripts

- [subscript(Int) -> UTF16.CodeUnit](/documentation/swift/unicode/scalar/utf16view/subscript(_:))
- [Sequence Implementations](/documentation/swift/unicode/scalar/utf16view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unicode/scalar/utf16view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf16view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unicode/scalar/utf16view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unicode/scalar/utf16view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf16view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unicode/scalar/utf16view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unicode/scalar/utf16view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf16view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unicode/scalar/utf16view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unicode/scalar/utf16view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unicode/scalar/utf16view/flatmap(_:)-6qav4)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unicode/scalar/utf16view/flatmap(_:)-9p8z7)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unicode/scalar/utf16view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unicode/scalar/utf16view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf16view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unicode/scalar/utf16view/map(_:)-76skt)
- [func max() -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf16view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unicode/scalar/utf16view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unicode/scalar/utf16view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/unicode/scalar/utf16view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unicode/scalar/utf16view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unicode/scalar/utf16view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unicode/scalar/utf16view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unicode/scalar/utf16view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf16view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unicode/scalar/utf16view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Unicode.Scalar.UTF16View.Element](/documentation/swift/unicode/scalar/utf16view/element)
- [var debugDescription: String](/documentation/swift/unicode/scalar/debugdescription)
- [var customMirror: Mirror](/documentation/swift/unicode/scalar/custommirror)
- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/unicode/scalar/customplaygroundquicklook)

###### Comparing Scalars

- [static func == (Unicode.Scalar, Unicode.Scalar) -> Bool](/documentation/swift/unicode/scalar/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/scalar/!=(_:_:))
- [static func < (Unicode.Scalar, Unicode.Scalar) -> Bool](/documentation/swift/unicode/scalar/_(_:_:))
- [static func <= (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_=(_:_:)-13yar)
- [static func > (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_(_:_:)-1xeim)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_=(_:_:)-7oywq)

###### Creating Ranges of Scalars

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unicode/scalar/'...(_:)-9u9rz)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unicode/scalar/'...(_:)-7lhvp)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unicode/scalar/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unicode/scalar/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unicode/scalar/'.._(_:_:))

###### Structures

- [Unicode.Scalar.UTF8View](/documentation/swift/unicode/scalar/utf8view)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/unicode/scalar/utf8view/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unicode/scalar/utf8view/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unicode/scalar/utf8view/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unicode/scalar/utf8view/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/unicode/scalar/utf8view/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unicode/scalar/utf8view/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/suffix(_:))
- [Collection Implementations](/documentation/swift/unicode/scalar/utf8view/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/unicode/scalar/utf8view/count)
- [var first: Self.Element?](/documentation/swift/unicode/scalar/utf8view/first)
- [var isEmpty: Bool](/documentation/swift/unicode/scalar/utf8view/isempty)
- [var underestimatedCount: Int](/documentation/swift/unicode/scalar/utf8view/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unicode/scalar/utf8view/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unicode/scalar/utf8view/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/unicode/scalar/utf8view/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unicode/scalar/utf8view/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unicode/scalar/utf8view/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/unicode/scalar/utf8view/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unicode/scalar/utf8view/map(_:)-26p1x)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unicode/scalar/utf8view/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unicode/scalar/utf8view/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unicode/scalar/utf8view/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unicode/scalar/utf8view/suffix(from:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/unicode/scalar/utf8view/subscript(_:)-4krnk)

###### Type Aliases

- [Unicode.Scalar.UTF8View.Index](/documentation/swift/unicode/scalar/utf8view/index)
- [Unicode.Scalar.UTF8View.Indices](/documentation/swift/unicode/scalar/utf8view/indices)
- [Unicode.Scalar.UTF8View.Iterator](/documentation/swift/unicode/scalar/utf8view/iterator)
- [Unicode.Scalar.UTF8View.SubSequence](/documentation/swift/unicode/scalar/utf8view/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/unicode/scalar/utf8view/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/unicode/scalar/utf8view/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/unicode/scalar/utf8view/indices-swift.property)
- [var startIndex: Int](/documentation/swift/unicode/scalar/utf8view/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/unicode/scalar/utf8view/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/unicode/scalar/utf8view/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/unicode/scalar/utf8view/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/unicode/scalar/utf8view/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/unicode/scalar/utf8view/index(before:))

###### Subscripts

- [subscript(Int) -> UTF8.CodeUnit](/documentation/swift/unicode/scalar/utf8view/subscript(_:))
- [Sequence Implementations](/documentation/swift/unicode/scalar/utf8view/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unicode/scalar/utf8view/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf8view/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unicode/scalar/utf8view/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unicode/scalar/utf8view/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf8view/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unicode/scalar/utf8view/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unicode/scalar/utf8view/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf8view/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unicode/scalar/utf8view/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unicode/scalar/utf8view/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unicode/scalar/utf8view/flatmap(_:)-5hatl)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unicode/scalar/utf8view/flatmap(_:)-5jiot)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unicode/scalar/utf8view/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unicode/scalar/utf8view/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf8view/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unicode/scalar/utf8view/map(_:)-7dggx)
- [func max() -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unicode/scalar/utf8view/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unicode/scalar/utf8view/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unicode/scalar/utf8view/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/unicode/scalar/utf8view/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unicode/scalar/utf8view/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unicode/scalar/utf8view/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unicode/scalar/utf8view/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unicode/scalar/utf8view/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unicode/scalar/utf8view/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unicode/scalar/utf8view/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Unicode.Scalar.UTF8View.Element](/documentation/swift/unicode/scalar/utf8view/element)

###### Instance Properties

- [var utf8: Unicode.Scalar.UTF8View](/documentation/swift/unicode/scalar/utf8)

###### Type Aliases

- [Unicode.Scalar.Output](/documentation/swift/unicode/scalar/output)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/unicode/scalar/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unicode/scalar/'...(_:)-7lhvp)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unicode/scalar/'...(_:)-9u9rz)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unicode/scalar/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unicode/scalar/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unicode/scalar/'.._(_:_:))
- [static func < (Unicode.Scalar, Unicode.Scalar) -> Bool](/documentation/swift/unicode/scalar/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_(_:_:)-1xeim)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_=(_:_:)-13yar)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unicode/scalar/_=(_:_:)-7oywq)
- [CustomDebugStringConvertible Implementations](/documentation/swift/unicode/scalar/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/unicode/scalar/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/unicode/scalar/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/unicode/scalar/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/unicode/scalar/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/unicode/scalar/description)
- [Equatable Implementations](/documentation/swift/unicode/scalar/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/scalar/!=(_:_:))
- [static func == (Unicode.Scalar, Unicode.Scalar) -> Bool](/documentation/swift/unicode/scalar/==(_:_:))
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/unicode/scalar/expressiblebyunicodescalarliteral-implementations)

###### Initializers

- [init(unicodeScalarLiteral: Unicode.Scalar)](/documentation/swift/unicode/scalar/init(unicodescalarliteral:))

###### Type Aliases

- [Unicode.Scalar.UnicodeScalarLiteralType](/documentation/swift/unicode/scalar/unicodescalarliteraltype)
- [Hashable Implementations](/documentation/swift/unicode/scalar/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/scalar/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/scalar/hash(into:))
- [LosslessStringConvertible Implementations](/documentation/swift/unicode/scalar/losslessstringconvertible-implementations)

###### Initializers

- [init?(String)](/documentation/swift/unicode/scalar/init(_:)-4p868)
- [TextOutputStreamable Implementations](/documentation/swift/unicode/scalar/textoutputstreamable-implementations)

###### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/unicode/scalar/write(to:))

##### Unicode Scalar Classifications

- [Unicode.GeneralCategory](/documentation/swift/unicode/generalcategory)

###### Operators

- [static func == (Unicode.GeneralCategory, Unicode.GeneralCategory) -> Bool](/documentation/swift/unicode/generalcategory/==(_:_:))

###### Enumeration Cases

- [case closePunctuation](/documentation/swift/unicode/generalcategory/closepunctuation)
- [case connectorPunctuation](/documentation/swift/unicode/generalcategory/connectorpunctuation)
- [case control](/documentation/swift/unicode/generalcategory/control)
- [case currencySymbol](/documentation/swift/unicode/generalcategory/currencysymbol)
- [case dashPunctuation](/documentation/swift/unicode/generalcategory/dashpunctuation)
- [case decimalNumber](/documentation/swift/unicode/generalcategory/decimalnumber)
- [case enclosingMark](/documentation/swift/unicode/generalcategory/enclosingmark)
- [case finalPunctuation](/documentation/swift/unicode/generalcategory/finalpunctuation)
- [case format](/documentation/swift/unicode/generalcategory/format)
- [case initialPunctuation](/documentation/swift/unicode/generalcategory/initialpunctuation)
- [case letterNumber](/documentation/swift/unicode/generalcategory/letternumber)
- [case lineSeparator](/documentation/swift/unicode/generalcategory/lineseparator)
- [case lowercaseLetter](/documentation/swift/unicode/generalcategory/lowercaseletter)
- [case mathSymbol](/documentation/swift/unicode/generalcategory/mathsymbol)
- [case modifierLetter](/documentation/swift/unicode/generalcategory/modifierletter)
- [case modifierSymbol](/documentation/swift/unicode/generalcategory/modifiersymbol)
- [case nonspacingMark](/documentation/swift/unicode/generalcategory/nonspacingmark)
- [case openPunctuation](/documentation/swift/unicode/generalcategory/openpunctuation)
- [case otherLetter](/documentation/swift/unicode/generalcategory/otherletter)
- [case otherNumber](/documentation/swift/unicode/generalcategory/othernumber)
- [case otherPunctuation](/documentation/swift/unicode/generalcategory/otherpunctuation)
- [case otherSymbol](/documentation/swift/unicode/generalcategory/othersymbol)
- [case paragraphSeparator](/documentation/swift/unicode/generalcategory/paragraphseparator)
- [case privateUse](/documentation/swift/unicode/generalcategory/privateuse)
- [case spaceSeparator](/documentation/swift/unicode/generalcategory/spaceseparator)
- [case spacingMark](/documentation/swift/unicode/generalcategory/spacingmark)
- [case surrogate](/documentation/swift/unicode/generalcategory/surrogate)
- [case titlecaseLetter](/documentation/swift/unicode/generalcategory/titlecaseletter)
- [case unassigned](/documentation/swift/unicode/generalcategory/unassigned)
- [case uppercaseLetter](/documentation/swift/unicode/generalcategory/uppercaseletter)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/generalcategory/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/generalcategory/hash(into:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/unicode/generalcategory/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/generalcategory/!=(_:_:))
- [Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass)

###### Operators

- [static func == (Unicode.CanonicalCombiningClass, Unicode.CanonicalCombiningClass) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/==(_:_:))
- [static func < (Unicode.CanonicalCombiningClass, Unicode.CanonicalCombiningClass) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/_(_:_:))

###### Initializers

- [init(rawValue: UInt8)](/documentation/swift/unicode/canonicalcombiningclass/init(rawvalue:))

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/canonicalcombiningclass/hashvalue)
- [let rawValue: UInt8](/documentation/swift/unicode/canonicalcombiningclass/rawvalue-swift.property)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/canonicalcombiningclass/hash(into:))

###### Type Aliases

- [Unicode.CanonicalCombiningClass.RawValue](/documentation/swift/unicode/canonicalcombiningclass/rawvalue-swift.typealias)

###### Type Properties

- [static let above: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/above)
- [static let aboveLeft: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/aboveleft)
- [static let aboveRight: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/aboveright)
- [static let attachedAbove: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/attachedabove)
- [static let attachedAboveRight: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/attachedaboveright)
- [static let attachedBelow: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/attachedbelow)
- [static let attachedBelowLeft: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/attachedbelowleft)
- [static let below: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/below)
- [static let belowLeft: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/belowleft)
- [static let belowRight: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/belowright)
- [static let doubleAbove: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/doubleabove)
- [static let doubleBelow: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/doublebelow)
- [static let iotaSubscript: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/iotasubscript)
- [static let kanaVoicing: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/kanavoicing)
- [static let left: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/left)
- [static let notReordered: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/notreordered)
- [static let nukta: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/nukta)
- [static let overlay: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/overlay)
- [static let right: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/right)
- [static let virama: Unicode.CanonicalCombiningClass](/documentation/swift/unicode/canonicalcombiningclass/virama)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/unicode/canonicalcombiningclass/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unicode/canonicalcombiningclass/'...(_:)-5seus)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unicode/canonicalcombiningclass/'...(_:)-6pi3)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unicode/canonicalcombiningclass/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unicode/canonicalcombiningclass/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unicode/canonicalcombiningclass/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/_(_:_:)-5jtn9)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/_=(_:_:)-4pgnv)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/_=(_:_:)-q66b)
- [Equatable Implementations](/documentation/swift/unicode/canonicalcombiningclass/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/canonicalcombiningclass/!=(_:_:))
- [Unicode.NumericType](/documentation/swift/unicode/numerictype)

###### Operators

- [static func == (Unicode.NumericType, Unicode.NumericType) -> Bool](/documentation/swift/unicode/numerictype/==(_:_:))

###### Enumeration Cases

- [case decimal](/documentation/swift/unicode/numerictype/decimal)
- [case digit](/documentation/swift/unicode/numerictype/digit)
- [case numeric](/documentation/swift/unicode/numerictype/numeric)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/numerictype/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/numerictype/hash(into:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/unicode/numerictype/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/numerictype/!=(_:_:))

##### Unicode Codecs

- [UnicodeCodec](/documentation/swift/unicodecodec)

###### Initializers

- [init()](/documentation/swift/unicodecodec/init())

###### Instance Methods

- [func decode<I>(inout I) -> UnicodeDecodingResult](/documentation/swift/unicodecodec/decode(_:))

###### Type Methods

- [static func encode(Unicode.Scalar, into: (Self.CodeUnit) -> Void)](/documentation/swift/unicodecodec/encode(_:into:))
- [Unicode.ASCII](/documentation/swift/unicode/ascii)

###### Structures

- [Unicode.ASCII.Parser](/documentation/swift/unicode/ascii/parser)

###### Initializers

- [init()](/documentation/swift/unicode/ascii/parser/init())

###### Instance Methods

- [func parseScalar<I>(from: inout I) -> Unicode.ParseResult<Unicode.ASCII.Parser.Encoding.EncodedScalar>](/documentation/swift/unicode/ascii/parser/parsescalar(from:))

###### Type Aliases

- [Unicode.ASCII.Parser.Encoding](/documentation/swift/unicode/ascii/parser/encoding)

###### Type Aliases

- [Unicode.ASCII.CodeUnit](/documentation/swift/unicode/ascii/codeunit)
- [Unicode.ASCII.EncodedScalar](/documentation/swift/unicode/ascii/encodedscalar)
- [Unicode.ASCII.ForwardParser](/documentation/swift/unicode/ascii/forwardparser)
- [Unicode.ASCII.ReverseParser](/documentation/swift/unicode/ascii/reverseparser)

###### Type Properties

- [static var encodedReplacementCharacter: Unicode.ASCII.EncodedScalar](/documentation/swift/unicode/ascii/encodedreplacementcharacter)

###### Type Methods

- [static func decode(Unicode.ASCII.EncodedScalar) -> Unicode.Scalar](/documentation/swift/unicode/ascii/decode(_:))
- [static func encode(Unicode.Scalar) -> Unicode.ASCII.EncodedScalar?](/documentation/swift/unicode/ascii/encode(_:))
- [static func isASCII(Unicode.ASCII.CodeUnit) -> Bool](/documentation/swift/unicode/ascii/isascii(_:))
- [static func transcode<FromEncoding>(FromEncoding.EncodedScalar, from: FromEncoding.Type) -> Unicode.ASCII.EncodedScalar?](/documentation/swift/unicode/ascii/transcode(_:from:))
- [Unicode.UTF8](/documentation/swift/unicode/utf8)

###### Structures

- [Unicode.UTF8.ForwardParser](/documentation/swift/unicode/utf8/forwardparser)

###### Initializers

- [init()](/documentation/swift/unicode/utf8/forwardparser/init())

###### Type Aliases

- [Unicode.UTF8.ForwardParser.Encoding](/documentation/swift/unicode/utf8/forwardparser/encoding)
- [Unicode.UTF8.ReverseParser](/documentation/swift/unicode/utf8/reverseparser)

###### Initializers

- [init()](/documentation/swift/unicode/utf8/reverseparser/init())

###### Type Aliases

- [Unicode.UTF8.ReverseParser.Encoding](/documentation/swift/unicode/utf8/reverseparser/encoding)
- [Unicode.UTF8.ValidationError](/documentation/swift/unicode/utf8/validationerror)

###### Structures

- [Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct)

###### Initializers

- [init?(rawValue: UInt8)](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/init(rawvalue:))

###### Instance Properties

- [var rawValue: UInt8](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/rawvalue-swift.property)

###### Type Aliases

- [Unicode.UTF8.ValidationError.Kind.RawValue](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/rawvalue-swift.typealias)

###### Type Properties

- [static var invalidNonSurrogateCodePointByte: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/invalidnonsurrogatecodepointbyte)
- [static var overlongEncodingByte: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/overlongencodingbyte)
- [static var surrogateCodePointByte: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/surrogatecodepointbyte)
- [static var truncatedScalar: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/truncatedscalar)
- [static var unexpectedContinuationByte: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/unexpectedcontinuationbyte)

###### Default Implementations

- [CustomStringConvertible Implementations](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/description)
- [Equatable Implementations](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/!=(_:_:))
- [RawRepresentable Implementations](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/rawrepresentable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/utf8/validationerror/kind-swift.struct/hash(into:))

###### Operators

- [static func == (Unicode.UTF8.ValidationError, Unicode.UTF8.ValidationError) -> Bool](/documentation/swift/unicode/utf8/validationerror/==(_:_:))

###### Initializers

- [init(Unicode.UTF8.ValidationError.Kind, Range<Int>)](/documentation/swift/unicode/utf8/validationerror/init(_:_:))
- [init(Unicode.UTF8.ValidationError.Kind, at: Int)](/documentation/swift/unicode/utf8/validationerror/init(_:at:))

###### Instance Properties

- [var byteOffsets: Range<Int>](/documentation/swift/unicode/utf8/validationerror/byteoffsets)
- [var hashValue: Int](/documentation/swift/unicode/utf8/validationerror/hashvalue)
- [var kind: Unicode.UTF8.ValidationError.Kind](/documentation/swift/unicode/utf8/validationerror/kind-swift.property)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/utf8/validationerror/hash(into:))

###### Default Implementations

- [CustomStringConvertible Implementations](/documentation/swift/unicode/utf8/validationerror/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/unicode/utf8/validationerror/description)
- [Equatable Implementations](/documentation/swift/unicode/utf8/validationerror/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/utf8/validationerror/!=(_:_:))

###### Type Aliases

- [Unicode.UTF8.CodeUnit](/documentation/swift/unicode/utf8/codeunit)
- [Unicode.UTF8.EncodedScalar](/documentation/swift/unicode/utf8/encodedscalar)

###### Type Properties

- [static var encodedReplacementCharacter: Unicode.UTF8.EncodedScalar](/documentation/swift/unicode/utf8/encodedreplacementcharacter)

###### Type Methods

- [static func decode(Unicode.UTF8.EncodedScalar) -> Unicode.Scalar](/documentation/swift/unicode/utf8/decode(_:)-swift.type.method)
- [static func encode(Unicode.Scalar) -> Unicode.UTF8.EncodedScalar?](/documentation/swift/unicode/utf8/encode(_:))
- [static func isASCII(Unicode.UTF8.CodeUnit) -> Bool](/documentation/swift/unicode/utf8/isascii(_:))
- [static func isContinuation(Unicode.UTF8.CodeUnit) -> Bool](/documentation/swift/unicode/utf8/iscontinuation(_:))
- [static func transcode<FromEncoding>(FromEncoding.EncodedScalar, from: FromEncoding.Type) -> Unicode.UTF8.EncodedScalar?](/documentation/swift/unicode/utf8/transcode(_:from:))
- [static func width(Unicode.Scalar) -> Int](/documentation/swift/unicode/utf8/width(_:))

###### Default Implementations

- [UnicodeCodec Implementations](/documentation/swift/unicode/utf8/unicodecodec-implementations)

###### Initializers

- [init()](/documentation/swift/unicode/utf8/init())

###### Instance Methods

- [func decode<I>(inout I) -> UnicodeDecodingResult](/documentation/swift/unicode/utf8/decode(_:)-swift.method)

###### Type Methods

- [static func encode(Unicode.Scalar, into: (Unicode.UTF8.CodeUnit) -> Void)](/documentation/swift/unicode/utf8/encode(_:into:))
- [Unicode.UTF16](/documentation/swift/unicode/utf16)

###### Structures

- [Unicode.UTF16.ForwardParser](/documentation/swift/unicode/utf16/forwardparser)

###### Initializers

- [init()](/documentation/swift/unicode/utf16/forwardparser/init())

###### Type Aliases

- [Unicode.UTF16.ForwardParser.Encoding](/documentation/swift/unicode/utf16/forwardparser/encoding)
- [Unicode.UTF16.ReverseParser](/documentation/swift/unicode/utf16/reverseparser)

###### Initializers

- [init()](/documentation/swift/unicode/utf16/reverseparser/init())

###### Type Aliases

- [Unicode.UTF16.ReverseParser.Encoding](/documentation/swift/unicode/utf16/reverseparser/encoding)

###### Type Aliases

- [Unicode.UTF16.CodeUnit](/documentation/swift/unicode/utf16/codeunit)
- [Unicode.UTF16.EncodedScalar](/documentation/swift/unicode/utf16/encodedscalar)

###### Type Properties

- [static var encodedReplacementCharacter: Unicode.UTF16.EncodedScalar](/documentation/swift/unicode/utf16/encodedreplacementcharacter)

###### Type Methods

- [static func decode(Unicode.UTF16.EncodedScalar) -> Unicode.Scalar](/documentation/swift/unicode/utf16/decode(_:)-swift.type.method)
- [static func encode(Unicode.Scalar) -> Unicode.UTF16.EncodedScalar?](/documentation/swift/unicode/utf16/encode(_:))
- [static func isASCII(Unicode.UTF16.CodeUnit) -> Bool](/documentation/swift/unicode/utf16/isascii(_:))
- [static func isLeadSurrogate(Unicode.UTF16.CodeUnit) -> Bool](/documentation/swift/unicode/utf16/isleadsurrogate(_:))
- [static func isSurrogate(Unicode.UTF16.CodeUnit) -> Bool](/documentation/swift/unicode/utf16/issurrogate(_:))
- [static func isTrailSurrogate(Unicode.UTF16.CodeUnit) -> Bool](/documentation/swift/unicode/utf16/istrailsurrogate(_:))
- [static func leadSurrogate(Unicode.Scalar) -> UTF16.CodeUnit](/documentation/swift/unicode/utf16/leadsurrogate(_:))
- [static func trailSurrogate(Unicode.Scalar) -> UTF16.CodeUnit](/documentation/swift/unicode/utf16/trailsurrogate(_:))
- [static func transcode<FromEncoding>(FromEncoding.EncodedScalar, from: FromEncoding.Type) -> Unicode.UTF16.EncodedScalar?](/documentation/swift/unicode/utf16/transcode(_:from:))
- [static func transcodedLength<Input, Encoding>(of: Input, decodedAs: Encoding.Type, repairingIllFormedSequences: Bool) -> (count: Int, isASCII: Bool)?](/documentation/swift/unicode/utf16/transcodedlength(of:decodedas:repairingillformedsequences:))
- [static func width(Unicode.Scalar) -> Int](/documentation/swift/unicode/utf16/width(_:))

###### Default Implementations

- [UnicodeCodec Implementations](/documentation/swift/unicode/utf16/unicodecodec-implementations)

###### Initializers

- [init()](/documentation/swift/unicode/utf16/init())

###### Instance Methods

- [func decode<I>(inout I) -> UnicodeDecodingResult](/documentation/swift/unicode/utf16/decode(_:)-swift.method)

###### Type Methods

- [static func encode(Unicode.Scalar, into: (Unicode.UTF16.CodeUnit) -> Void)](/documentation/swift/unicode/utf16/encode(_:into:))
- [Unicode.UTF32](/documentation/swift/unicode/utf32)

###### Structures

- [Unicode.UTF32.Parser](/documentation/swift/unicode/utf32/parser)

###### Initializers

- [init()](/documentation/swift/unicode/utf32/parser/init())

###### Instance Methods

- [func parseScalar<I>(from: inout I) -> Unicode.ParseResult<Unicode.UTF32.Parser.Encoding.EncodedScalar>](/documentation/swift/unicode/utf32/parser/parsescalar(from:))

###### Type Aliases

- [Unicode.UTF32.Parser.Encoding](/documentation/swift/unicode/utf32/parser/encoding)

###### Operators

- [static func == (Unicode.UTF32, Unicode.UTF32) -> Bool](/documentation/swift/unicode/utf32/==(_:_:))

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unicode/utf32/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unicode/utf32/hash(into:))

###### Type Aliases

- [Unicode.UTF32.CodeUnit](/documentation/swift/unicode/utf32/codeunit)
- [Unicode.UTF32.EncodedScalar](/documentation/swift/unicode/utf32/encodedscalar)
- [Unicode.UTF32.ForwardParser](/documentation/swift/unicode/utf32/forwardparser)
- [Unicode.UTF32.ReverseParser](/documentation/swift/unicode/utf32/reverseparser)

###### Type Properties

- [static var encodedReplacementCharacter: Unicode.UTF32.EncodedScalar](/documentation/swift/unicode/utf32/encodedreplacementcharacter)

###### Type Methods

- [static func decode(Unicode.UTF32.EncodedScalar) -> Unicode.Scalar](/documentation/swift/unicode/utf32/decode(_:)-swift.type.method)
- [static func encode(Unicode.Scalar) -> Unicode.UTF32.EncodedScalar?](/documentation/swift/unicode/utf32/encode(_:))
- [static func isASCII(Unicode.UTF32.CodeUnit) -> Bool](/documentation/swift/unicode/utf32/isascii(_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/unicode/utf32/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicode/utf32/!=(_:_:))
- [UnicodeCodec Implementations](/documentation/swift/unicode/utf32/unicodecodec-implementations)

###### Initializers

- [init()](/documentation/swift/unicode/utf32/init())

###### Instance Methods

- [func decode<I>(inout I) -> UnicodeDecodingResult](/documentation/swift/unicode/utf32/decode(_:)-swift.method)

###### Type Methods

- [static func encode(Unicode.Scalar, into: (Unicode.UTF32.CodeUnit) -> Void)](/documentation/swift/unicode/utf32/encode(_:into:))
- [UnicodeDecodingResult](/documentation/swift/unicodedecodingresult)

###### Operators

- [static func == (UnicodeDecodingResult, UnicodeDecodingResult) -> Bool](/documentation/swift/unicodedecodingresult/==(_:_:))

###### Enumeration Cases

- [case emptyInput](/documentation/swift/unicodedecodingresult/emptyinput)
- [case error](/documentation/swift/unicodedecodingresult/error)
- [case scalarValue(Unicode.Scalar)](/documentation/swift/unicodedecodingresult/scalarvalue(_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/unicodedecodingresult/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unicodedecodingresult/!=(_:_:))
- [Unicode.ParseResult](/documentation/swift/unicode/parseresult)

###### Enumeration Cases

- [case emptyInput](/documentation/swift/unicode/parseresult/emptyinput)
- [case error(length: Int)](/documentation/swift/unicode/parseresult/error(length:))
- [case valid(T)](/documentation/swift/unicode/parseresult/valid(_:))

##### Translation Between Unicode Encodings

- [func transcode<Input, InputEncoding, OutputEncoding>(Input, from: InputEncoding.Type, to: OutputEncoding.Type, stoppingOnError: Bool, into: (OutputEncoding.CodeUnit) -> Void) -> Bool](/documentation/swift/transcode(_:from:to:stoppingonerror:into:))

##### Deprecated

- [UnicodeScalar](/documentation/swift/unicodescalar)
- [UTF8](/documentation/swift/utf8)
- [UTF16](/documentation/swift/utf16)
- [UTF32](/documentation/swift/utf32)

##### Type Aliases

- [Unicode.Encoding](/documentation/swift/unicode/encoding)
- [Unicode.Parser](/documentation/swift/unicode/parser)
- [Unicode.Version](/documentation/swift/unicode/version)

#### Compile-Time Strings

- [StaticString](/documentation/swift/staticstring)

##### Initializers

- [init()](/documentation/swift/staticstring/init())

##### Instance Properties

- [var hasPointerRepresentation: Bool](/documentation/swift/staticstring/haspointerrepresentation)
- [var isASCII: Bool](/documentation/swift/staticstring/isascii)
- [var unicodeScalar: Unicode.Scalar](/documentation/swift/staticstring/unicodescalar)
- [var utf8CodeUnitCount: Int](/documentation/swift/staticstring/utf8codeunitcount)
- [var utf8Start: UnsafePointer<UInt8>](/documentation/swift/staticstring/utf8start)

##### Instance Methods

- [func withUTF8Buffer<R>((UnsafeBufferPointer<UInt8>) -> R) -> R](/documentation/swift/staticstring/withutf8buffer(_:))

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/staticstring/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/staticstring/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/staticstring/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/staticstring/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/staticstring/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/staticstring/description)
- [ExpressibleByExtendedGraphemeClusterLiteral Implementations](/documentation/swift/staticstring/expressiblebyextendedgraphemeclusterliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: StaticString)](/documentation/swift/staticstring/init(extendedgraphemeclusterliteral:))
- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/staticstring/init(unicodescalarliteral:)-7ic1r)

###### Type Aliases

- [StaticString.ExtendedGraphemeClusterLiteralType](/documentation/swift/staticstring/extendedgraphemeclusterliteraltype)
- [ExpressibleByStringLiteral Implementations](/documentation/swift/staticstring/expressiblebystringliteral-implementations)

###### Initializers

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/staticstring/init(extendedgraphemeclusterliteral:)-14kgw)
- [init(stringLiteral: StaticString)](/documentation/swift/staticstring/init(stringliteral:))

###### Type Aliases

- [StaticString.StringLiteralType](/documentation/swift/staticstring/stringliteraltype)
- [ExpressibleByUnicodeScalarLiteral Implementations](/documentation/swift/staticstring/expressiblebyunicodescalarliteral-implementations)

###### Initializers

- [init(unicodeScalarLiteral: StaticString)](/documentation/swift/staticstring/init(unicodescalarliteral:))

###### Type Aliases

- [StaticString.UnicodeScalarLiteralType](/documentation/swift/staticstring/unicodescalarliteraltype)
- [Collections](/documentation/swift/collections)

#### Arrays and Dictionaries

- [Array](/documentation/swift/array)

##### Creating an Array

- [init()](/documentation/swift/array/init())
- [init<S>(S)](/documentation/swift/array/init(_:)-1ip9h)
- [init<S>(S)](/documentation/swift/array/init(_:)-236cl)
- [init(repeating: Element, count: Int)](/documentation/swift/array/init(repeating:count:))
- [init<E>(unsafeUninitializedCapacity: Int, initializingWith: (inout UnsafeMutableBufferPointer<Element>, inout Int) throws(E) -> Void) throws(E)](/documentation/swift/array/init(unsafeuninitializedcapacity:initializingwith:))

##### Inspecting an Array

- [var isEmpty: Bool](/documentation/swift/array/isempty)
- [var count: Int](/documentation/swift/array/count)
- [var capacity: Int](/documentation/swift/array/capacity)

##### Accessing Elements

- [subscript(Int) -> Element](/documentation/swift/array/subscript(_:)-25iat)
- [var first: Self.Element?](/documentation/swift/array/first)
- [var last: Self.Element?](/documentation/swift/array/last)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/array/subscript(_:)-53fvb)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3kwny)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4h7rl)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3pmfg)
- [func randomElement() -> Self.Element?](/documentation/swift/array/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/array/randomelement(using:))

##### Adding Elements

- [func append(Element)](/documentation/swift/array/append(_:))
- [func insert(Element, at: Int)](/documentation/swift/array/insert(_:at:))
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/array/insert(contentsof:at:))
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/array/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/array/replacesubrange(_:with:)-7293p)
- [func reserveCapacity(Int)](/documentation/swift/array/reservecapacity(_:))

##### Combining Arrays

- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:)-9foli)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/array/+(_:_:)-6h58k)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-n33n)
- [static func + (Array<Element>, Array<Element>) -> Array<Element>](/documentation/swift/array/+(_:_:))
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-9fm5l)
- [static func += <Other>(inout Self, Other)](/documentation/swift/array/+=(_:_:)-676ib)
- [static func += (inout Array<Element>, Array<Element>)](/documentation/swift/array/+=(_:_:))

##### Removing Elements

- [func remove(at: Int) -> Element](/documentation/swift/array/remove(at:))
- [func removeFirst() -> Self.Element](/documentation/swift/array/removefirst())
- [func removeFirst(Int)](/documentation/swift/array/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/array/removelast())
- [func removeLast(Int)](/documentation/swift/array/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/array/removesubrange(_:)-8may1)
- [func removeSubrange<R>(R)](/documentation/swift/array/removesubrange(_:)-9twou)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-5k61r)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:))
- [func popLast() -> Self.Element?](/documentation/swift/array/poplast())

##### Finding Elements

- [func contains(Self.Element) -> Bool](/documentation/swift/array/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/first(where:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/firstindex(of:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/array/index(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/firstindex(where:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/lastindex(where:))
- [func min() -> Self.Element?](/documentation/swift/array/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/min(by:))
- [func max() -> Self.Element?](/documentation/swift/array/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/max(by:))

##### Selecting Elements

- [func prefix(Int) -> Self.SubSequence](/documentation/swift/array/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/array/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/array/suffix(from:))

##### Excluding Elements

- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/array/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/array/droplast(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/drop(while:))

##### Transforming an Array

- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/array/flatmap(_:)-i3mr)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/flatmap(_:)-6chu8)
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/compactmap(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/array/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/array/reduce(into:_:))
- [var lazy: LazySequence<Self>](/documentation/swift/array/lazy)

##### Iterating Over an Array’s Elements

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/array/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/array/enumerated())
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/array/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/array/underestimatedcount)

##### Reordering an Array’s Elements

- [func sort()](/documentation/swift/array/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/array/sort(by:))
- [func sorted() -> [Self.Element]](/documentation/swift/array/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/sorted(by:))
- [func reverse()](/documentation/swift/array/reverse())
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/array/reversed())
- [func shuffle()](/documentation/swift/array/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/array/shuffle(using:))
- [func shuffled() -> [Self.Element]](/documentation/swift/array/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/array/shuffled(using:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-90po8)
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/array/swapat(_:_:))

##### Splitting and Joining Elements

- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-3dgmv)
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/array/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/array/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/array/joined(separator:)-7uber)
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-5do1g)
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-1ckod)

##### Creating and Applying Differences

- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/array/applying(_:))
- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:by:))

##### Comparing Arrays

- [static func == (Array<Element>, Array<Element>) -> Bool](/documentation/swift/array/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/array/!=(_:_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/array/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:by:))

##### Manipulating Indices

- [var startIndex: Int](/documentation/swift/array/startindex)
- [var endIndex: Int](/documentation/swift/array/endindex)
- [func index(after: Int) -> Int](/documentation/swift/array/index(after:))
- [func formIndex(after: inout Int)](/documentation/swift/array/formindex(after:))
- [func index(before: Int) -> Int](/documentation/swift/array/index(before:))
- [func formIndex(before: inout Int)](/documentation/swift/array/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/array/index(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/array/formindex(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/array/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/array/formindex(_:offsetby:limitedby:))
- [func distance(from: Int, to: Int) -> Int](/documentation/swift/array/distance(from:to:))

##### Accessing Underlying Storage

- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/array/withunsafebufferpointer(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/array/withunsafemutablebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/array/withunsafebytes(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/array/withunsafemutablebytes(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:))

##### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/array/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/array/init(from:))

##### Describing an Array

- [var description: String](/documentation/swift/array/description)
- [var debugDescription: String](/documentation/swift/array/debugdescription)
- [var customMirror: Mirror](/documentation/swift/array/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/array/hash(into:))

##### Converting Between Arrays and Create ML Types

- [init(MLDataColumn<Element>)](/documentation/swift/array/init(_:)-2ln1a)
- [init(MLUntypedColumn)](/documentation/swift/array/init(_:)-86ka8)

##### Related Array Types

- [ContiguousArray](/documentation/swift/contiguousarray)

###### Initializers

- [init<S>(S)](/documentation/swift/contiguousarray/init(_:))
- [init<E>(capacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/init(capacity:initializingwith:))
- [init<E>(unsafeUninitializedCapacity: Int, initializingWith: (inout UnsafeMutableBufferPointer<Element>, inout Int) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/init(unsafeuninitializedcapacity:initializingwith:))

###### Instance Properties

- [var capacity: Int](/documentation/swift/contiguousarray/capacity)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/contiguousarray/mutablespan)
- [var span: Span<Element>](/documentation/swift/contiguousarray/span)

###### Instance Methods

- [func append<E>(addingCapacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/contiguousarray/append(addingcapacity:initializingwith:))
- [func insert(Element, at: Int)](/documentation/swift/contiguousarray/insert(_:at:))
- [func remove(at: Int) -> Element](/documentation/swift/contiguousarray/remove(at:))
- [func reserveCapacity(Int)](/documentation/swift/contiguousarray/reservecapacity(_:))
- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/contiguousarray/withunsafebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/contiguousarray/withunsafebytes(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/contiguousarray/withunsafemutablebufferpointer(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/contiguousarray/withunsafemutablebytes(_:))

###### Default Implementations

- [Attachable Implementations](/documentation/swift/contiguousarray/attachable-implementations)

###### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<ContiguousArray<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/contiguousarray/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/contiguousarray/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/contiguousarray/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/contiguousarray/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/contiguousarray/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/contiguousarray/joined(separator:)-cdql)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/contiguousarray/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/contiguousarray/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/suffix(_:))
- [Collection Implementations](/documentation/swift/contiguousarray/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/contiguousarray/count)
- [var first: Self.Element?](/documentation/swift/contiguousarray/first)
- [var isEmpty: Bool](/documentation/swift/contiguousarray/isempty)
- [var underestimatedCount: Int](/documentation/swift/contiguousarray/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/contiguousarray/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/contiguousarray/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/contiguousarray/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/contiguousarray/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/contiguousarray/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/contiguousarray/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/contiguousarray/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/contiguousarray/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/contiguousarray/map(_:)-8zwtw)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/contiguousarray/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/contiguousarray/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/contiguousarray/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/contiguousarray/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/contiguousarray/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/contiguousarray/split(separator:maxsplits:omittingemptysubsequences:)-3y2q6)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/contiguousarray/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/contiguousarray/subscript(_:)-57hw)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-997ec)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-9rwz8)

###### Type Aliases

- [ContiguousArray.Iterator](/documentation/swift/contiguousarray/iterator)
- [ContiguousArray.SubSequence](/documentation/swift/contiguousarray/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/contiguousarray/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/contiguousarray/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/contiguousarray/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/contiguousarray/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/contiguousarray/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/contiguousarray/description)
- [Decodable Implementations](/documentation/swift/contiguousarray/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/contiguousarray/init(from:))
- [Encodable Implementations](/documentation/swift/contiguousarray/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/contiguousarray/encode(to:))
- [Equatable Implementations](/documentation/swift/contiguousarray/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/contiguousarray/!=(_:_:))
- [static func == (ContiguousArray<Element>, ContiguousArray<Element>) -> Bool](/documentation/swift/contiguousarray/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/contiguousarray/expressiblebyarrayliteral-implementations)

###### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/contiguousarray/init(arrayliteral:))

###### Type Aliases

- [ContiguousArray.ArrayLiteralElement](/documentation/swift/contiguousarray/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/contiguousarray/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/contiguousarray/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/contiguousarray/hash(into:))
- [MutableCollection Implementations](/documentation/swift/contiguousarray/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/contiguousarray/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/contiguousarray/partition(by:)-2g3t0)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/contiguousarray/partition(by:)-2uabq)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/contiguousarray/removesubranges(_:)-5ci4m)
- [func reverse()](/documentation/swift/contiguousarray/reverse())
- [func shuffle()](/documentation/swift/contiguousarray/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/contiguousarray/shuffle(using:))
- [func sort()](/documentation/swift/contiguousarray/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/contiguousarray/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousmutablestorageifavailable(_:)-5k8vo)

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-17v9t)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-27a3j)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/contiguousarray/subscript(_:)-6knxt)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/contiguousarray/subscript(_:)-7ribf)
- [OperationParameter Implementations](/documentation/swift/contiguousarray/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/contiguousarray/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/contiguousarray/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/contiguousarray/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/contiguousarray/indices-swift.property)
- [var startIndex: Int](/documentation/swift/contiguousarray/startindex)

###### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/contiguousarray/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/contiguousarray/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/contiguousarray/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/contiguousarray/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/contiguousarray/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/contiguousarray/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/contiguousarray/index(before:))

###### Subscripts

- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/contiguousarray/subscript(_:)-41wt7)
- [subscript(Int) -> Element](/documentation/swift/contiguousarray/subscript(_:)-899p6)

###### Type Aliases

- [ContiguousArray.Index](/documentation/swift/contiguousarray/index)
- [ContiguousArray.Indices](/documentation/swift/contiguousarray/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/contiguousarray/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/contiguousarray/+(_:_:)-1rz1t)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/contiguousarray/+(_:_:)-3ntif)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/contiguousarray/+(_:_:)-5igl)
- [static func += <Other>(inout Self, Other)](/documentation/swift/contiguousarray/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/contiguousarray/init())
- [init<S>(S)](/documentation/swift/contiguousarray/init(_:)-19zub)
- [init(repeating: Element, count: Int)](/documentation/swift/contiguousarray/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/contiguousarray/init(repeating:count:)-47x84)

###### Instance Methods

- [func append(Element)](/documentation/swift/contiguousarray/append(_:))
- [func append(Self.Element)](/documentation/swift/contiguousarray/append(_:)-4na3g)
- [func append<S>(contentsOf: S)](/documentation/swift/contiguousarray/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/contiguousarray/append(contentsof:)-66qjk)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/contiguousarray/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/contiguousarray/insert(_:at:)-81ye7)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/contiguousarray/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/contiguousarray/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/contiguousarray/remove(at:)-6yx8z)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/contiguousarray/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/contiguousarray/removeall(keepingcapacity:)-2onkd)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/removeall(where:)-3or72)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/contiguousarray/removeall(where:)-44y75)
- [func removeFirst() -> Self.Element](/documentation/swift/contiguousarray/removefirst())
- [func removeFirst(Int)](/documentation/swift/contiguousarray/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/contiguousarray/removelast())
- [func removeLast(Int)](/documentation/swift/contiguousarray/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/contiguousarray/removesubrange(_:)-3k98x)
- [func removeSubrange<R>(R)](/documentation/swift/contiguousarray/removesubrange(_:)-8cd5m)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/contiguousarray/removesubranges(_:)-147en)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:)-4iomk)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/contiguousarray/replacesubrange(_:with:)-95xhb)
- [func reserveCapacity(Int)](/documentation/swift/contiguousarray/reservecapacity(_:)-4601w)
- [Sequence Implementations](/documentation/swift/contiguousarray/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/contiguousarray/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/contiguousarray/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/contiguousarray/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/contiguousarray/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/contiguousarray/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/contiguousarray/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/contiguousarray/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/contiguousarray/flatmap(_:)-6m9od)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/contiguousarray/flatmap(_:)-7rx5w)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/contiguousarray/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/contiguousarray/joined())
- [func joined(separator: String) -> String](/documentation/swift/contiguousarray/joined(separator:)-3fljd)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/contiguousarray/joined(separator:)-7bjrf)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/contiguousarray/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/contiguousarray/map(_:)-6seys)
- [func max() -> Self.Element?](/documentation/swift/contiguousarray/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/max(by:))
- [func min() -> Self.Element?](/documentation/swift/contiguousarray/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/contiguousarray/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/contiguousarray/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/contiguousarray/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/contiguousarray/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/contiguousarray/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/contiguousarray/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/contiguousarray/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/contiguousarray/split(separator:maxsplits:omittingemptysubsequences:)-3wzsn)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/contiguousarray/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/contiguousarray/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/contiguousarray/withcontiguousstorageifavailable(_:)-17uda)
- [ArraySlice](/documentation/swift/arrayslice)

###### Initializers

- [init<S>(S)](/documentation/swift/arrayslice/init(_:))

###### Instance Properties

- [var capacity: Int](/documentation/swift/arrayslice/capacity)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/arrayslice/mutablespan)
- [var span: Span<Element>](/documentation/swift/arrayslice/span)

###### Instance Methods

- [func insert(Element, at: Int)](/documentation/swift/arrayslice/insert(_:at:))
- [func remove(at: Int) -> Element](/documentation/swift/arrayslice/remove(at:))
- [func reserveCapacity(Int)](/documentation/swift/arrayslice/reservecapacity(_:))
- [func withUnsafeBufferPointer<R, E>((UnsafeBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/arrayslice/withunsafebufferpointer(_:))
- [func withUnsafeBytes<R>((UnsafeRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/arrayslice/withunsafebytes(_:))
- [func withUnsafeMutableBufferPointer<R, E>((inout UnsafeMutableBufferPointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/arrayslice/withunsafemutablebufferpointer(_:))
- [func withUnsafeMutableBytes<R>((UnsafeMutableRawBufferPointer) throws -> R) rethrows -> R](/documentation/swift/arrayslice/withunsafemutablebytes(_:))

###### Default Implementations

- [Attachable Implementations](/documentation/swift/arrayslice/attachable-implementations)

###### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<ArraySlice<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/arrayslice/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/arrayslice/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/arrayslice/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/arrayslice/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/arrayslice/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/arrayslice/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/arrayslice/joined(separator:)-9k2fw)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/arrayslice/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-3t0h0)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-2ndpz)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-8vsvg)
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/arrayslice/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/arrayslice/suffix(_:))
- [Collection Implementations](/documentation/swift/arrayslice/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/arrayslice/count)
- [var first: Self.Element?](/documentation/swift/arrayslice/first)
- [var isEmpty: Bool](/documentation/swift/arrayslice/isempty)
- [var underestimatedCount: Int](/documentation/swift/arrayslice/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/arrayslice/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/arrayslice/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/arrayslice/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/arrayslice/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/arrayslice/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/arrayslice/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/arrayslice/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/arrayslice/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/arrayslice/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/arrayslice/map(_:)-5ink0)
- [func popFirst() -> Self.Element?](/documentation/swift/arrayslice/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/arrayslice/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/arrayslice/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/arrayslice/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-m0co)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-7hplr)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/arrayslice/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/arrayslice/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/arrayslice/split(separator:maxsplits:omittingemptysubsequences:)-c3jd)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/arrayslice/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/arrayslice/subscript(_:)-2l9zt)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-4bx21)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-4x3qz)

###### Type Aliases

- [ArraySlice.Iterator](/documentation/swift/arrayslice/iterator)
- [ArraySlice.SubSequence](/documentation/swift/arrayslice/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/arrayslice/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/arrayslice/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/arrayslice/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/arrayslice/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/arrayslice/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/arrayslice/description)
- [Equatable Implementations](/documentation/swift/arrayslice/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/arrayslice/!=(_:_:))
- [static func == (ArraySlice<Element>, ArraySlice<Element>) -> Bool](/documentation/swift/arrayslice/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/arrayslice/expressiblebyarrayliteral-implementations)

###### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/arrayslice/init(arrayliteral:))

###### Type Aliases

- [ArraySlice.ArrayLiteralElement](/documentation/swift/arrayslice/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/arrayslice/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/arrayslice/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/arrayslice/hash(into:))
- [MutableCollection Implementations](/documentation/swift/arrayslice/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/arrayslice/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/arrayslice/partition(by:)-2s919)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/arrayslice/partition(by:)-706dh)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/arrayslice/removesubranges(_:)-k50b)
- [func reverse()](/documentation/swift/arrayslice/reverse())
- [func shuffle()](/documentation/swift/arrayslice/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/arrayslice/shuffle(using:))
- [func sort()](/documentation/swift/arrayslice/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/arrayslice/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousmutablestorageifavailable(_:)-5vekj)

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-3f18y)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-6gtfn)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/arrayslice/subscript(_:)-7gag3)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/arrayslice/subscript(_:)-7xg8e)
- [OperationParameter Implementations](/documentation/swift/arrayslice/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/arrayslice/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/arrayslice/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/arrayslice/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/arrayslice/indices-swift.property)
- [var startIndex: Int](/documentation/swift/arrayslice/startindex)

###### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/arrayslice/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/arrayslice/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/arrayslice/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/arrayslice/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/arrayslice/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/arrayslice/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/arrayslice/index(before:))

###### Subscripts

- [subscript(Int) -> Element](/documentation/swift/arrayslice/subscript(_:)-4e8d9)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/arrayslice/subscript(_:)-63qca)

###### Type Aliases

- [ArraySlice.Index](/documentation/swift/arrayslice/index)
- [ArraySlice.Indices](/documentation/swift/arrayslice/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/arrayslice/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/arrayslice/+(_:_:)-2jvah)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/arrayslice/+(_:_:)-3xq1b)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/arrayslice/+(_:_:)-8elcw)
- [static func += <Other>(inout Self, Other)](/documentation/swift/arrayslice/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/arrayslice/init())
- [init<S>(S)](/documentation/swift/arrayslice/init(_:)-4qauj)
- [init(repeating: Element, count: Int)](/documentation/swift/arrayslice/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/arrayslice/init(repeating:count:)-95f9t)

###### Instance Methods

- [func append(Element)](/documentation/swift/arrayslice/append(_:))
- [func append(Self.Element)](/documentation/swift/arrayslice/append(_:)-88nog)
- [func append<S>(contentsOf: S)](/documentation/swift/arrayslice/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/arrayslice/append(contentsof:)-6pxfb)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/arrayslice/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/arrayslice/insert(_:at:)-2orxu)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/arrayslice/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-225tk)
- [func popLast() -> Self.Element?](/documentation/swift/arrayslice/poplast()-ftzx)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/arrayslice/remove(at:)-8p8nf)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/arrayslice/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/arrayslice/removeall(keepingcapacity:)-1wh07)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/removeall(where:)-10tcx)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/arrayslice/removeall(where:)-23c5i)
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-60cu4)
- [func removeFirst() -> Self.Element](/documentation/swift/arrayslice/removefirst()-svki)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-285s6)
- [func removeFirst(Int)](/documentation/swift/arrayslice/removefirst(_:)-3up7n)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-67p7c)
- [func removeLast() -> Self.Element](/documentation/swift/arrayslice/removelast()-9iuw9)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-33c55)
- [func removeLast(Int)](/documentation/swift/arrayslice/removelast(_:)-5oepe)
- [func removeSubrange<R>(R)](/documentation/swift/arrayslice/removesubrange(_:)-2zu9f)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/arrayslice/removesubrange(_:)-celt)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/arrayslice/removesubranges(_:)-947o4)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:))
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:)-5g1qk)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/arrayslice/replacesubrange(_:with:)-9rz4g)
- [func reserveCapacity(Int)](/documentation/swift/arrayslice/reservecapacity(_:)-11kse)
- [Sequence Implementations](/documentation/swift/arrayslice/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/arrayslice/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/arrayslice/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/arrayslice/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/arrayslice/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/arrayslice/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/arrayslice/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/arrayslice/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/arrayslice/flatmap(_:)-7xqts)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/arrayslice/flatmap(_:)-85ysn)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/arrayslice/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/arrayslice/joined())
- [func joined(separator: String) -> String](/documentation/swift/arrayslice/joined(separator:)-4dlb8)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/arrayslice/joined(separator:)-9u907)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/arrayslice/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/arrayslice/map(_:)-4axhk)
- [func max() -> Self.Element?](/documentation/swift/arrayslice/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/max(by:))
- [func min() -> Self.Element?](/documentation/swift/arrayslice/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/arrayslice/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/arrayslice/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/arrayslice/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/arrayslice/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/arrayslice/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/arrayslice/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/arrayslice/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/arrayslice/split(separator:maxsplits:omittingemptysubsequences:)-4rp31)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/arrayslice/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/arrayslice/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/arrayslice/withcontiguousstorageifavailable(_:)-7e6xh)

##### Reference Types

- [NSArray](/documentation/foundation/nsarray)
- [NSMutableArray](/documentation/foundation/nsmutablearray)

##### Supporting Types

- [Array.Index](/documentation/swift/array/index)
- [Array.Indices](/documentation/swift/array/indices)
- [Array.Iterator](/documentation/swift/array/iterator)
- [Array.ArrayLiteralElement](/documentation/swift/array/arrayliteralelement)
- [Array.SubSequence](/documentation/swift/array/subsequence)

##### Infrequently Used Functionality

- [init(arrayLiteral: Element...)](/documentation/swift/array/init(arrayliteral:))
- [var hashValue: Int](/documentation/swift/array/hashvalue)

##### Initializers

- [init<E>(capacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/array/init(capacity:initializingwith:))
- [init(fromSplitComplex: DSPSplitComplex, scale: Float, count: Int)](/documentation/swift/array/init(fromsplitcomplex:scale:count:)-5eirc)
- [init(fromSplitComplex: DSPDoubleSplitComplex, scale: Double, count: Int)](/documentation/swift/array/init(fromsplitcomplex:scale:count:)-5kgr3)

##### Instance Properties

- [var mutableSpan: MutableSpan<Element>](/documentation/swift/array/mutablespan)
- [var span: Span<Element>](/documentation/swift/array/span)

##### Instance Methods

- [func append<E>(addingCapacity: Int, initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/array/append(addingcapacity:initializingwith:))
- [func withUnsafeTaggedBuffers<R>(([CMTaggedBuffer]) throws -> sending R) rethrows -> sending R](/documentation/swift/array/withunsafetaggedbuffers(_:))

##### Type Aliases

- [Array.Specification](/documentation/swift/array/specification)
- [Array.UnderlyingSequence](/documentation/swift/array/underlyingsequence)
- [Array.UnwrappedType](/documentation/swift/array/unwrappedtype)
- [Array.ValueType](/documentation/swift/array/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: EmptyResolverSpecification<Array<Element>>](/documentation/swift/array/defaultresolverspecification)

##### Type Methods

- [static func monoscopicForVideoOutput() -> [CMTag]](/documentation/swift/array/monoscopicforvideooutput())
- [static func stereoscopicForVideoOutput() -> [CMTag]](/documentation/swift/array/stereoscopicforvideooutput())

##### Default Implementations

- [Attachable Implementations](/documentation/swift/array/attachable-implementations)

###### Instance Methods

- [func withUnsafeBytes<R>(for: borrowing Attachment<Array<Element>>, (UnsafeRawBufferPointer) throws -> R) throws -> R](/documentation/swift/array/withunsafebytes(for:_:))
- [BidirectionalCollection Implementations](/documentation/swift/array/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/array/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/array/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/array/droplast(_:))
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-5do1g)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/array/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/array/suffix(_:))
- [Collection Implementations](/documentation/swift/array/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/array/count)
- [var first: Self.Element?](/documentation/swift/array/first)
- [var isEmpty: Bool](/documentation/swift/array/isempty)
- [var underestimatedCount: Int](/documentation/swift/array/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/array/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/array/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/array/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/array/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/array/formindex(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/array/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/array/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/array/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/array/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/array/map(_:)-5p6o3)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/array/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/array/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/array/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/array/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/array/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/array/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/array/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-3dgmv)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/array/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/array/subscript(_:)-392p1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4al8y)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-4h7rl)

###### Type Aliases

- [Array.Iterator](/documentation/swift/array/iterator)
- [Array.SubSequence](/documentation/swift/array/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/array/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/array/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/array/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/array/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/array/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/array/description)
- [Decodable Implementations](/documentation/swift/array/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/array/init(from:))
- [Encodable Implementations](/documentation/swift/array/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/array/encode(to:))
- [Equatable Implementations](/documentation/swift/array/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/array/!=(_:_:))
- [static func == (Array<Element>, Array<Element>) -> Bool](/documentation/swift/array/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/array/expressiblebyarrayliteral-implementations)

###### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/array/init(arrayliteral:))

###### Type Aliases

- [Array.ArrayLiteralElement](/documentation/swift/array/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/array/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/array/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/array/hash(into:))
- [MutableCollection Implementations](/documentation/swift/array/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/array/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-33stm)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/array/partition(by:)-90po8)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/array/removesubranges(_:)-276ym)
- [func reverse()](/documentation/swift/array/reverse())
- [func shuffle()](/documentation/swift/array/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/array/shuffle(using:))
- [func sort()](/documentation/swift/array/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/array/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/array/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousmutablestorageifavailable(_:)-7398r)

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/array/subscript(_:)-3i28)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3kwny)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-3pmfg)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/array/subscript(_:)-9v9l6)
- [OperationParameter Implementations](/documentation/swift/array/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/array/graphbuildertensor(_:))
- [RandomAccessCollection Implementations](/documentation/swift/array/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/array/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/array/indices-swift.property)
- [var startIndex: Int](/documentation/swift/array/startindex)

###### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/array/distance(from:to:))
- [func formIndex(after: inout Int)](/documentation/swift/array/formindex(after:))
- [func formIndex(before: inout Int)](/documentation/swift/array/formindex(before:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/array/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/array/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/array/index(after:))
- [func index(before: Int) -> Int](/documentation/swift/array/index(before:))

###### Subscripts

- [subscript(Int) -> Element](/documentation/swift/array/subscript(_:)-25iat)
- [subscript(Range<Int>) -> ArraySlice<Element>](/documentation/swift/array/subscript(_:)-53fvb)

###### Type Aliases

- [Array.Index](/documentation/swift/array/index)
- [Array.Indices](/documentation/swift/array/indices)
- [RangeReplaceableCollection Implementations](/documentation/swift/array/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Other, Self) -> Self](/documentation/swift/array/+(_:_:)-6h58k)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-9fm5l)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/array/+(_:_:)-n33n)
- [static func += <Other>(inout Self, Other)](/documentation/swift/array/+=(_:_:)-676ib)

###### Initializers

- [init()](/documentation/swift/array/init())
- [init<S>(S)](/documentation/swift/array/init(_:)-1ip9h)
- [init(repeating: Element, count: Int)](/documentation/swift/array/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/array/init(repeating:count:)-5y5f0)

###### Instance Methods

- [func append(Element)](/documentation/swift/array/append(_:))
- [func append(Self.Element)](/documentation/swift/array/append(_:)-1re55)
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:))
- [func append<S>(contentsOf: S)](/documentation/swift/array/append(contentsof:)-9foli)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/array/applying(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/array/insert(_:at:)-88yqz)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/array/insert(contentsof:at:))
- [func popLast() -> Self.Element?](/documentation/swift/array/poplast())
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/array/remove(at:)-5g0x0)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/array/removeall(keepingcapacity:)-6xw8v)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-5k61r)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/array/removeall(where:)-6bd6r)
- [func removeFirst() -> Self.Element](/documentation/swift/array/removefirst())
- [func removeFirst(Int)](/documentation/swift/array/removefirst(_:))
- [func removeLast() -> Self.Element](/documentation/swift/array/removelast())
- [func removeLast(Int)](/documentation/swift/array/removelast(_:))
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/array/removesubrange(_:)-8may1)
- [func removeSubrange<R>(R)](/documentation/swift/array/removesubrange(_:)-9twou)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/array/removesubranges(_:)-5xi38)
- [func replaceSubrange<C>(Range<Int>, with: C)](/documentation/swift/array/replacesubrange(_:with:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/array/replacesubrange(_:with:)-3hkdk)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/array/replacesubrange(_:with:)-7293p)
- [func reserveCapacity(Int)](/documentation/swift/array/reservecapacity(_:)-8lw3t)
- [Sequence Implementations](/documentation/swift/array/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/array/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/array/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/array/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/array/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/array/flatmap(_:)-6chu8)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/array/flatmap(_:)-i3mr)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/array/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/array/joined())
- [func joined(separator: String) -> String](/documentation/swift/array/joined(separator:)-1ckod)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/array/joined(separator:)-7uber)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/array/map(_:)-9jnp5)
- [func max() -> Self.Element?](/documentation/swift/array/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/max(by:))
- [func min() -> Self.Element?](/documentation/swift/array/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/array/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/array/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/array/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/array/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/array/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/array/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/array/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/array/split(separator:maxsplits:omittingemptysubsequences:)-9bdwk)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/array/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/array/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/array/withcontiguousstorageifavailable(_:)-1ynsc)
- [Dictionary](/documentation/swift/dictionary)

##### Creating a Dictionary

- [init()](/documentation/swift/dictionary/init())
- [init(minimumCapacity: Int)](/documentation/swift/dictionary/init(minimumcapacity:))
- [init<S>(uniqueKeysWithValues: S)](/documentation/swift/dictionary/init(uniquekeyswithvalues:))
- [init<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/init(_:uniquingkeyswith:))
- [init<S>(grouping: S, by: (S.Element) throws -> Key) rethrows](/documentation/swift/dictionary/init(grouping:by:))

##### Inspecting a Dictionary

- [var isEmpty: Bool](/documentation/swift/dictionary/isempty)
- [var count: Int](/documentation/swift/dictionary/count)
- [var capacity: Int](/documentation/swift/dictionary/capacity)

##### Accessing Keys and Values

- [subscript(Key) -> Value?](/documentation/swift/dictionary/subscript(_:)-8rfql)
- [subscript(Key, default _: @autoclosure () -> Value) -> Value](/documentation/swift/dictionary/subscript(_:default:))
- [func index(forKey: Key) -> Dictionary<Key, Value>.Index?](/documentation/swift/dictionary/index(forkey:))
- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/subscript(_:)-4bhoo)
- [var keys: Dictionary<Key, Value>.Keys](/documentation/swift/dictionary/keys-swift.property)
- [var values: Dictionary<Key, Value>.Values](/documentation/swift/dictionary/values-swift.property)
- [var first: Self.Element?](/documentation/swift/dictionary/first)
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/randomelement(using:))

##### Adding Keys and Values

- [func updateValue(Value, forKey: Key) -> Value?](/documentation/swift/dictionary/updatevalue(_:forkey:))
- [func merge([Key : Value], uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/merge(_:uniquingkeyswith:)-m2ub)
- [func merge<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows](/documentation/swift/dictionary/merge(_:uniquingkeyswith:)-7smbb)
- [func merging([Key : Value], uniquingKeysWith: (Value, Value) throws -> Value) rethrows -> [Key : Value]](/documentation/swift/dictionary/merging(_:uniquingkeyswith:)-3vtfs)
- [func merging<S>(S, uniquingKeysWith: (Value, Value) throws -> Value) rethrows -> [Key : Value]](/documentation/swift/dictionary/merging(_:uniquingkeyswith:)-9bik6)
- [func reserveCapacity(Int)](/documentation/swift/dictionary/reservecapacity(_:))

##### Removing Keys and Values

- [func filter((Dictionary<Key, Value>.Element) throws -> Bool) rethrows -> [Key : Value]](/documentation/swift/dictionary/filter(_:))
- [func removeValue(forKey: Key) -> Value?](/documentation/swift/dictionary/removevalue(forkey:))
- [func remove(at: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/dictionary/removeall(keepingcapacity:))

##### Comparing Dictionaries

- [static func == ([Key : Value], [Key : Value]) -> Bool](/documentation/swift/dictionary/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/!=(_:_:))

##### Iterating over Keys and Values

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/enumerated())
- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/lazy)
- [func makeIterator() -> Dictionary<Key, Value>.Iterator](/documentation/swift/dictionary/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/dictionary/underestimatedcount)

##### Finding Elements

- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/first(where:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/firstindex(where:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/min(by:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/max(by:))

##### Transforming a Dictionary

- [func mapValues<T>((Value) throws -> T) rethrows -> Dictionary<Key, T>](/documentation/swift/dictionary/mapvalues(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/reduce(into:_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/compactmap(_:))
- [func compactMapValues<T>((Value) throws -> T?) rethrows -> Dictionary<Key, T>](/documentation/swift/dictionary/compactmapvalues(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/flatmap(_:)-i3ly)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/flatmap(_:)-6chv9)
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/sorted(by:))
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/shuffled(using:))

##### Performing Collection Operations

- [Order Dependent Operations on Dictionary](/documentation/swift/order-dependent-operations-on-dictionary)

###### Comparing Dictionaries

- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/lexicographicallyprecedes(_:by:))

###### Manipulating Indices

- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/startindex)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/endindex)
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/index(after:))
- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/index(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/formindex(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/formindex(_:offsetby:limitedby:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/distance(from:to:))
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/indices-swift.property)

###### Selecting Elements

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/dictionary/subscript(_:)-2ny9y)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4h7sk)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4al9z)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/suffix(from:))

###### Excluding Elements

- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/dropfirst(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/drop(while:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/droplast(_:))
- [func popFirst() -> Dictionary<Key, Value>.Element?](/documentation/swift/dictionary/popfirst())

###### Transforming a Dictionary’s Elements

- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/reversed())
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/withcontiguousstorageifavailable(_:))

##### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/dictionary/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/dictionary/init(from:)-6e6js)

##### Describing a Dictionary

- [var description: String](/documentation/swift/dictionary/description)
- [var debugDescription: String](/documentation/swift/dictionary/debugdescription)
- [var customMirror: Mirror](/documentation/swift/dictionary/custommirror)
- [func hash(into: inout Hasher)](/documentation/swift/dictionary/hash(into:))

##### Using a Dictionary as a Data Value

- [init?(from: MLDataValue.DictionaryType)](/documentation/swift/dictionary/init(from:)-5zhfu)

##### Reference Types

- [NSDictionary](/documentation/foundation/nsdictionary)
- [NSMutableDictionary](/documentation/foundation/nsmutabledictionary)

##### Supporting Types

- [Dictionary.Keys](/documentation/swift/dictionary/keys-swift.struct)

###### Operators

- [static func == (Dictionary<Key, Value>.Keys, Dictionary<Key, Value>.Keys) -> Bool](/documentation/swift/dictionary/keys-swift.struct/==(_:_:))

###### Instance Properties

- [var count: Int](/documentation/swift/dictionary/keys-swift.struct/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/endindex)
- [var isEmpty: Bool](/documentation/swift/dictionary/keys-swift.struct/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/startindex)

###### Instance Methods

- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/keys-swift.struct/formindex(after:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/keys-swift.struct/index(after:))

###### Subscripts

- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Keys.Element](/documentation/swift/dictionary/keys-swift.struct/subscript(_:))

###### Type Aliases

- [Dictionary.Keys.Element](/documentation/swift/dictionary/keys-swift.struct/element)
- [Dictionary.Keys.Index](/documentation/swift/dictionary/keys-swift.struct/index)
- [Dictionary.Keys.Indices](/documentation/swift/dictionary/keys-swift.struct/indices)
- [Dictionary.Keys.SubSequence](/documentation/swift/dictionary/keys-swift.struct/subsequence)

###### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/keys-swift.struct/collection-implementations)

###### Structures

- [Dictionary.Keys.Iterator](/documentation/swift/dictionary/keys-swift.struct/iterator)

###### Instance Methods

- [func next() -> Key?](/documentation/swift/dictionary/keys-swift.struct/iterator/next())

###### Type Aliases

- [Dictionary.Keys.Iterator.Element](/documentation/swift/dictionary/keys-swift.struct/iterator/element)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/dictionary/keys-swift.struct/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/keys-swift.struct/indices-swift.property)
- [var underestimatedCount: Int](/documentation/swift/dictionary/keys-swift.struct/underestimatedcount)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/keys-swift.struct/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/keys-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/keys-swift.struct/formindex(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/keys-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/index(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/keys-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/dictionary/keys-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/keys-swift.struct/indices(where:))
- [func makeIterator() -> Dictionary<Key, Value>.Keys.Iterator](/documentation/swift/dictionary/keys-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/keys-swift.struct/map(_:)-6ax5v)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/keys-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/keys-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/dictionary/keys-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/keys-swift.struct/suffix(from:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/keys-swift.struct/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/keys-swift.struct/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/keys-swift.struct/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/dictionary/keys-swift.struct/description)
- [Equatable Implementations](/documentation/swift/dictionary/keys-swift.struct/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/keys-swift.struct/!=(_:_:))
- [Sequence Implementations](/documentation/swift/dictionary/keys-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/keys-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/keys-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dictionary/keys-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/keys-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/keys-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/keys-swift.struct/flatmap(_:)-3ae31)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/keys-swift.struct/flatmap(_:)-7ugeg)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/keys-swift.struct/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/joined())
- [func joined(separator: String) -> String](/documentation/swift/dictionary/keys-swift.struct/joined(separator:)-4ko61)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dictionary/keys-swift.struct/joined(separator:)-97ue4)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/keys-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/keys-swift.struct/map(_:)-65dmp)
- [func max() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/keys-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/keys-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/keys-swift.struct/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/keys-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dictionary/keys-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/keys-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/keys-swift.struct/withcontiguousstorageifavailable(_:))
- [Dictionary.Values](/documentation/swift/dictionary/values-swift.struct)

###### Instance Properties

- [var count: Int](/documentation/swift/dictionary/values-swift.struct/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/endindex)
- [var isEmpty: Bool](/documentation/swift/dictionary/values-swift.struct/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/startindex)

###### Instance Methods

- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/values-swift.struct/formindex(after:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/values-swift.struct/index(after:))
- [func swapAt(Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/values-swift.struct/swapat(_:_:))

###### Subscripts

- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Values.Element](/documentation/swift/dictionary/values-swift.struct/subscript(_:))

###### Type Aliases

- [Dictionary.Values.Element](/documentation/swift/dictionary/values-swift.struct/element)
- [Dictionary.Values.Index](/documentation/swift/dictionary/values-swift.struct/index)
- [Dictionary.Values.Indices](/documentation/swift/dictionary/values-swift.struct/indices)
- [Dictionary.Values.SubSequence](/documentation/swift/dictionary/values-swift.struct/subsequence)

###### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/values-swift.struct/collection-implementations)

###### Structures

- [Dictionary.Values.Iterator](/documentation/swift/dictionary/values-swift.struct/iterator)

###### Instance Methods

- [func next() -> Value?](/documentation/swift/dictionary/values-swift.struct/iterator/next())

###### Type Aliases

- [Dictionary.Values.Iterator.Element](/documentation/swift/dictionary/values-swift.struct/iterator/element)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/dictionary/values-swift.struct/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/values-swift.struct/indices-swift.property)
- [var underestimatedCount: Int](/documentation/swift/dictionary/values-swift.struct/underestimatedcount)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/values-swift.struct/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/values-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/values-swift.struct/formindex(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/values-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/index(_:offsetby:limitedby:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/dictionary/values-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/dictionary/values-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/values-swift.struct/indices(where:))
- [func makeIterator() -> Dictionary<Key, Value>.Values.Iterator](/documentation/swift/dictionary/values-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/values-swift.struct/map(_:)-8qoco)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/values-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/values-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/dictionary/values-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)-4wty7)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/values-swift.struct/suffix(from:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/values-swift.struct/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/values-swift.struct/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/values-swift.struct/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/dictionary/values-swift.struct/description)
- [MutableCollection Implementations](/documentation/swift/dictionary/values-swift.struct/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/dictionary/values-swift.struct/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/dictionary/values-swift.struct/partition(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/dictionary/values-swift.struct/swapat(_:_:)-18i76)
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/values-swift.struct/withcontiguousmutablestorageifavailable(_:))
- [Sequence Implementations](/documentation/swift/dictionary/values-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/values-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/values-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dictionary/values-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/values-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/values-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/values-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/values-swift.struct/flatmap(_:)-5q6nn)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/values-swift.struct/flatmap(_:)-ibzs)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/values-swift.struct/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dictionary/values-swift.struct/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dictionary/values-swift.struct/joined(separator:)-2hpp2)
- [func joined(separator: String) -> String](/documentation/swift/dictionary/values-swift.struct/joined(separator:)-7q9rn)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dictionary/values-swift.struct/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/values-swift.struct/map(_:)-3eu5x)
- [func max() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/values-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/values-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/values-swift.struct/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/values-swift.struct/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/dictionary/values-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)-7qpti)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dictionary/values-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/values-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/values-swift.struct/withcontiguousstorageifavailable(_:))
- [Dictionary.Index](/documentation/swift/dictionary/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/dictionary/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/dictionary/index/'...(_:)-4p0eq)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/dictionary/index/'...(_:)-6z81l)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/dictionary/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/dictionary/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/dictionary/index/'.._(_:_:))
- [static func < (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/dictionary/index/_(_:_:)-7cwwa)
- [static func <= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-2svy0)
- [static func >= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-6o53l)
- [Equatable Implementations](/documentation/swift/dictionary/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/index/!=(_:_:))
- [static func == (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/dictionary/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/index/hash(into:))
- [Dictionary.Indices](/documentation/swift/dictionary/indices)
- [Dictionary.Iterator](/documentation/swift/dictionary/iterator)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/dictionary/iterator/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/dictionary/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> (key: Key, value: Value)?](/documentation/swift/dictionary/iterator/next())

###### Type Aliases

- [Dictionary.Iterator.Element](/documentation/swift/dictionary/iterator/element)

##### Creating a Dictionary from an Attribute Container

- [init<S>(AttributeContainer, including: S.Type) throws](/documentation/swift/dictionary/init(_:including:)-7afz2)
- [init<S>(AttributeContainer, including: KeyPath<AttributeScopes, S.Type>) throws](/documentation/swift/dictionary/init(_:including:)-8ls7v)
- [init(AttributeContainer)](/documentation/swift/dictionary/init(_:))

##### Infrequently Used Functionality

- [init(dictionaryLiteral: (Key, Value)...)](/documentation/swift/dictionary/init(dictionaryliteral:))
- [var hashValue: Int](/documentation/swift/dictionary/hashvalue)

##### Type Aliases

- [Dictionary.Element](/documentation/swift/dictionary/element)

##### Default Implementations

- [Collection Implementations](/documentation/swift/dictionary/collection-implementations)

###### Structures

- [Dictionary.Index](/documentation/swift/dictionary/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/dictionary/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/dictionary/index/'...(_:)-4p0eq)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/dictionary/index/'...(_:)-6z81l)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/dictionary/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/dictionary/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/dictionary/index/'.._(_:_:))
- [static func < (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/dictionary/index/_(_:_:)-7cwwa)
- [static func <= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-2svy0)
- [static func >= (Self, Self) -> Bool](/documentation/swift/dictionary/index/_=(_:_:)-6o53l)
- [Equatable Implementations](/documentation/swift/dictionary/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/index/!=(_:_:))
- [static func == (Dictionary<Key, Value>.Index, Dictionary<Key, Value>.Index) -> Bool](/documentation/swift/dictionary/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/dictionary/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/dictionary/count)
- [var endIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/endindex)
- [var first: Self.Element?](/documentation/swift/dictionary/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/dictionary/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/dictionary/isempty)
- [var startIndex: Dictionary<Key, Value>.Index](/documentation/swift/dictionary/startindex)
- [var underestimatedCount: Int](/documentation/swift/dictionary/underestimatedcount)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/dictionary/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/dictionary/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/dictionary/droplast(_:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/dictionary/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/dictionary/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/dictionary/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Dictionary<Key, Value>.Index)](/documentation/swift/dictionary/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/dictionary/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/dictionary/index(_:offsetby:limitedby:))
- [func index(after: Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Index](/documentation/swift/dictionary/index(after:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/dictionary/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/map(_:)-5p6p2)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/dictionary/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/dictionary/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/dictionary/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/dictionary/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/dictionary/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/dictionary/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/dictionary/suffix(from:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/dictionary/subscript(_:)-2ny9y)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/dictionary/subscript(_:)-392o0)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4al9z)
- [subscript(Dictionary<Key, Value>.Index) -> Dictionary<Key, Value>.Element](/documentation/swift/dictionary/subscript(_:)-4bhoo)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/dictionary/subscript(_:)-4h7sk)

###### Type Aliases

- [Dictionary.Indices](/documentation/swift/dictionary/indices)
- [Dictionary.SubSequence](/documentation/swift/dictionary/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/dictionary/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/dictionary/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/dictionary/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/dictionary/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/dictionary/description)
- [Decodable Implementations](/documentation/swift/dictionary/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/dictionary/init(from:)-6e6js)
- [Encodable Implementations](/documentation/swift/dictionary/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/dictionary/encode(to:))
- [Equatable Implementations](/documentation/swift/dictionary/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/dictionary/!=(_:_:))
- [static func == ([Key : Value], [Key : Value]) -> Bool](/documentation/swift/dictionary/==(_:_:))
- [ExpressibleByDictionaryLiteral Implementations](/documentation/swift/dictionary/expressiblebydictionaryliteral-implementations)

###### Initializers

- [init(dictionaryLiteral: (Key, Value)...)](/documentation/swift/dictionary/init(dictionaryliteral:))
- [Hashable Implementations](/documentation/swift/dictionary/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/dictionary/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/dictionary/hash(into:))
- [Sequence Implementations](/documentation/swift/dictionary/sequence-implementations)

###### Structures

- [Dictionary.Iterator](/documentation/swift/dictionary/iterator)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/dictionary/iterator/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/dictionary/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/dictionary/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> (key: Key, value: Value)?](/documentation/swift/dictionary/iterator/next())

###### Type Aliases

- [Dictionary.Iterator.Element](/documentation/swift/dictionary/iterator/element)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dictionary/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dictionary/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dictionary/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dictionary/flatmap(_:)-6chv9)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dictionary/flatmap(_:)-i3ly)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dictionary/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Dictionary<Key, Value>.Iterator](/documentation/swift/dictionary/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dictionary/map(_:)-9jnoc)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dictionary/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dictionary/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dictionary/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dictionary/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dictionary/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dictionary/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dictionary/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dictionary/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dictionary/withcontiguousstorageifavailable(_:))
- [InlineArray](/documentation/swift/inlinearray)

##### Initializers

- [init<E>((InlineArray<count, Element>.Index) throws(E) -> Element) throws(E)](/documentation/swift/inlinearray/init(_:))
- [init<E>(first: consuming Element, next: (borrowing Element) throws(E) -> Element) throws(E)](/documentation/swift/inlinearray/init(first:next:))
- [init<E>(initializingWith: (inout OutputSpan<Element>) throws(E) -> Void) throws(E)](/documentation/swift/inlinearray/init(initializingwith:))
- [init(repeating: Element)](/documentation/swift/inlinearray/init(repeating:))

##### Instance Properties

- [var count: Int](/documentation/swift/inlinearray/count)
- [var endIndex: InlineArray<count, Element>.Index](/documentation/swift/inlinearray/endindex)
- [var indices: Range<InlineArray<count, Element>.Index>](/documentation/swift/inlinearray/indices)
- [var isEmpty: Bool](/documentation/swift/inlinearray/isempty)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/inlinearray/mutablespan)
- [var span: Span<Element>](/documentation/swift/inlinearray/span)
- [var startIndex: InlineArray<count, Element>.Index](/documentation/swift/inlinearray/startindex)

##### Instance Methods

- [func index(after: InlineArray<count, Element>.Index) -> InlineArray<count, Element>.Index](/documentation/swift/inlinearray/index(after:))
- [func index(before: InlineArray<count, Element>.Index) -> InlineArray<count, Element>.Index](/documentation/swift/inlinearray/index(before:))
- [func swapAt(InlineArray<count, Element>.Index, InlineArray<count, Element>.Index)](/documentation/swift/inlinearray/swapat(_:_:))

##### Subscripts

- [subscript(InlineArray<count, Element>.Index) -> Element](/documentation/swift/inlinearray/subscript(_:))
- [subscript(unchecked _: InlineArray<count, Element>.Index) -> Element](/documentation/swift/inlinearray/subscript(unchecked:))

##### Type Aliases

- [InlineArray.Element](/documentation/swift/inlinearray/element)
- [InlineArray.Index](/documentation/swift/inlinearray/index)

#### Sets

- [Set](/documentation/swift/set)

##### Creating a Set

- [init()](/documentation/swift/set/init())
- [init(minimumCapacity: Int)](/documentation/swift/set/init(minimumcapacity:))
- [init<S>(S)](/documentation/swift/set/init(_:)-9cgks)
- [init<Source>(Source)](/documentation/swift/set/init(_:))

##### Inspecting a Set

- [var isEmpty: Bool](/documentation/swift/set/isempty)
- [var count: Int](/documentation/swift/set/count)
- [var capacity: Int](/documentation/swift/set/capacity)

##### Testing for Membership

- [func contains(Element) -> Bool](/documentation/swift/set/contains(_:))

##### Adding Elements

- [func insert(Element) -> (inserted: Bool, memberAfterInsert: Element)](/documentation/swift/set/insert(_:)-nads)
- [func insert<ConcreteElement>(ConcreteElement) -> (inserted: Bool, memberAfterInsert: ConcreteElement)](/documentation/swift/set/insert(_:)-yar4)
- [func update(with: Element) -> Element?](/documentation/swift/set/update(with:)-2n6tk)
- [func update<ConcreteElement>(with: ConcreteElement) -> ConcreteElement?](/documentation/swift/set/update(with:)-7r2g)
- [func reserveCapacity(Int)](/documentation/swift/set/reservecapacity(_:))

##### Removing Elements

- [func filter((Element) throws -> Bool) rethrows -> Set<Element>](/documentation/swift/set/filter(_:))
- [func remove(Element) -> Element?](/documentation/swift/set/remove(_:)-8p2tv)
- [func remove<ConcreteElement>(ConcreteElement) -> ConcreteElement?](/documentation/swift/set/remove(_:)-4d3i1)
- [func removeFirst() -> Element](/documentation/swift/set/removefirst())
- [func remove(at: Set<Element>.Index) -> Element](/documentation/swift/set/remove(at:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/set/removeall(keepingcapacity:))

##### Combining Sets

- [func union<S>(S) -> Set<Element>](/documentation/swift/set/union(_:))
- [func formUnion<S>(S)](/documentation/swift/set/formunion(_:))
- [func intersection(Set<Element>) -> Set<Element>](/documentation/swift/set/intersection(_:)-1zh8f)
- [func intersection<S>(S) -> Set<Element>](/documentation/swift/set/intersection(_:)-6uts9)
- [func formIntersection<S>(S)](/documentation/swift/set/formintersection(_:))
- [func symmetricDifference<S>(S) -> Set<Element>](/documentation/swift/set/symmetricdifference(_:))
- [func formSymmetricDifference(Set<Element>)](/documentation/swift/set/formsymmetricdifference(_:)-22p0m)
- [func formSymmetricDifference<S>(S)](/documentation/swift/set/formsymmetricdifference(_:)-5u38b)
- [func subtract(Set<Element>)](/documentation/swift/set/subtract(_:)-8gc48)
- [func subtract<S>(S)](/documentation/swift/set/subtract(_:)-7cd3y)
- [func subtracting(Set<Element>) -> Set<Element>](/documentation/swift/set/subtracting(_:)-3n4lc)
- [func subtracting<S>(S) -> Set<Element>](/documentation/swift/set/subtracting(_:)-2qge3)

##### Comparing Sets

- [static func == (Set<Element>, Set<Element>) -> Bool](/documentation/swift/set/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/set/!=(_:_:))
- [func isSubset(of: Set<Element>) -> Bool](/documentation/swift/set/issubset(of:)-1d7pp)
- [func isSubset<S>(of: S) -> Bool](/documentation/swift/set/issubset(of:)-6qyo5)
- [func isStrictSubset(of: Set<Element>) -> Bool](/documentation/swift/set/isstrictsubset(of:)-96vc3)
- [func isStrictSubset<S>(of: S) -> Bool](/documentation/swift/set/isstrictsubset(of:)-787sx)
- [func isSuperset(of: Set<Element>) -> Bool](/documentation/swift/set/issuperset(of:)-9iz62)
- [func isSuperset<S>(of: S) -> Bool](/documentation/swift/set/issuperset(of:)-90hri)
- [func isStrictSuperset(of: Set<Element>) -> Bool](/documentation/swift/set/isstrictsuperset(of:)-4d27m)
- [func isStrictSuperset<S>(of: S) -> Bool](/documentation/swift/set/isstrictsuperset(of:)-58ejg)
- [func isDisjoint(with: Set<Element>) -> Bool](/documentation/swift/set/isdisjoint(with:)-8ngmk)
- [func isDisjoint<S>(with: S) -> Bool](/documentation/swift/set/isdisjoint(with:)-2onid)

##### Accessing Individual Elements

- [var first: Self.Element?](/documentation/swift/set/first)
- [func randomElement() -> Self.Element?](/documentation/swift/set/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/set/randomelement(using:))

##### Finding Elements

- [subscript(Set<Element>.Index) -> Element](/documentation/swift/set/subscript(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/first(where:))
- [func firstIndex(of: Element) -> Set<Element>.Index?](/documentation/swift/set/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/set/firstindex(where:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/set/index(of:))
- [func min() -> Self.Element?](/documentation/swift/set/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/min(by:))
- [func max() -> Self.Element?](/documentation/swift/set/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/max(by:))

##### Transforming a Set

- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/set/compactmap(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/set/flatmap(_:)-i3my)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/set/flatmap(_:)-6chuh)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/set/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/set/reduce(into:_:))
- [func sorted() -> [Self.Element]](/documentation/swift/set/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/set/sorted(by:))
- [func shuffled() -> [Self.Element]](/documentation/swift/set/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/set/shuffled(using:))
- [var lazy: LazySequence<Self>](/documentation/swift/set/lazy)

##### Iterating over a Set

- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/set/enumerated())
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/set/foreach(_:))
- [func makeIterator() -> Set<Element>.Iterator](/documentation/swift/set/makeiterator())
- [var underestimatedCount: Int](/documentation/swift/set/underestimatedcount)

##### Performing Collection Operations

- [Order Dependent Operations on Set](/documentation/swift/order-dependent-operations-on-set)

###### Manipulating Indices

- [var startIndex: Set<Element>.Index](/documentation/swift/set/startindex)
- [var endIndex: Set<Element>.Index](/documentation/swift/set/endindex)
- [func index(after: Set<Element>.Index) -> Set<Element>.Index](/documentation/swift/set/index(after:))
- [func formIndex(after: inout Set<Element>.Index)](/documentation/swift/set/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/set/index(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/set/formindex(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/set/index(_:offsetby:limitedby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/set/formindex(_:offsetby:limitedby:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/set/distance(from:to:))
- [var indices: DefaultIndices<Self>](/documentation/swift/set/indices-swift.property)

###### Comparing Sets

- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/set/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/elementsequal(_:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/set/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/lexicographicallyprecedes(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/set/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/starts(with:by:))

###### Selecting Elements

- [subscript(Set<Element>.Index) -> Element](/documentation/swift/set/subscript(_:))
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/set/prefix(_:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/set/prefix(upto:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/set/prefix(through:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/set/prefix(while:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/set/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/set/suffix(from:))

###### Excluding Elements

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/set/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/set/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/set/droplast(_:))
- [func popFirst() -> Element?](/documentation/swift/set/popfirst())

###### Reversing a Set’s Elements

- [func reversed() -> [Self.Element]](/documentation/swift/set/reversed())

###### Splitting and Joining Elements

- [func joined() -> FlattenSequence<Self>](/documentation/swift/set/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/set/joined(separator:)-7ubey)
- [func joined(separator: String) -> String](/documentation/swift/set/joined(separator:)-1cko4)
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/set/split(separator:maxsplits:omittingemptysubsequences:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/set/split(maxsplits:omittingemptysubsequences:whereseparator:))

##### Encoding and Decoding

- [func encode(to: any Encoder) throws](/documentation/swift/set/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/set/init(from:))

##### Describing a Set

- [func hash(into: inout Hasher)](/documentation/swift/set/hash(into:))
- [var description: String](/documentation/swift/set/description)
- [var debugDescription: String](/documentation/swift/set/debugdescription)
- [var customMirror: Mirror](/documentation/swift/set/custommirror)

##### Reference Types

- [NSSet](/documentation/foundation/nsset)
- [NSMutableSet](/documentation/foundation/nsmutableset)

##### Supporting Types

- [Set.Index](/documentation/swift/set/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/set/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/set/index/'...(_:)-30fi7)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/set/index/'...(_:)-61uj4)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/set/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/set/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/set/index/'.._(_:_:))
- [static func < (Set<Element>.Index, Set<Element>.Index) -> Bool](/documentation/swift/set/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/set/index/_(_:_:)-8taor)
- [static func >= (Self, Self) -> Bool](/documentation/swift/set/index/_=(_:_:)-8cq0s)
- [static func <= (Self, Self) -> Bool](/documentation/swift/set/index/_=(_:_:)-9wsxs)
- [Equatable Implementations](/documentation/swift/set/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/set/index/!=(_:_:))
- [static func == (Set<Element>.Index, Set<Element>.Index) -> Bool](/documentation/swift/set/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/set/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/set/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/set/index/hash(into:))
- [Set.Iterator](/documentation/swift/set/iterator)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/set/iterator/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/set/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/set/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/set/iterator/next())

##### Infrequently Used Functionality

- [init(arrayLiteral: Element...)](/documentation/swift/set/init(arrayliteral:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/set/withcontiguousstorageifavailable(_:))

##### Type Aliases

- [Set.Specification](/documentation/swift/set/specification)
- [Set.UnderlyingSequence](/documentation/swift/set/underlyingsequence)
- [Set.UnwrappedType](/documentation/swift/set/unwrappedtype)
- [Set.ValueType](/documentation/swift/set/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: some ResolverSpecification](/documentation/swift/set/defaultresolverspecification)

##### Default Implementations

- [Collection Implementations](/documentation/swift/set/collection-implementations)

###### Structures

- [Set.Index](/documentation/swift/set/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/set/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/set/index/'...(_:)-30fi7)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/set/index/'...(_:)-61uj4)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/set/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/set/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/set/index/'.._(_:_:))
- [static func < (Set<Element>.Index, Set<Element>.Index) -> Bool](/documentation/swift/set/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/set/index/_(_:_:)-8taor)
- [static func >= (Self, Self) -> Bool](/documentation/swift/set/index/_=(_:_:)-8cq0s)
- [static func <= (Self, Self) -> Bool](/documentation/swift/set/index/_=(_:_:)-9wsxs)
- [Equatable Implementations](/documentation/swift/set/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/set/index/!=(_:_:))
- [static func == (Set<Element>.Index, Set<Element>.Index) -> Bool](/documentation/swift/set/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/set/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/set/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/set/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/set/count)
- [var endIndex: Set<Element>.Index](/documentation/swift/set/endindex)
- [var first: Self.Element?](/documentation/swift/set/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/set/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/set/isempty)
- [var startIndex: Set<Element>.Index](/documentation/swift/set/startindex)
- [var underestimatedCount: Int](/documentation/swift/set/underestimatedcount)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/set/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/set/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/set/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/set/droplast(_:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/set/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/set/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/set/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Set<Element>.Index)](/documentation/swift/set/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/set/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/set/index(_:offsetby:limitedby:))
- [func index(after: Set<Element>.Index) -> Set<Element>.Index](/documentation/swift/set/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/set/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/set/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/set/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/set/map(_:)-5p6oa)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/set/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/set/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/set/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/set/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/set/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/set/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/set/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/set/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/set/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/set/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/set/suffix(from:))

###### Subscripts

- [subscript(Set<Element>.Index) -> Element](/documentation/swift/set/subscript(_:))

###### Type Aliases

- [Set.Indices](/documentation/swift/set/indices)
- [Set.SubSequence](/documentation/swift/set/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/set/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/set/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/set/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/set/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/set/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/set/description)
- [Decodable Implementations](/documentation/swift/set/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/set/init(from:))
- [Encodable Implementations](/documentation/swift/set/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/set/encode(to:))
- [Equatable Implementations](/documentation/swift/set/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/set/!=(_:_:))
- [static func == (Set<Element>, Set<Element>) -> Bool](/documentation/swift/set/==(_:_:))
- [ExpressibleByArrayLiteral Implementations](/documentation/swift/set/expressiblebyarrayliteral-implementations)

###### Initializers

- [init(arrayLiteral: Element...)](/documentation/swift/set/init(arrayliteral:))

###### Type Aliases

- [Set.ArrayLiteralElement](/documentation/swift/set/arrayliteralelement)
- [Hashable Implementations](/documentation/swift/set/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/set/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/set/hash(into:))
- [Sequence Implementations](/documentation/swift/set/sequence-implementations)

###### Structures

- [Set.Iterator](/documentation/swift/set/iterator)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/set/iterator/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/set/iterator/custommirror)
- [IteratorProtocol Implementations](/documentation/swift/set/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/set/iterator/next())

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/set/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/set/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/set/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/set/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/set/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/set/flatmap(_:)-6chuh)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/set/flatmap(_:)-i3my)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/set/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/set/joined())
- [func joined(separator: String) -> String](/documentation/swift/set/joined(separator:)-1cko4)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/set/joined(separator:)-7ubey)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/set/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Set<Element>.Iterator](/documentation/swift/set/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/set/map(_:)-9jnow)
- [func max() -> Self.Element?](/documentation/swift/set/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/max(by:))
- [func min() -> Self.Element?](/documentation/swift/set/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/set/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/set/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/set/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/set/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/set/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/set/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/set/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/set/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/set/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/set/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/set/withcontiguousstorageifavailable(_:))
- [SetAlgebra Implementations](/documentation/swift/set/setalgebra-implementations)

###### Initializers

- [init()](/documentation/swift/set/init())
- [init<Source>(Source)](/documentation/swift/set/init(_:))
- [init<S>(S)](/documentation/swift/set/init(_:)-9cgks)
- [init(arrayLiteral: Self.Element...)](/documentation/swift/set/init(arrayliteral:)-85a3x)

###### Instance Methods

- [func contains(Element) -> Bool](/documentation/swift/set/contains(_:))
- [func formIntersection<S>(S)](/documentation/swift/set/formintersection(_:))
- [func formSymmetricDifference(Set<Element>)](/documentation/swift/set/formsymmetricdifference(_:)-22p0m)
- [func formUnion<S>(S)](/documentation/swift/set/formunion(_:))
- [func insert(Element) -> (inserted: Bool, memberAfterInsert: Element)](/documentation/swift/set/insert(_:)-nads)
- [func intersection(Set<Element>) -> Set<Element>](/documentation/swift/set/intersection(_:)-1zh8f)
- [func isDisjoint(with: Set<Element>) -> Bool](/documentation/swift/set/isdisjoint(with:)-8ngmk)
- [func isSubset(of: Set<Element>) -> Bool](/documentation/swift/set/issubset(of:)-1d7pp)
- [func isSuperset(of: Set<Element>) -> Bool](/documentation/swift/set/issuperset(of:)-9iz62)
- [func remove(Element) -> Element?](/documentation/swift/set/remove(_:)-8p2tv)
- [func subtract(Self)](/documentation/swift/set/subtract(_:)-7uaak)
- [func subtract(Set<Element>)](/documentation/swift/set/subtract(_:)-8gc48)
- [func subtracting(Set<Element>) -> Set<Element>](/documentation/swift/set/subtracting(_:)-3n4lc)
- [func symmetricDifference<S>(S) -> Set<Element>](/documentation/swift/set/symmetricdifference(_:))
- [func union<S>(S) -> Set<Element>](/documentation/swift/set/union(_:))
- [func update(with: Element) -> Element?](/documentation/swift/set/update(with:)-2n6tk)
- [OptionSet](/documentation/swift/optionset)

##### Required Initializer

- [init(rawValue: Self.RawValue)](/documentation/swift/optionset/init(rawvalue:))

##### Element

- [Element](/documentation/swift/optionset/element)

#### Ranges

- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/comparable/'.._(_:_:))
- [Range](/documentation/swift/range)

##### Creating a Range

- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/comparable/'.._(_:_:))

##### Converting Ranges

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/range/relative(to:))
- [init?(NSRange, in: String)](/documentation/swift/range/init(_:in:)-5cclx)
- [init?<S>(NSRange, in: S)](/documentation/swift/range/init(_:in:)-5qfor)

##### Inspecting a Range

- [var isEmpty: Bool](/documentation/swift/range/isempty)
- [let lowerBound: Bound](/documentation/swift/range/lowerbound)
- [let upperBound: Bound](/documentation/swift/range/upperbound)

##### Checking for Containment

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/range/~=(_:_:))

##### Clamping a Range

- [func clamped(to: Range<Bound>) -> Range<Bound>](/documentation/swift/range/clamped(to:))

##### Working with Foundation Ranges

- [init?(NSRange)](/documentation/swift/range/init(_:)-15u6b)
- [init?(NSRange)](/documentation/swift/range/init(_:)-1q7lu)

##### Comparing Ranges

- [static func == (Range<Bound>, Range<Bound>) -> Bool](/documentation/swift/range/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/range/!=(_:_:))
- [func overlaps(Range<Bound>) -> Bool](/documentation/swift/range/overlaps(_:)-7osha)
- [func overlaps(ClosedRange<Bound>) -> Bool](/documentation/swift/range/overlaps(_:)-9fkb2)

##### Manipulating Indices

- [func hash(into: inout Hasher)](/documentation/swift/range/hash(into:))

##### Describing a Range

- [var description: String](/documentation/swift/range/description)
- [var debugDescription: String](/documentation/swift/range/debugdescription)
- [var customMirror: Mirror](/documentation/swift/range/custommirror)

##### Encoding and Decoding a Range

- [func encode(to: any Encoder) throws](/documentation/swift/range/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/range/init(from:))

##### Infrequently Used Functionality

- [init(uncheckedBounds: (lower: Bound, upper: Bound))](/documentation/swift/range/init(uncheckedbounds:))
- [var hashValue: Int](/documentation/swift/range/hashvalue)

##### Initializers

- [init(Range<Bound>)](/documentation/swift/range/init(_:)-35b1j)
- [init(ClosedRange<Bound>)](/documentation/swift/range/init(_:)-79g1a)
- [init?<S>(NSRange, in: S)](/documentation/swift/range/init(_:in:)-24465)
- [init?<R, S>(R, in: S)](/documentation/swift/range/init(_:in:)-612lr)
- [init?<R, S>(R, in: S)](/documentation/swift/range/init(_:in:)-75xo3)
- [init?<S>(AttributedString.MarkdownSourcePosition, in: S)](/documentation/swift/range/init(_:in:)-9vre5)

##### Instance Methods

- [func contains(Range<Bound>) -> Bool](/documentation/swift/range/contains(_:)-4xxju)
- [func contains(ClosedRange<Bound>) -> Bool](/documentation/swift/range/contains(_:)-680jp)
- [func contains(Bound) -> Bool](/documentation/swift/range/contains(_:)-76nb4)
- [func formatted() -> String](/documentation/swift/range/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/range/formatted(_:))
- [func formatted(date: Date.IntervalFormatStyle.DateStyle, time: Date.IntervalFormatStyle.TimeStyle) -> String](/documentation/swift/range/formatted(date:time:))
- [func isValid(within: some AttributedStringProtocol) -> Bool](/documentation/swift/range/isvalid(within:)-2fba2)
- [func isValid(within: DiscontiguousAttributedSubstring) -> Bool](/documentation/swift/range/isvalid(within:)-8h4h8)

##### Type Methods

- [static func upToNextMajor(from: Version) -> Range<Bound>](/documentation/swift/range/uptonextmajor(from:))
- [static func upToNextMinor(from: Version) -> Range<Bound>](/documentation/swift/range/uptonextminor(from:))

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/range/bidirectionalcollection-implementations)

###### Instance Methods

- [func index(before: Range<Bound>.Index) -> Range<Bound>.Index](/documentation/swift/range/index(before:))
- [Collection Implementations](/documentation/swift/range/collection-implementations)

###### Instance Properties

- [var endIndex: Range<Bound>.Index](/documentation/swift/range/endindex)
- [var indices: Range<Bound>.Indices](/documentation/swift/range/indices-swift.property)
- [var startIndex: Range<Bound>.Index](/documentation/swift/range/startindex)

###### Instance Methods

- [func distance(from: Range<Bound>.Index, to: Range<Bound>.Index) -> Int](/documentation/swift/range/distance(from:to:))
- [func index(Range<Bound>.Index, offsetBy: Int) -> Range<Bound>.Index](/documentation/swift/range/index(_:offsetby:))
- [func index(after: Range<Bound>.Index) -> Range<Bound>.Index](/documentation/swift/range/index(after:))

###### Subscripts

- [subscript(Range<Range<Bound>.Index>) -> Range<Bound>](/documentation/swift/range/subscript(_:)-358vm)
- [subscript(Range<Bound>.Index) -> Range<Bound>.Element](/documentation/swift/range/subscript(_:)-84ykx)

###### Type Aliases

- [Range.Index](/documentation/swift/range/index)
- [Range.Indices](/documentation/swift/range/indices-swift.typealias)
- [Range.SubSequence](/documentation/swift/range/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/range/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/range/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/range/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/range/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/range/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/range/description)
- [Decodable Implementations](/documentation/swift/range/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/range/init(from:))
- [Encodable Implementations](/documentation/swift/range/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/range/encode(to:))
- [Equatable Implementations](/documentation/swift/range/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/range/!=(_:_:))
- [static func == (Range<Bound>, Range<Bound>) -> Bool](/documentation/swift/range/==(_:_:))
- [Hashable Implementations](/documentation/swift/range/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/range/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/range/hash(into:))
- [RangeExpression Implementations](/documentation/swift/range/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/range/~=(_:_:))

###### Instance Methods

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/range/relative(to:))
- [Sequence Implementations](/documentation/swift/range/sequence-implementations)

###### Type Aliases

- [Range.Element](/documentation/swift/range/element)
- [Range.Iterator](/documentation/swift/range/iterator)
- [RangeSet](/documentation/swift/rangeset)

##### Structures

- [RangeSet.Ranges](/documentation/swift/rangeset/ranges-swift.struct)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/rangeset/ranges-swift.struct/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/rangeset/ranges-swift.struct/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/rangeset/ranges-swift.struct/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/rangeset/ranges-swift.struct/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/rangeset/ranges-swift.struct/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/suffix(_:))
- [Collection Implementations](/documentation/swift/rangeset/ranges-swift.struct/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/rangeset/ranges-swift.struct/count)
- [var endIndex: RangeSet<Bound>.Ranges.Index](/documentation/swift/rangeset/ranges-swift.struct/endindex)
- [var first: Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/first)
- [var isEmpty: Bool](/documentation/swift/rangeset/ranges-swift.struct/isempty)
- [var startIndex: RangeSet<Bound>.Ranges.Index](/documentation/swift/rangeset/ranges-swift.struct/startindex)
- [var underestimatedCount: Int](/documentation/swift/rangeset/ranges-swift.struct/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/rangeset/ranges-swift.struct/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/rangeset/ranges-swift.struct/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/rangeset/ranges-swift.struct/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/rangeset/ranges-swift.struct/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/rangeset/ranges-swift.struct/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/rangeset/ranges-swift.struct/map(_:)-90u99)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/rangeset/ranges-swift.struct/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/rangeset/ranges-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/rangeset/ranges-swift.struct/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Bound>.Ranges.Index) -> RangeSet<Bound>.Ranges.Element](/documentation/swift/rangeset/ranges-swift.struct/subscript(_:))

###### Type Aliases

- [RangeSet.Ranges.Index](/documentation/swift/rangeset/ranges-swift.struct/index)
- [RangeSet.Ranges.Indices](/documentation/swift/rangeset/ranges-swift.struct/indices)
- [RangeSet.Ranges.SubSequence](/documentation/swift/rangeset/ranges-swift.struct/subsequence)
- [CustomStringConvertible Implementations](/documentation/swift/rangeset/ranges-swift.struct/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/rangeset/ranges-swift.struct/description)
- [Equatable Implementations](/documentation/swift/rangeset/ranges-swift.struct/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/!=(_:_:))
- [static func == (RangeSet<Bound>.Ranges, RangeSet<Bound>.Ranges) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/==(_:_:))
- [Hashable Implementations](/documentation/swift/rangeset/ranges-swift.struct/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/rangeset/ranges-swift.struct/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/rangeset/ranges-swift.struct/hash(into:))
- [RandomAccessCollection Implementations](/documentation/swift/rangeset/ranges-swift.struct/randomaccesscollection-implementations)

###### Instance Properties

- [var indices: Range<Self.Index>](/documentation/swift/rangeset/ranges-swift.struct/indices-swift.property)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/rangeset/ranges-swift.struct/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/rangeset/ranges-swift.struct/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/rangeset/ranges-swift.struct/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/rangeset/ranges-swift.struct/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/rangeset/ranges-swift.struct/index(before:))
- [Sequence Implementations](/documentation/swift/rangeset/ranges-swift.struct/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/rangeset/ranges-swift.struct/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/rangeset/ranges-swift.struct/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/rangeset/ranges-swift.struct/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/rangeset/ranges-swift.struct/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/rangeset/ranges-swift.struct/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/rangeset/ranges-swift.struct/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/rangeset/ranges-swift.struct/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/rangeset/ranges-swift.struct/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/rangeset/ranges-swift.struct/flatmap(_:)-4laa6)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/rangeset/ranges-swift.struct/flatmap(_:)-92yy6)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/rangeset/ranges-swift.struct/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/rangeset/ranges-swift.struct/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/rangeset/ranges-swift.struct/map(_:)-3ykax)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/rangeset/ranges-swift.struct/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/rangeset/ranges-swift.struct/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/rangeset/ranges-swift.struct/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/rangeset/ranges-swift.struct/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/rangeset/ranges-swift.struct/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/rangeset/ranges-swift.struct/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/rangeset/ranges-swift.struct/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/rangeset/ranges-swift.struct/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/rangeset/ranges-swift.struct/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [RangeSet.Ranges.Element](/documentation/swift/rangeset/ranges-swift.struct/element)
- [RangeSet.Ranges.Iterator](/documentation/swift/rangeset/ranges-swift.struct/iterator)

##### Initializers

- [init()](/documentation/swift/rangeset/init())
- [init(Range<Bound>)](/documentation/swift/rangeset/init(_:)-230uy)
- [init(IndexSet)](/documentation/swift/rangeset/init(_:)-42v9u)
- [init(some Sequence<Range<Bound>>)](/documentation/swift/rangeset/init(_:)-9x0yj)
- [init<S, C>(S, within: C)](/documentation/swift/rangeset/init(_:within:))

##### Instance Properties

- [var isEmpty: Bool](/documentation/swift/rangeset/isempty)
- [var ranges: RangeSet<Bound>.Ranges](/documentation/swift/rangeset/ranges-swift.property)

##### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/rangeset/contains(_:))
- [func formIntersection(RangeSet<Bound>)](/documentation/swift/rangeset/formintersection(_:))
- [func formSymmetricDifference(RangeSet<Bound>)](/documentation/swift/rangeset/formsymmetricdifference(_:))
- [func formUnion(RangeSet<Bound>)](/documentation/swift/rangeset/formunion(_:))
- [func insert<C>(Bound, within: C) -> Bool](/documentation/swift/rangeset/insert(_:within:))
- [func insert(contentsOf: Range<Bound>)](/documentation/swift/rangeset/insert(contentsof:))
- [func intersection(RangeSet<Bound>) -> RangeSet<Bound>](/documentation/swift/rangeset/intersection(_:))
- [func isDisjoint(RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/isdisjoint(_:))
- [func isStrictSubset(of: RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/isstrictsubset(of:))
- [func isStrictSuperset(of: RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/isstrictsuperset(of:))
- [func isSubset(of: RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/issubset(of:))
- [func isSuperset(of: RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/issuperset(of:))
- [func isValid(within: DiscontiguousAttributedSubstring) -> Bool](/documentation/swift/rangeset/isvalid(within:)-38qb9)
- [func isValid(within: some AttributedStringProtocol) -> Bool](/documentation/swift/rangeset/isvalid(within:)-6u17e)
- [func remove<C>(Bound, within: C)](/documentation/swift/rangeset/remove(_:within:))
- [func remove(contentsOf: Range<Bound>)](/documentation/swift/rangeset/remove(contentsof:))
- [func subtract(RangeSet<Bound>)](/documentation/swift/rangeset/subtract(_:))
- [func subtracting(RangeSet<Bound>) -> RangeSet<Bound>](/documentation/swift/rangeset/subtracting(_:))
- [func symmetricDifference(RangeSet<Bound>) -> RangeSet<Bound>](/documentation/swift/rangeset/symmetricdifference(_:))
- [func union(RangeSet<Bound>) -> RangeSet<Bound>](/documentation/swift/rangeset/union(_:))

##### Default Implementations

- [CustomStringConvertible Implementations](/documentation/swift/rangeset/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/rangeset/description)
- [Equatable Implementations](/documentation/swift/rangeset/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/rangeset/!=(_:_:))
- [static func == (RangeSet<Bound>, RangeSet<Bound>) -> Bool](/documentation/swift/rangeset/==(_:_:))
- [Hashable Implementations](/documentation/swift/rangeset/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/rangeset/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/rangeset/hash(into:))
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/comparable/'...(_:_:))
- [ClosedRange](/documentation/swift/closedrange)

##### Creating a Range

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/comparable/'...(_:_:))

##### Converting Ranges

- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/closedrange/relative(to:))

##### Inspecting a Range

- [var isEmpty: Bool](/documentation/swift/closedrange/isempty)
- [let lowerBound: Bound](/documentation/swift/closedrange/lowerbound)
- [let upperBound: Bound](/documentation/swift/closedrange/upperbound)

##### Checking for Containment

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/closedrange/~=(_:_:))

##### Clamping a Range

- [func clamped(to: ClosedRange<Bound>) -> ClosedRange<Bound>](/documentation/swift/closedrange/clamped(to:))

##### Comparing Ranges

- [static func == (ClosedRange<Bound>, ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/!=(_:_:))
- [func overlaps(Range<Bound>) -> Bool](/documentation/swift/closedrange/overlaps(_:)-947dt)
- [func overlaps(ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/overlaps(_:)-7dfep)

##### Manipulating Indices

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/hash(into:))

##### Describing a Range

- [var description: String](/documentation/swift/closedrange/description)
- [var debugDescription: String](/documentation/swift/closedrange/debugdescription)
- [var customMirror: Mirror](/documentation/swift/closedrange/custommirror)

##### Encoding and Decoding a Range

- [func encode(to: any Encoder) throws](/documentation/swift/closedrange/encode(to:))
- [init(from: any Decoder) throws](/documentation/swift/closedrange/init(from:))

##### Infrequently Used Functionality

- [init(uncheckedBounds: (lower: Bound, upper: Bound))](/documentation/swift/closedrange/init(uncheckedbounds:))
- [var hashValue: Int](/documentation/swift/closedrange/hashvalue)

##### Initializers

- [init(Range<Bound>)](/documentation/swift/closedrange/init(_:)-er19)
- [init(ClosedRange<Bound>)](/documentation/swift/closedrange/init(_:)-rhzn)

##### Instance Methods

- [func contains(Range<Bound>) -> Bool](/documentation/swift/closedrange/contains(_:)-29358)
- [func contains(ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/contains(_:)-822cl)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/closedrange/bidirectionalcollection-implementations)

###### Instance Methods

- [func index(before: ClosedRange<Bound>.Index) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(before:))
- [Collection Implementations](/documentation/swift/closedrange/collection-implementations)

###### Instance Properties

- [var endIndex: ClosedRange<Bound>.Index](/documentation/swift/closedrange/endindex)
- [var isEmpty: Bool](/documentation/swift/closedrange/isempty)
- [var startIndex: ClosedRange<Bound>.Index](/documentation/swift/closedrange/startindex)

###### Instance Methods

- [func distance(from: ClosedRange<Bound>.Index, to: ClosedRange<Bound>.Index) -> Int](/documentation/swift/closedrange/distance(from:to:))
- [func index(ClosedRange<Bound>.Index, offsetBy: Int) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(_:offsetby:))
- [func index(after: ClosedRange<Bound>.Index) -> ClosedRange<Bound>.Index](/documentation/swift/closedrange/index(after:))

###### Subscripts

- [subscript(ClosedRange<Bound>.Index) -> Bound](/documentation/swift/closedrange/subscript(_:)-60m0l)
- [subscript(Range<ClosedRange<Bound>.Index>) -> Slice<ClosedRange<Bound>>](/documentation/swift/closedrange/subscript(_:)-vph6)

###### Type Aliases

- [ClosedRange.Indices](/documentation/swift/closedrange/indices)
- [ClosedRange.SubSequence](/documentation/swift/closedrange/subsequence)

###### Enumerations

- [ClosedRange.Index](/documentation/swift/closedrange/index)

###### Enumeration Cases

- [case inRange(Bound)](/documentation/swift/closedrange/index/inrange(_:))
- [case pastEnd](/documentation/swift/closedrange/index/pastend)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/closedrange/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/closedrange/index/'...(_:)-5e4wo)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/closedrange/index/'...(_:)-63ber)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/closedrange/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/closedrange/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/closedrange/index/'.._(_:_:))
- [static func < (ClosedRange<Bound>.Index, ClosedRange<Bound>.Index) -> Bool](/documentation/swift/closedrange/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/closedrange/index/_(_:_:)-1fc79)
- [static func >= (Self, Self) -> Bool](/documentation/swift/closedrange/index/_=(_:_:)-52920)
- [static func <= (Self, Self) -> Bool](/documentation/swift/closedrange/index/_=(_:_:)-divd)
- [Equatable Implementations](/documentation/swift/closedrange/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/index/!=(_:_:))
- [static func == (ClosedRange<Bound>.Index, ClosedRange<Bound>.Index) -> Bool](/documentation/swift/closedrange/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/closedrange/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/closedrange/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/index/hash(into:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/closedrange/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/closedrange/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/closedrange/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/closedrange/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/closedrange/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/closedrange/description)
- [Decodable Implementations](/documentation/swift/closedrange/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/closedrange/init(from:))
- [Encodable Implementations](/documentation/swift/closedrange/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/closedrange/encode(to:))
- [Equatable Implementations](/documentation/swift/closedrange/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/closedrange/!=(_:_:))
- [static func == (ClosedRange<Bound>, ClosedRange<Bound>) -> Bool](/documentation/swift/closedrange/==(_:_:))
- [Hashable Implementations](/documentation/swift/closedrange/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/closedrange/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/closedrange/hash(into:))
- [RangeExpression Implementations](/documentation/swift/closedrange/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/closedrange/~=(_:_:))

###### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/closedrange/contains(_:)-9hh5n)
- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/closedrange/relative(to:))
- [Sequence Implementations](/documentation/swift/closedrange/sequence-implementations)

###### Type Aliases

- [ClosedRange.Element](/documentation/swift/closedrange/element)
- [ClosedRange.Iterator](/documentation/swift/closedrange/iterator)

#### Strides

- [func stride<T>(from: T, to: T, by: T.Stride) -> StrideTo<T>](/documentation/swift/stride(from:to:by:))
- [func stride<T>(from: T, through: T, by: T.Stride) -> StrideThrough<T>](/documentation/swift/stride(from:through:by:))

#### Special-Use Collections

- [func repeatElement<T>(T, count: Int) -> Repeated<T>](/documentation/swift/repeatelement(_:count:))
- [CollectionOfOne](/documentation/swift/collectionofone)

##### Initializers

- [init(Element)](/documentation/swift/collectionofone/init(_:))

##### Instance Properties

- [var mutableSpan: MutableSpan<Element>](/documentation/swift/collectionofone/mutablespan)
- [var span: Span<Element>](/documentation/swift/collectionofone/span)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/collectionofone/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/collectionofone/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/collectionofone/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/collectionofone/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/collectionofone/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/collectionofone/formindex(before:))
- [func joined(separator: String) -> String](/documentation/swift/collectionofone/joined(separator:)-7kra3)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectionofone/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/collectionofone/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/collectionofone/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/collectionofone/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/collectionofone/suffix(_:))
- [Collection Implementations](/documentation/swift/collectionofone/collection-implementations)

###### Structures

- [CollectionOfOne.Iterator](/documentation/swift/collectionofone/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/collectionofone/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/collectionofone/iterator/next())

###### Instance Properties

- [var count: Int](/documentation/swift/collectionofone/count)
- [var first: Self.Element?](/documentation/swift/collectionofone/first)
- [var isEmpty: Bool](/documentation/swift/collectionofone/isempty)
- [var underestimatedCount: Int](/documentation/swift/collectionofone/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collectionofone/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/collectionofone/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/collectionofone/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/collectionofone/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/collectionofone/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/collectionofone/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/collectionofone/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/collectionofone/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/collectionofone/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/collectionofone/indices(where:))
- [func makeIterator() -> CollectionOfOne<Element>.Iterator](/documentation/swift/collectionofone/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/collectionofone/map(_:)-6e1xi)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/collectionofone/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/collectionofone/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/collectionofone/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collectionofone/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/collectionofone/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/collectionofone/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collectionofone/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/collectionofone/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/collectionofone/split(separator:maxsplits:omittingemptysubsequences:)-1a0oe)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/collectionofone/suffix(from:))

###### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/collectionofone/subscript(_:)-3dvjk)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/collectionofone/subscript(_:)-59bql)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collectionofone/subscript(_:)-5iy5s)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collectionofone/subscript(_:)-y23p)

###### Type Aliases

- [CollectionOfOne.Index](/documentation/swift/collectionofone/index)
- [CollectionOfOne.Indices](/documentation/swift/collectionofone/indices)
- [CollectionOfOne.SubSequence](/documentation/swift/collectionofone/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/collectionofone/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/collectionofone/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/collectionofone/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/collectionofone/custommirror)
- [MutableCollection Implementations](/documentation/swift/collectionofone/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/collectionofone/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/collectionofone/partition(by:)-1s0cl)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/collectionofone/partition(by:)-2ouy4)
- [func reverse()](/documentation/swift/collectionofone/reverse())
- [func shuffle()](/documentation/swift/collectionofone/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/collectionofone/shuffle(using:))
- [func sort()](/documentation/swift/collectionofone/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/collectionofone/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/collectionofone/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/collectionofone/withcontiguousmutablestorageifavailable(_:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/collectionofone/subscript(_:)-5ny44)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/collectionofone/subscript(_:)-7b34k)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/collectionofone/subscript(_:)-7lp8k)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collectionofone/subscript(_:)-82bqh)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collectionofone/subscript(_:)-8buws)
- [RandomAccessCollection Implementations](/documentation/swift/collectionofone/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: CollectionOfOne<Element>.Index](/documentation/swift/collectionofone/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/collectionofone/indices-swift.property)
- [var startIndex: CollectionOfOne<Element>.Index](/documentation/swift/collectionofone/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/collectionofone/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/collectionofone/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/collectionofone/index(_:offsetby:limitedby:))
- [func index(after: CollectionOfOne<Element>.Index) -> CollectionOfOne<Element>.Index](/documentation/swift/collectionofone/index(after:))
- [func index(before: CollectionOfOne<Element>.Index) -> CollectionOfOne<Element>.Index](/documentation/swift/collectionofone/index(before:))

###### Subscripts

- [subscript(Range<Int>) -> CollectionOfOne<Element>.SubSequence](/documentation/swift/collectionofone/subscript(_:)-16mfr)
- [subscript(Int) -> Element](/documentation/swift/collectionofone/subscript(_:)-876qi)
- [Sequence Implementations](/documentation/swift/collectionofone/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/collectionofone/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectionofone/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/collectionofone/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/collectionofone/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectionofone/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/collectionofone/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/collectionofone/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectionofone/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/collectionofone/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/collectionofone/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectionofone/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/collectionofone/flatmap(_:)-36s4w)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/collectionofone/flatmap(_:)-5foc2)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/collectionofone/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/collectionofone/joined())
- [func joined(separator: String) -> String](/documentation/swift/collectionofone/joined(separator:)-7gggv)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/collectionofone/joined(separator:)-7ryk5)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/collectionofone/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectionofone/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/collectionofone/map(_:)-24gp5)
- [func max() -> Self.Element?](/documentation/swift/collectionofone/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectionofone/max(by:))
- [func min() -> Self.Element?](/documentation/swift/collectionofone/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectionofone/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/collectionofone/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/collectionofone/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/collectionofone/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/collectionofone/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/collectionofone/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/collectionofone/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/collectionofone/split(separator:maxsplits:omittingemptysubsequences:)-628bu)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/collectionofone/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectionofone/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/collectionofone/withcontiguousstorageifavailable(_:))
- [EmptyCollection](/documentation/swift/emptycollection)

##### Initializers

- [init()](/documentation/swift/emptycollection/init())

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/emptycollection/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/emptycollection/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/emptycollection/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/emptycollection/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/emptycollection/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/emptycollection/formindex(before:))
- [func joined(separator: String) -> String](/documentation/swift/emptycollection/joined(separator:)-rq8f)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/emptycollection/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/emptycollection/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/emptycollection/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/emptycollection/removelast())
- [func removeLast(Int)](/documentation/swift/emptycollection/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/emptycollection/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/emptycollection/suffix(_:))
- [Collection Implementations](/documentation/swift/emptycollection/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/emptycollection/count)
- [var first: Self.Element?](/documentation/swift/emptycollection/first)
- [var isEmpty: Bool](/documentation/swift/emptycollection/isempty)
- [var underestimatedCount: Int](/documentation/swift/emptycollection/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/emptycollection/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/emptycollection/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/emptycollection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/emptycollection/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/emptycollection/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/emptycollection/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/emptycollection/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/emptycollection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/emptycollection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/emptycollection/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/emptycollection/map(_:)-6q1dq)
- [func popFirst() -> Self.Element?](/documentation/swift/emptycollection/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/emptycollection/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/emptycollection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/emptycollection/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/emptycollection/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/emptycollection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/emptycollection/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/emptycollection/removefirst())
- [func removeFirst(Int)](/documentation/swift/emptycollection/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/emptycollection/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/emptycollection/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/emptycollection/split(separator:maxsplits:omittingemptysubsequences:)-4mogv)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/emptycollection/suffix(from:))

###### Subscripts

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/emptycollection/subscript(_:)-2eo9o)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/emptycollection/subscript(_:)-4a2g8)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/emptycollection/subscript(_:)-th66)

###### Type Aliases

- [EmptyCollection.Indices](/documentation/swift/emptycollection/indices)
- [EmptyCollection.SubSequence](/documentation/swift/emptycollection/subsequence)
- [Equatable Implementations](/documentation/swift/emptycollection/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/emptycollection/!=(_:_:))
- [static func == (EmptyCollection<Element>, EmptyCollection<Element>) -> Bool](/documentation/swift/emptycollection/==(_:_:))
- [MutableCollection Implementations](/documentation/swift/emptycollection/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/emptycollection/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/emptycollection/partition(by:)-37csa)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/emptycollection/partition(by:)-4cd8k)
- [func reverse()](/documentation/swift/emptycollection/reverse())
- [func shuffle()](/documentation/swift/emptycollection/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/emptycollection/shuffle(using:))
- [func sort()](/documentation/swift/emptycollection/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/emptycollection/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/emptycollection/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/emptycollection/withcontiguousmutablestorageifavailable(_:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/emptycollection/subscript(_:)-1atow)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/emptycollection/subscript(_:)-27szq)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/emptycollection/subscript(_:)-6sv7g)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/emptycollection/subscript(_:)-9ngyd)
- [RandomAccessCollection Implementations](/documentation/swift/emptycollection/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: EmptyCollection<Element>.Index](/documentation/swift/emptycollection/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/emptycollection/indices-swift.property)
- [var startIndex: EmptyCollection<Element>.Index](/documentation/swift/emptycollection/startindex)

###### Instance Methods

- [func distance(from: EmptyCollection<Element>.Index, to: EmptyCollection<Element>.Index) -> Int](/documentation/swift/emptycollection/distance(from:to:))
- [func index(EmptyCollection<Element>.Index, offsetBy: Int) -> EmptyCollection<Element>.Index](/documentation/swift/emptycollection/index(_:offsetby:))
- [func index(EmptyCollection<Element>.Index, offsetBy: Int, limitedBy: EmptyCollection<Element>.Index) -> EmptyCollection<Element>.Index?](/documentation/swift/emptycollection/index(_:offsetby:limitedby:))
- [func index(after: EmptyCollection<Element>.Index) -> EmptyCollection<Element>.Index](/documentation/swift/emptycollection/index(after:))
- [func index(before: EmptyCollection<Element>.Index) -> EmptyCollection<Element>.Index](/documentation/swift/emptycollection/index(before:))

###### Subscripts

- [subscript(EmptyCollection<Element>.Index) -> Element](/documentation/swift/emptycollection/subscript(_:)-1wkfh)
- [subscript(Range<EmptyCollection<Element>.Index>) -> EmptyCollection<Element>.SubSequence](/documentation/swift/emptycollection/subscript(_:)-5fxf8)

###### Type Aliases

- [EmptyCollection.Index](/documentation/swift/emptycollection/index)
- [Sequence Implementations](/documentation/swift/emptycollection/sequence-implementations)

###### Structures

- [EmptyCollection.Iterator](/documentation/swift/emptycollection/iterator)

###### Initializers

- [init()](/documentation/swift/emptycollection/iterator/init())

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/emptycollection/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/emptycollection/iterator/next())
- [Sequence Implementations](/documentation/swift/emptycollection/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/emptycollection/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/emptycollection/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/emptycollection/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/emptycollection/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/emptycollection/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/emptycollection/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/emptycollection/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/emptycollection/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/emptycollection/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/emptycollection/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/emptycollection/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/iterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/emptycollection/iterator/flatmap(_:)-1oa76)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/emptycollection/iterator/flatmap(_:)-9oyrb)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/emptycollection/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/emptycollection/iterator/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/emptycollection/iterator/joined(separator:)-5hdvf)
- [func joined(separator: String) -> String](/documentation/swift/emptycollection/iterator/joined(separator:)-p00z)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/emptycollection/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/emptycollection/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/emptycollection/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/emptycollection/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/emptycollection/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/emptycollection/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/emptycollection/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/emptycollection/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/emptycollection/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/emptycollection/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/emptycollection/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/emptycollection/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/emptycollection/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/emptycollection/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/emptycollection/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/emptycollection/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/emptycollection/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/emptycollection/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/emptycollection/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [EmptyCollection.Iterator.Iterator](/documentation/swift/emptycollection/iterator/iterator)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/emptycollection/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/emptycollection/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/emptycollection/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/emptycollection/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/emptycollection/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/emptycollection/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/emptycollection/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/emptycollection/flatmap(_:)-2c6m)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/emptycollection/flatmap(_:)-5fdv6)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/emptycollection/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/emptycollection/joined())
- [func joined(separator: String) -> String](/documentation/swift/emptycollection/joined(separator:)-7oert)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/emptycollection/joined(separator:)-91j18)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/emptycollection/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> EmptyCollection<Element>.Iterator](/documentation/swift/emptycollection/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/emptycollection/map(_:)-9jbvb)
- [func max() -> Self.Element?](/documentation/swift/emptycollection/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/max(by:))
- [func min() -> Self.Element?](/documentation/swift/emptycollection/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/emptycollection/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/emptycollection/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/emptycollection/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/emptycollection/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/emptycollection/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/emptycollection/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/emptycollection/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/emptycollection/split(separator:maxsplits:omittingemptysubsequences:)-4y9zq)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/emptycollection/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/emptycollection/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/emptycollection/withcontiguousstorageifavailable(_:))
- [KeyValuePairs](/documentation/swift/keyvaluepairs)

##### Initializers

- [init(dictionaryLiteral: (Key, Value)...)](/documentation/swift/keyvaluepairs/init(dictionaryliteral:))

##### Instance Properties

- [var span: Span<KeyValuePairs<Key, Value>.Element>](/documentation/swift/keyvaluepairs/span)

##### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/keyvaluepairs/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/keyvaluepairs/last)

###### Instance Methods

- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/keyvaluepairs/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/keyvaluepairs/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/keyvaluepairs/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/keyvaluepairs/last(where:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/keyvaluepairs/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/keyvaluepairs/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/keyvaluepairs/suffix(_:))
- [Collection Implementations](/documentation/swift/keyvaluepairs/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/keyvaluepairs/count)
- [var first: Self.Element?](/documentation/swift/keyvaluepairs/first)
- [var isEmpty: Bool](/documentation/swift/keyvaluepairs/isempty)
- [var underestimatedCount: Int](/documentation/swift/keyvaluepairs/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/keyvaluepairs/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/keyvaluepairs/dropfirst(_:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/keyvaluepairs/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/keyvaluepairs/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/keyvaluepairs/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/keyvaluepairs/formindex(after:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/keyvaluepairs/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/keyvaluepairs/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/keyvaluepairs/map(_:)-8tv4p)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/keyvaluepairs/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/keyvaluepairs/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/keyvaluepairs/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/keyvaluepairs/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/keyvaluepairs/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/keyvaluepairs/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/keyvaluepairs/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/keyvaluepairs/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/keyvaluepairs/suffix(from:))

###### Type Aliases

- [KeyValuePairs.Index](/documentation/swift/keyvaluepairs/index)
- [KeyValuePairs.Indices](/documentation/swift/keyvaluepairs/indices)
- [KeyValuePairs.Iterator](/documentation/swift/keyvaluepairs/iterator)
- [KeyValuePairs.SubSequence](/documentation/swift/keyvaluepairs/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/keyvaluepairs/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/keyvaluepairs/debugdescription)
- [CustomStringConvertible Implementations](/documentation/swift/keyvaluepairs/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/keyvaluepairs/description)
- [RandomAccessCollection Implementations](/documentation/swift/keyvaluepairs/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: KeyValuePairs<Key, Value>.Index](/documentation/swift/keyvaluepairs/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/keyvaluepairs/indices-swift.property)
- [var startIndex: KeyValuePairs<Key, Value>.Index](/documentation/swift/keyvaluepairs/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/keyvaluepairs/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/keyvaluepairs/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/keyvaluepairs/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/keyvaluepairs/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/keyvaluepairs/index(before:))

###### Subscripts

- [subscript(KeyValuePairs<Key, Value>.Index) -> KeyValuePairs<Key, Value>.Element](/documentation/swift/keyvaluepairs/subscript(_:))

###### Type Aliases

- [KeyValuePairs.Element](/documentation/swift/keyvaluepairs/element)
- [Sequence Implementations](/documentation/swift/keyvaluepairs/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/keyvaluepairs/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/keyvaluepairs/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/keyvaluepairs/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/keyvaluepairs/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/keyvaluepairs/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/keyvaluepairs/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/keyvaluepairs/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/keyvaluepairs/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/keyvaluepairs/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/keyvaluepairs/flatmap(_:)-41jts)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/keyvaluepairs/flatmap(_:)-6u1qi)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/keyvaluepairs/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/keyvaluepairs/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/keyvaluepairs/map(_:)-32cv3)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/keyvaluepairs/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/keyvaluepairs/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/keyvaluepairs/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/keyvaluepairs/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/keyvaluepairs/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/keyvaluepairs/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/keyvaluepairs/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/keyvaluepairs/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/keyvaluepairs/withcontiguousstorageifavailable(_:))
- [DictionaryLiteral](/documentation/swift/dictionaryliteral)

#### Dynamic Sequences

- [func sequence<T>(first: T, next: (T) -> T?) -> UnfoldFirstSequence<T>](/documentation/swift/sequence(first:next:))
- [func sequence<T, State>(state: State, next: (inout State) -> T?) -> UnfoldSequence<T, State>](/documentation/swift/sequence(state:next:))

#### Joint Iteration

- [func zip<Sequence1, Sequence2>(Sequence1, Sequence2) -> Zip2Sequence<Sequence1, Sequence2>](/documentation/swift/zip(_:_:))

#### Advanced Collection Topics

- [Sequence and Collection Protocols](/documentation/swift/sequence-and-collection-protocols)

##### First Steps

- [Sequence](/documentation/swift/sequence)

###### Creating an Iterator

- [func makeIterator() -> Self.Iterator](/documentation/swift/sequence/makeiterator())

###### Sequence Implementations

- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/sequence/makeiterator()-85cyw)
- [func makeIterator() -> Self](/documentation/swift/sequence/makeiterator()-9859q)
- [Iterator](/documentation/swift/sequence/iterator)
- [Element](/documentation/swift/sequence/element)

###### Finding Elements

- [func contains(Self.Element) -> Bool](/documentation/swift/sequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/sequence/contains(where:))
- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/sequence/allsatisfy(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/sequence/first(where:))
- [func min() -> Self.Element?](/documentation/swift/sequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/sequence/min(by:))
- [func max() -> Self.Element?](/documentation/swift/sequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/sequence/max(by:))

###### Selecting Elements

- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/sequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/sequence/prefix(while:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/sequence/suffix(_:))

###### Excluding Elements

- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/sequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/sequence/droplast(_:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/sequence/drop(while:))
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/sequence/filter(_:)-5y9d2)

###### Transforming a Sequence

- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/sequence/map(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/sequence/compactmap(_:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/sequence/flatmap(_:)-jo2y)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/sequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/sequence/reduce(into:_:))
- [var lazy: LazySequence<Self>](/documentation/swift/sequence/lazy)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/sequence/flatmap(_:)-383uq)

###### Iterating Over a Sequence’s Elements

- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/sequence/foreach(_:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/sequence/enumerated())
- [var underestimatedCount: Int](/documentation/swift/sequence/underestimatedcount)

###### Sequence Implementations

- [var underestimatedCount: Int](/documentation/swift/sequence/underestimatedcount-3n9ne)
- [var underestimatedCount: Int](/documentation/swift/sequence/underestimatedcount-9oyup)

###### Sorting Elements

- [func sorted() -> [Self.Element]](/documentation/swift/sequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/sequence/sorted(by:))
- [func reversed() -> [Self.Element]](/documentation/swift/sequence/reversed())

###### Reordering a Sequence’s Elements

- [func shuffled() -> [Self.Element]](/documentation/swift/sequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/sequence/shuffled(using:))

###### Formatting a Sequence

- [func formatted() -> String](/documentation/swift/sequence/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/sequence/formatted(_:))
- [ListFormatStyle](/documentation/foundation/listformatstyle)

###### Splitting and Joining Elements

- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/sequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/sequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/sequence/joined())
- [func joined(separator: String) -> String](/documentation/swift/sequence/joined(separator:)-5zjyj)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/sequence/joined(separator:)-7w47r)

###### Comparing Sequences

- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/sequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/sequence/elementsequal(_:by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/sequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/sequence/starts(with:by:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/sequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/sequence/lexicographicallyprecedes(_:by:))

###### Accessing Underlying Storage

- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/sequence/withcontiguousstorageifavailable(_:))

###### Sequence Implementations

- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/sequence/withcontiguousstorageifavailable(_:)-2gxj0)

###### Publishing a Sequence

- [var publisher: Publishers.Sequence<Self, Never>](/documentation/swift/sequence/publisher)

###### Applying AppKit Graphic Operations

- [func fill(using: NSCompositingOperation)](/documentation/swift/sequence/fill(using:)-l1te)
- [func fill(using: NSCompositingOperation)](/documentation/swift/sequence/fill(using:)-45en6)
- [func clip()](/documentation/swift/sequence/clip())

###### Instance Methods

- [func compare<Comparator>(Comparator.Compared, Comparator.Compared) -> ComparisonResult](/documentation/swift/sequence/compare(_:_:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/sequence/count(where:))
- [func donatedWithin<DonationInfo>(Tips.DonationTimeRange) -> [Self.Element]](/documentation/swift/sequence/donatedwithin(_:))
- [func fill(using: NSCompositingOperation)](/documentation/swift/sequence/fill(using:)-6sdhf)
- [func filter(Predicate<Self.Element>) throws -> [Self.Element]](/documentation/swift/sequence/filter(_:)-8li9y)
- [func filter<T>(matchingCategory: CMTypedTag<T>.Category) -> [CMTypedTag<T>]](/documentation/swift/sequence/filter(matchingcategory:))
- [func first<T>(matchingCategory: CMTypedTag<T>.Category) -> CMTypedTag<T>?](/documentation/swift/sequence/first(matchingcategory:))
- [func firstValue<T>(matchingCategory: CMTypedTag<T>.Category) -> T?](/documentation/swift/sequence/firstvalue(matchingcategory:))
- [func largestSubset<DonationInfo, Value>(groupedBy: KeyPath<DonationInfo, Value>) -> [Self.Element]](/documentation/swift/sequence/largestsubset(groupedby:))
- [func mapAnnotations<Feature, Input, Output>((Input) async throws -> Output) async rethrows -> [AnnotatedFeature<Feature, Output>]](/documentation/swift/sequence/mapannotations(_:)-48olp)
- [func mapAnnotations<Feature, Input, Output>((Input) throws -> Output) rethrows -> [AnnotatedFeature<Feature, Output>]](/documentation/swift/sequence/mapannotations(_:)-9q4pb)
- [func mapFeatures<Input, Output, Annotation>((Input) async throws -> Output) async rethrows -> [AnnotatedFeature<Output, Annotation>]](/documentation/swift/sequence/mapfeatures(_:)-83n0d)
- [func mapFeatures<Input, Output, Annotation>((Input) throws -> Output) rethrows -> [AnnotatedFeature<Output, Annotation>]](/documentation/swift/sequence/mapfeatures(_:)-8zq1h)
- [func randomSplit<Feature, Annotation>(by: Double, seed: Int?) -> ([AnnotatedFeature<Feature, Annotation>], [AnnotatedFeature<Feature, Annotation>])](/documentation/swift/sequence/randomsplit(by:seed:)-3a1xo)
- [func randomSplit<T>(by: Double, seed: Int?) -> (ArraySlice<T>, ArraySlice<T>)](/documentation/swift/sequence/randomsplit(by:seed:)-9637d)
- [func randomSplit<T, Generator>(by: Double, using: inout Generator) -> (ArraySlice<T>, ArraySlice<T>)](/documentation/swift/sequence/randomsplit(by:using:)-500fy)
- [func randomSplit<Feature, Annotation, Generator>(by: Double, using: inout Generator) -> ([AnnotatedFeature<Feature, Annotation>], [AnnotatedFeature<Feature, Annotation>])](/documentation/swift/sequence/randomsplit(by:using:)-9i5e5)
- [func smallestSubset<DonationInfo, Value>(groupedBy: KeyPath<DonationInfo, Value>) -> [Self.Element]](/documentation/swift/sequence/smallestsubset(groupedby:))
- [func sorted<S, Comparator>(using: S) -> [Self.Element]](/documentation/swift/sequence/sorted(using:)-69w5u)
- [func sorted<Comparator>(using: Comparator) -> [Self.Element]](/documentation/swift/sequence/sorted(using:)-95lls)

###### Type Methods

- [static func reparentEquipment(some Sequence<any Equipment>, childrenOf: some Equipment, order: MoveEquipmentAction.Order?, context: UInt64) -> Self](/documentation/swift/sequence/reparentequipment(_:childrenof:order:context:))
- [static func reparentEquipment(matching: some Sequence<EquipmentIdentifier>, childrenOf: EquipmentIdentifier, order: MoveEquipmentAction.Order?, context: UInt64) -> Self](/documentation/swift/sequence/reparentequipment(matching:childrenof:order:context:))
- [Collection](/documentation/swift/collection)

###### Accessing a Collection’s Elements

- [subscript(Self.Index) -> Self.Element](/documentation/swift/collection/subscript(_:)-887tm)

###### Collection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/collection/subscript(_:)-2ew5d)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/collection/subscript(_:)-593m9)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collection/subscript(_:)-6dbv1)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collection/subscript(_:)-6nizk)

###### MutableCollection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-1wd4v)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/mutablecollection/subscript(_:)-2qem1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-37d4d)

###### Selecting and Excluding Elements

- [func popFirst() -> Self.Element?](/documentation/swift/collection/popfirst())
- [func removeFirst() -> Self.Element](/documentation/swift/collection/removefirst())
- [func removeFirst(Int)](/documentation/swift/collection/removefirst(_:))

###### Manipulating Indices

- [var startIndex: Self.Index](/documentation/swift/collection/startindex)
- [var endIndex: Self.Index](/documentation/swift/collection/endindex)
- [var indices: Self.Indices](/documentation/swift/collection/indices-9kkbf)

###### BidirectionalCollection Implementations

- [var indices: Range<Self.Index>](/documentation/swift/bidirectionalcollection/indices-4jyvu)

###### Collection Implementations

- [var indices: DefaultIndices<Self>](/documentation/swift/collection/indices-wkbb)
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/collection/index(after:))

###### BidirectionalCollection Implementations

- [func index(after: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(after:)-4zlq6)
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/collection/formindex(_:offsetby:)-393pr)
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/collection/formindex(_:offsetby:limitedby:)-6jwra)

###### Iterating Over a Collection’s Elements

- [func makeIterator() -> Self.Iterator](/documentation/swift/collection/makeiterator())

###### Sequence Implementations

- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/sequence/makeiterator()-85cyw)

###### Splitting and Joining Elements

- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/collection/split(separator:maxsplits:omittingemptysubsequences:)-6c22)
- [func split<C>(separator: C, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/collection/split(separator:maxsplits:omittingemptysubsequences:)-9esbr)
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/collection/split(maxsplits:omittingemptysubsequences:whereseparator:))

###### Related Collection Types

- [DiscontiguousSlice](/documentation/swift/discontiguousslice)

###### Instance Properties

- [var base: Base](/documentation/swift/discontiguousslice/base)
- [let subranges: RangeSet<Base.Index>](/documentation/swift/discontiguousslice/subranges)

###### Subscripts

- [subscript(DiscontiguousSlice<Base>.Index) -> Base.Element](/documentation/swift/discontiguousslice/subscript(_:)-1j7n7)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/discontiguousslice/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/discontiguousslice/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/discontiguousslice/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/discontiguousslice/difference(from:by:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/discontiguousslice/formindex(before:))
- [func index(before: DiscontiguousSlice<Base>.Index) -> DiscontiguousSlice<Base>.Index](/documentation/swift/discontiguousslice/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/discontiguousslice/joined(separator:)-4yy0x)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/discontiguousslice/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/discontiguousslice/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/discontiguousslice/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/discontiguousslice/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/discontiguousslice/removelast())
- [func removeLast(Int)](/documentation/swift/discontiguousslice/removelast(_:))
- [Collection Implementations](/documentation/swift/discontiguousslice/collection-implementations)

###### Structures

- [DiscontiguousSlice.Index](/documentation/swift/discontiguousslice/index)

###### Instance Properties

- [let base: Base.Index](/documentation/swift/discontiguousslice/index/base)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/discontiguousslice/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/discontiguousslice/index/'...(_:)-27buj)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/discontiguousslice/index/'...(_:)-6onw0)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/discontiguousslice/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/discontiguousslice/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/discontiguousslice/index/'.._(_:_:))
- [static func < (DiscontiguousSlice<Base>.Index, DiscontiguousSlice<Base>.Index) -> Bool](/documentation/swift/discontiguousslice/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/discontiguousslice/index/_(_:_:)-9lvwm)
- [static func >= (Self, Self) -> Bool](/documentation/swift/discontiguousslice/index/_=(_:_:)-7ocgb)
- [static func <= (Self, Self) -> Bool](/documentation/swift/discontiguousslice/index/_=(_:_:)-bgbv)
- [CustomStringConvertible Implementations](/documentation/swift/discontiguousslice/index/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/discontiguousslice/index/description)
- [Equatable Implementations](/documentation/swift/discontiguousslice/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/discontiguousslice/index/!=(_:_:))
- [static func == (DiscontiguousSlice<Base>.Index, DiscontiguousSlice<Base>.Index) -> Bool](/documentation/swift/discontiguousslice/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/discontiguousslice/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/discontiguousslice/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/discontiguousslice/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/discontiguousslice/count)
- [var count: Int](/documentation/swift/discontiguousslice/count-37f7u)
- [var endIndex: DiscontiguousSlice<Base>.Index](/documentation/swift/discontiguousslice/endindex)
- [var first: Self.Element?](/documentation/swift/discontiguousslice/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/discontiguousslice/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/discontiguousslice/isempty)
- [var isEmpty: Bool](/documentation/swift/discontiguousslice/isempty-6y6jl)
- [var startIndex: DiscontiguousSlice<Base>.Index](/documentation/swift/discontiguousslice/startindex)
- [var underestimatedCount: Int](/documentation/swift/discontiguousslice/underestimatedcount)

###### Instance Methods

- [func distance(from: DiscontiguousSlice<Base>.Index, to: DiscontiguousSlice<Base>.Index) -> Int](/documentation/swift/discontiguousslice/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/discontiguousslice/distance(from:to:)-7p9uz)
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/discontiguousslice/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/discontiguousslice/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/discontiguousslice/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/discontiguousslice/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/discontiguousslice/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/discontiguousslice/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/discontiguousslice/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/discontiguousslice/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/discontiguousslice/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/discontiguousslice/index(_:offsetby:limitedby:))
- [func index(after: DiscontiguousSlice<Base>.Index) -> DiscontiguousSlice<Base>.Index](/documentation/swift/discontiguousslice/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/discontiguousslice/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/discontiguousslice/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/discontiguousslice/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/discontiguousslice/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/discontiguousslice/map(_:)-44xuh)
- [func popFirst() -> Self.Element?](/documentation/swift/discontiguousslice/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/discontiguousslice/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/discontiguousslice/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/discontiguousslice/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/discontiguousslice/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/discontiguousslice/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/discontiguousslice/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/discontiguousslice/removefirst())
- [func removeFirst(Int)](/documentation/swift/discontiguousslice/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/discontiguousslice/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/discontiguousslice/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/discontiguousslice/split(separator:maxsplits:omittingemptysubsequences:)-5ji1p)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/discontiguousslice/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/discontiguousslice/suffix(from:))

###### Subscripts

- [subscript(Range<DiscontiguousSlice<Base>.Index>) -> DiscontiguousSlice<Base>](/documentation/swift/discontiguousslice/subscript(_:)-1ra8t)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/discontiguousslice/subscript(_:)-1ytel)
- [subscript(DiscontiguousSlice<Base>.Index) -> Base.Element](/documentation/swift/discontiguousslice/subscript(_:)-8h9i0)

###### Type Aliases

- [DiscontiguousSlice.Indices](/documentation/swift/discontiguousslice/indices)
- [DiscontiguousSlice.SubSequence](/documentation/swift/discontiguousslice/subsequence)
- [CustomStringConvertible Implementations](/documentation/swift/discontiguousslice/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/discontiguousslice/description)
- [Equatable Implementations](/documentation/swift/discontiguousslice/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/discontiguousslice/!=(_:_:))
- [static func == (DiscontiguousSlice<Base>, DiscontiguousSlice<Base>) -> Bool](/documentation/swift/discontiguousslice/==(_:_:))
- [Hashable Implementations](/documentation/swift/discontiguousslice/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/discontiguousslice/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/discontiguousslice/hash(into:))
- [Sequence Implementations](/documentation/swift/discontiguousslice/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/discontiguousslice/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/discontiguousslice/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/discontiguousslice/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/discontiguousslice/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/discontiguousslice/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/discontiguousslice/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/discontiguousslice/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/discontiguousslice/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/discontiguousslice/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/discontiguousslice/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/discontiguousslice/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/discontiguousslice/flatmap(_:)-2c509)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/discontiguousslice/flatmap(_:)-6ssev)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/discontiguousslice/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/discontiguousslice/joined())
- [func joined(separator: String) -> String](/documentation/swift/discontiguousslice/joined(separator:)-1i1hn)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/discontiguousslice/joined(separator:)-81bsy)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/discontiguousslice/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/discontiguousslice/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/discontiguousslice/map(_:)-9ml54)
- [func max() -> Self.Element?](/documentation/swift/discontiguousslice/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/discontiguousslice/max(by:))
- [func min() -> Self.Element?](/documentation/swift/discontiguousslice/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/discontiguousslice/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/discontiguousslice/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/discontiguousslice/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/discontiguousslice/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/discontiguousslice/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/discontiguousslice/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/discontiguousslice/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/discontiguousslice/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/discontiguousslice/split(separator:maxsplits:omittingemptysubsequences:)-qt1d)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/discontiguousslice/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/discontiguousslice/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/discontiguousslice/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [DiscontiguousSlice.Element](/documentation/swift/discontiguousslice/element)
- [DiscontiguousSlice.Iterator](/documentation/swift/discontiguousslice/iterator)

###### Associated Types

- [Element](/documentation/swift/collection/element)
- [Index](/documentation/swift/collection/index)
- [Indices](/documentation/swift/collection/indices-swift.associatedtype)
- [Iterator](/documentation/swift/collection/iterator)
- [SubSequence](/documentation/swift/collection/subsequence)

###### Instance Properties

- [var count: Int](/documentation/swift/collection/count)

###### Collection Implementations

- [var count: Int](/documentation/swift/collection/count-34z72)
- [var first: Self.Element?](/documentation/swift/collection/first)
- [var isEmpty: Bool](/documentation/swift/collection/isempty)

###### Collection Implementations

- [var isEmpty: Bool](/documentation/swift/collection/isempty-17zoy)

###### Instance Methods

- [func contains<C>(C) -> Bool](/documentation/swift/collection/contains(_:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/collection/distance(from:to:))

###### BidirectionalCollection Implementations

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/bidirectionalcollection/distance(from:to:)-5ofg0)
- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/bidirectionalcollection/distance(from:to:)-6p3we)

###### Collection Implementations

- [func distance<T>(from: Self.Index, to: Self.Index) -> T](/documentation/swift/collection/distance(from:to:)-2rytr)
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/collection/distance(from:to:)-zoy0)
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collection/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/collection/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/collection/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/collection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/collection/firstindex(where:))
- [func firstRange<C>(of: C) -> Range<Self.Index>?](/documentation/swift/collection/firstrange(of:))
- [func flatMap((Self.Element) throws -> String?) rethrows -> [String]](/documentation/swift/collection/flatmap(_:))
- [func formIndex<T>(inout Self.Index, offsetBy: T)](/documentation/swift/collection/formindex(_:offsetby:)-9q9sx)
- [func formIndex<T>(inout Self.Index, offsetBy: T, limitedBy: Self.Index) -> Bool](/documentation/swift/collection/formindex(_:offsetby:limitedby:)-6ovn)
- [func formIndex(after: inout Self.Index)](/documentation/swift/collection/formindex(after:))

###### Collection Implementations

- [func formIndex(after: inout Self.Index)](/documentation/swift/collection/formindex(after:)-1qwjp)
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/collection/index(_:offsetby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:)-1t7ir)
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:)-3cj6r)

###### Collection Implementations

- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/collection/index(_:offsetby:)-1q8nu)
- [func index<T>(Self.Index, offsetBy: T) -> Self.Index](/documentation/swift/collection/index(_:offsetby:)-9qzbn)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/collection/index(_:offsetby:limitedby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:)-567lj)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:)-8jlcd)

###### Collection Implementations

- [func index<T>(Self.Index, offsetBy: T, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/collection/index(_:offsetby:limitedby:)-4m1pi)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/collection/index(_:offsetby:limitedby:)-7713p)
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/collection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/collection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/collection/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/collection/map(_:))
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/collection/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/collection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/collection/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collection/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/collection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/collection/randomelement(using:))
- [func ranges<C>(of: C) -> [Range<Self.Index>]](/documentation/swift/collection/ranges(of:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collection/removingsubranges(_:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/collection/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/collection/suffix(from:))
- [func trimPrefix<Prefix>(Prefix)](/documentation/swift/collection/trimprefix(_:))
- [func trimPrefix(while: (Self.Element) throws -> Bool) throws](/documentation/swift/collection/trimprefix(while:))
- [func trimmingPrefix<Prefix>(Prefix) -> Self.SubSequence](/documentation/swift/collection/trimmingprefix(_:))
- [func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collection/trimmingprefix(while:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/collection/subscript(_:)-1jxub)

###### Collection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/collection/subscript(_:)-2ew5d)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/collection/subscript(_:)-593m9)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collection/subscript(_:)-6dbv1)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collection/subscript(_:)-6nizk)

###### MutableCollection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-1wd4v)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/mutablecollection/subscript(_:)-2qem1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-37d4d)

###### Type Aliases

- [Collection.IndexDistance](/documentation/swift/collection/indexdistance)

##### Collection Traversal

- [BidirectionalCollection](/documentation/swift/bidirectionalcollection)

###### Associated Types

- [Element](/documentation/swift/bidirectionalcollection/element)
- [Index](/documentation/swift/bidirectionalcollection/index)
- [Indices](/documentation/swift/bidirectionalcollection/indices-swift.associatedtype)
- [SubSequence](/documentation/swift/bidirectionalcollection/subsequence)

###### Instance Properties

- [var endIndex: Self.Index](/documentation/swift/bidirectionalcollection/endindex)
- [var indices: Self.Indices](/documentation/swift/bidirectionalcollection/indices-4qv42)

###### BidirectionalCollection Implementations

- [var indices: Range<Self.Index>](/documentation/swift/bidirectionalcollection/indices-4jyvu)
- [var last: Self.Element?](/documentation/swift/bidirectionalcollection/last)
- [var startIndex: Self.Index](/documentation/swift/bidirectionalcollection/startindex)

###### Instance Methods

- [func contains(some RegexComponent) -> Bool](/documentation/swift/bidirectionalcollection/contains(_:)-1l08t)
- [func contains(() -> some RegexComponent) -> Bool](/documentation/swift/bidirectionalcollection/contains(_:)-60wyq)
- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/bidirectionalcollection/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/bidirectionalcollection/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/bidirectionalcollection/distance(from:to:))

###### BidirectionalCollection Implementations

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/bidirectionalcollection/distance(from:to:)-5ofg0)
- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/bidirectionalcollection/distance(from:to:)-6p3we)
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/bidirectionalcollection/droplast(_:))
- [func firstMatch<Output>(of: () -> some RegexComponent) -> Regex<Output>.Match?](/documentation/swift/bidirectionalcollection/firstmatch(of:)-6v8ci)
- [func firstMatch<Output>(of: some RegexComponent) -> Regex<Output>.Match?](/documentation/swift/bidirectionalcollection/firstmatch(of:)-7m8f4)
- [func firstRange(of: some RegexComponent) -> Range<Self.Index>?](/documentation/swift/bidirectionalcollection/firstrange(of:)-1di7b)
- [func firstRange(of: () -> some RegexComponent) -> Range<Self.Index>?](/documentation/swift/bidirectionalcollection/firstrange(of:)-3jqrg)
- [func firstRange<C>(of: C) -> Range<Self.Index>?](/documentation/swift/bidirectionalcollection/firstrange(of:)-5sum7)
- [func formIndex(after: inout Self.Index)](/documentation/swift/bidirectionalcollection/formindex(after:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/bidirectionalcollection/formindex(before:))

###### BidirectionalCollection Implementations

- [func formIndex(before: inout Self.Index)](/documentation/swift/bidirectionalcollection/formindex(before:)-5chhp)
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:)-1t7ir)
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:)-3cj6r)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:)-567lj)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:)-8jlcd)
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(after:))

###### BidirectionalCollection Implementations

- [func index(after: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(after:)-4zlq6)
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(before:))

###### BidirectionalCollection Implementations

- [func index(before: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(before:)-2jmfj)
- [func joined(separator: String) -> String](/documentation/swift/bidirectionalcollection/joined(separator:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/bidirectionalcollection/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/bidirectionalcollection/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/bidirectionalcollection/lastindex(where:))
- [func matches<Output>(of: () -> some RegexComponent) -> [Regex<Output>.Match]](/documentation/swift/bidirectionalcollection/matches(of:)-5eey9)
- [func matches<Output>(of: some RegexComponent) -> [Regex<Output>.Match]](/documentation/swift/bidirectionalcollection/matches(of:)-5hhx)
- [func popLast() -> Self.Element?](/documentation/swift/bidirectionalcollection/poplast())
- [func prefixMatch<Output>(of: () -> some RegexComponent) -> Regex<Output>.Match?](/documentation/swift/bidirectionalcollection/prefixmatch(of:)-2fwv6)
- [func prefixMatch<R>(of: R) -> Regex<R.RegexOutput>.Match?](/documentation/swift/bidirectionalcollection/prefixmatch(of:)-7dq6v)
- [func ranges(of: some RegexComponent) -> [Range<Self.Index>]](/documentation/swift/bidirectionalcollection/ranges(of:)-40wx3)
- [func ranges(of: () -> some RegexComponent) -> [Range<Self.Index>]](/documentation/swift/bidirectionalcollection/ranges(of:)-9qfdo)
- [func removeLast() -> Self.Element](/documentation/swift/bidirectionalcollection/removelast())
- [func removeLast(Int)](/documentation/swift/bidirectionalcollection/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/bidirectionalcollection/reversed())
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, separator: () -> some RegexComponent) -> [Self.SubSequence]](/documentation/swift/bidirectionalcollection/split(maxsplits:omittingemptysubsequences:separator:))
- [func split(separator: some RegexComponent, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/bidirectionalcollection/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts(with: some RegexComponent) -> Bool](/documentation/swift/bidirectionalcollection/starts(with:)-4972u)
- [func starts(with: () -> some RegexComponent) -> Bool](/documentation/swift/bidirectionalcollection/starts(with:)-97xlm)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/bidirectionalcollection/suffix(_:))
- [func trimmingPrefix(some RegexComponent) -> Self.SubSequence](/documentation/swift/bidirectionalcollection/trimmingprefix(_:)-1luge)
- [func trimmingPrefix(() -> some RegexComponent) -> Self.SubSequence](/documentation/swift/bidirectionalcollection/trimmingprefix(_:)-781ik)
- [func wholeMatch<Output>(of: () -> some RegexComponent) -> Regex<Output>.Match?](/documentation/swift/bidirectionalcollection/wholematch(of:)-1wbp6)
- [func wholeMatch<R>(of: R) -> Regex<R.RegexOutput>.Match?](/documentation/swift/bidirectionalcollection/wholematch(of:)-7741n)

###### Subscripts

- [subscript(Self.Index) -> Self.Element](/documentation/swift/bidirectionalcollection/subscript(_:)-5tj5)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/bidirectionalcollection/subscript(_:)-7tzd8)
- [RandomAccessCollection](/documentation/swift/randomaccesscollection)

###### Associated Types

- [Element](/documentation/swift/randomaccesscollection/element)
- [Index](/documentation/swift/randomaccesscollection/index)
- [Indices](/documentation/swift/randomaccesscollection/indices-swift.associatedtype)
- [SubSequence](/documentation/swift/randomaccesscollection/subsequence)

###### Instance Properties

- [var endIndex: Self.Index](/documentation/swift/randomaccesscollection/endindex)
- [var indices: Self.Indices](/documentation/swift/randomaccesscollection/indices-swift.property)

###### BidirectionalCollection Implementations

- [var indices: Range<Self.Index>](/documentation/swift/bidirectionalcollection/indices-4jyvu)
- [var startIndex: Self.Index](/documentation/swift/randomaccesscollection/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/randomaccesscollection/distance(from:to:))

###### BidirectionalCollection Implementations

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/bidirectionalcollection/distance(from:to:)-6p3we)
- [func formIndex(after: inout Self.Index)](/documentation/swift/randomaccesscollection/formindex(after:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/randomaccesscollection/formindex(before:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/randomaccesscollection/index(_:offsetby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/bidirectionalcollection/index(_:offsetby:)-3cj6r)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/randomaccesscollection/index(_:offsetby:limitedby:))

###### BidirectionalCollection Implementations

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/bidirectionalcollection/index(_:offsetby:limitedby:)-8jlcd)
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/randomaccesscollection/index(after:))

###### BidirectionalCollection Implementations

- [func index(after: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(after:)-4zlq6)
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/randomaccesscollection/index(before:))

###### BidirectionalCollection Implementations

- [func index(before: Self.Index) -> Self.Index](/documentation/swift/bidirectionalcollection/index(before:)-2jmfj)

###### Subscripts

- [subscript(Self.Index) -> Self.Element](/documentation/swift/randomaccesscollection/subscript(_:)-2mluu)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/randomaccesscollection/subscript(_:)-3fc50)

##### Collection Mutability

- [MutableCollection](/documentation/swift/mutablecollection)

###### Associated Types

- [Element](/documentation/swift/mutablecollection/element)
- [Index](/documentation/swift/mutablecollection/index)
- [SubSequence](/documentation/swift/mutablecollection/subsequence)

###### Instance Methods

- [func move(fromOffsets: IndexSet, toOffset: Int)](/documentation/swift/mutablecollection/move(fromoffsets:tooffset:))
- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/mutablecollection/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/mutablecollection/partition(by:))

###### MutableCollection Implementations

- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/mutablecollection/partition(by:)-4stj2)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/mutablecollection/partition(by:)-8g62j)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/mutablecollection/removesubranges(_:))
- [func reverse()](/documentation/swift/mutablecollection/reverse())
- [func shuffle()](/documentation/swift/mutablecollection/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/mutablecollection/shuffle(using:))
- [func sort()](/documentation/swift/mutablecollection/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/mutablecollection/sort(by:))
- [func sort<Comparator>(using: Comparator)](/documentation/swift/mutablecollection/sort(using:)-694fo)
- [func sort<S, Comparator>(using: S)](/documentation/swift/mutablecollection/sort(using:)-9a05g)
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/mutablecollection/swapat(_:_:))

###### MutableCollection Implementations

- [func swapAt(Self.Index, Self.Index)](/documentation/swift/mutablecollection/swapat(_:_:)-479dx)
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/mutablecollection/withcontiguousmutablestorageifavailable(_:))

###### MutableCollection Implementations

- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/mutablecollection/withcontiguousmutablestorageifavailable(_:)-83khw)

###### Subscripts

- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-31dgt)

###### MutableCollection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-1wd4v)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/mutablecollection/subscript(_:)-2qem1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-37d4d)
- [subscript(Self.Index) -> Self.Element](/documentation/swift/mutablecollection/subscript(_:)-7tq68)

###### MutableCollection Implementations

- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-1wd4v)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/mutablecollection/subscript(_:)-2qem1)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/mutablecollection/subscript(_:)-37d4d)
- [RangeReplaceableCollection](/documentation/swift/rangereplaceablecollection)

###### Creating a New Collection

- [init()](/documentation/swift/rangereplaceablecollection/init())

###### Adding Elements

- [func insert<S>(contentsOf: S, at: Self.Index)](/documentation/swift/rangereplaceablecollection/insert(contentsof:at:))

###### RangeReplaceableCollection Implementations

- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/rangereplaceablecollection/insert(contentsof:at:)-3h5sa)

###### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/rangereplaceablecollection/+(_:_:)-2n67q)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/rangereplaceablecollection/+(_:_:)-2t6em)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/rangereplaceablecollection/+(_:_:)-5rv8e)
- [static func += <Other>(inout Self, Other)](/documentation/swift/rangereplaceablecollection/+=(_:_:))

###### Associated Types

- [SubSequence](/documentation/swift/rangereplaceablecollection/subsequence)

###### Initializers

- [init<S>(S)](/documentation/swift/rangereplaceablecollection/init(_:))

###### RangeReplaceableCollection Implementations

- [init<S>(S)](/documentation/swift/rangereplaceablecollection/init(_:)-2c3y1)
- [init(repeating: Self.Element, count: Int)](/documentation/swift/rangereplaceablecollection/init(repeating:count:))

###### RangeReplaceableCollection Implementations

- [init(repeating: Self.Element, count: Int)](/documentation/swift/rangereplaceablecollection/init(repeating:count:)-7exog)

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/rangereplaceablecollection/append(_:))

###### RangeReplaceableCollection Implementations

- [func append(Self.Element)](/documentation/swift/rangereplaceablecollection/append(_:)-3fp44)
- [func append<S>(contentsOf: S)](/documentation/swift/rangereplaceablecollection/append(contentsof:))

###### RangeReplaceableCollection Implementations

- [func append<S>(contentsOf: S)](/documentation/swift/rangereplaceablecollection/append(contentsof:)-15j8g)
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/rangereplaceablecollection/applying(_:))
- [func filter((Self.Element) throws -> Bool) rethrows -> Self](/documentation/swift/rangereplaceablecollection/filter(_:))
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/rangereplaceablecollection/insert(_:at:))

###### RangeReplaceableCollection Implementations

- [func insert(Self.Element, at: Self.Index)](/documentation/swift/rangereplaceablecollection/insert(_:at:)-2i3ee)
- [func popLast() -> Self.Element?](/documentation/swift/rangereplaceablecollection/poplast()-253jb)
- [func popLast() -> Self.Element?](/documentation/swift/rangereplaceablecollection/poplast()-7kbf5)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/rangereplaceablecollection/remove(at:))

###### RangeReplaceableCollection Implementations

- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/rangereplaceablecollection/remove(at:)-98ice)
- [func remove(atOffsets: IndexSet)](/documentation/swift/rangereplaceablecollection/remove(atoffsets:))
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/rangereplaceablecollection/removeall(keepingcapacity:))

###### RangeReplaceableCollection Implementations

- [func removeAll(keepingCapacity: Bool)](/documentation/swift/rangereplaceablecollection/removeall(keepingcapacity:)-9axpj)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/rangereplaceablecollection/removeall(where:))

###### RangeReplaceableCollection Implementations

- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/rangereplaceablecollection/removeall(where:)-7wiss)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/rangereplaceablecollection/removeall(where:)-zdk8)
- [func removeFirst() -> Self.Element](/documentation/swift/rangereplaceablecollection/removefirst())

###### RangeReplaceableCollection Implementations

- [func removeFirst() -> Self.Element](/documentation/swift/rangereplaceablecollection/removefirst()-6z962)
- [func removeFirst() -> Self.Element](/documentation/swift/rangereplaceablecollection/removefirst()-9kzay)
- [func removeFirst(Int)](/documentation/swift/rangereplaceablecollection/removefirst(_:))

###### RangeReplaceableCollection Implementations

- [func removeFirst(Int)](/documentation/swift/rangereplaceablecollection/removefirst(_:)-6lekf)
- [func removeFirst(Int)](/documentation/swift/rangereplaceablecollection/removefirst(_:)-6mezs)
- [func removeLast() -> Self.Element](/documentation/swift/rangereplaceablecollection/removelast()-1tnw)
- [func removeLast() -> Self.Element](/documentation/swift/rangereplaceablecollection/removelast()-6e2v1)
- [func removeLast(Int)](/documentation/swift/rangereplaceablecollection/removelast(_:)-66xv1)
- [func removeLast(Int)](/documentation/swift/rangereplaceablecollection/removelast(_:)-n550)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/rangereplaceablecollection/removesubrange(_:))

###### RangeReplaceableCollection Implementations

- [func removeSubrange(Range<Self.Index>)](/documentation/swift/rangereplaceablecollection/removesubrange(_:)-3s5pl)
- [func removeSubrange<R>(R)](/documentation/swift/rangereplaceablecollection/removesubrange(_:)-4820q)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/rangereplaceablecollection/removesubranges(_:))
- [func replace<Output, Replacement>(some RegexComponent, maxReplacements: Int, with: (Regex<Output>.Match) throws -> Replacement) rethrows](/documentation/swift/rangereplaceablecollection/replace(_:maxreplacements:with:))
- [func replace<Replacement>(some RegexComponent, with: Replacement, maxReplacements: Int)](/documentation/swift/rangereplaceablecollection/replace(_:with:maxreplacements:)-20ctz)
- [func replace<C, Replacement>(C, with: Replacement, maxReplacements: Int)](/documentation/swift/rangereplaceablecollection/replace(_:with:maxreplacements:)-5u0yu)
- [func replace<Output, Replacement>(maxReplacements: Int, content: () -> some RegexComponent, with: (Regex<Output>.Match) throws -> Replacement) rethrows](/documentation/swift/rangereplaceablecollection/replace(maxreplacements:content:with:))
- [func replace<Replacement>(with: Replacement, maxReplacements: Int, content: () -> some RegexComponent)](/documentation/swift/rangereplaceablecollection/replace(with:maxreplacements:content:))
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/rangereplaceablecollection/replacesubrange(_:with:))

###### RangeReplaceableCollection Implementations

- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/rangereplaceablecollection/replacesubrange(_:with:)-9qrl3)
- [func replacing<Output, Replacement>(some RegexComponent, maxReplacements: Int, with: (Regex<Output>.Match) throws -> Replacement) rethrows -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:maxreplacements:with:))
- [func replacing<Output, Replacement>(some RegexComponent, subrange: Range<Self.Index>, maxReplacements: Int, with: (Regex<Output>.Match) throws -> Replacement) rethrows -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:subrange:maxreplacements:with:))
- [func replacing<Replacement>(some RegexComponent, with: Replacement, maxReplacements: Int) -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:with:maxreplacements:)-1tg5u)
- [func replacing<C, Replacement>(C, with: Replacement, maxReplacements: Int) -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:with:maxreplacements:)-6y22p)
- [func replacing<C, Replacement>(C, with: Replacement, subrange: Range<Self.Index>, maxReplacements: Int) -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:with:subrange:maxreplacements:)-1uswm)
- [func replacing<Replacement>(some RegexComponent, with: Replacement, subrange: Range<Self.Index>, maxReplacements: Int) -> Self](/documentation/swift/rangereplaceablecollection/replacing(_:with:subrange:maxreplacements:)-5mdsz)
- [func replacing<Output, Replacement>(maxReplacements: Int, content: () -> some RegexComponent, with: (Regex<Output>.Match) throws -> Replacement) rethrows -> Self](/documentation/swift/rangereplaceablecollection/replacing(maxreplacements:content:with:))
- [func replacing<Output, Replacement>(subrange: Range<Self.Index>, maxReplacements: Int, content: () -> some RegexComponent, with: (Regex<Output>.Match) throws -> Replacement) rethrows -> Self](/documentation/swift/rangereplaceablecollection/replacing(subrange:maxreplacements:content:with:))
- [func replacing<Replacement>(with: Replacement, maxReplacements: Int, content: () -> some RegexComponent) -> Self](/documentation/swift/rangereplaceablecollection/replacing(with:maxreplacements:content:))
- [func replacing<Replacement>(with: Replacement, subrange: Range<Self.Index>, maxReplacements: Int, content: () -> some RegexComponent) -> Self](/documentation/swift/rangereplaceablecollection/replacing(with:subrange:maxreplacements:content:))
- [func reserveCapacity(Int)](/documentation/swift/rangereplaceablecollection/reservecapacity(_:))

###### RangeReplaceableCollection Implementations

- [func reserveCapacity(Int)](/documentation/swift/rangereplaceablecollection/reservecapacity(_:)-1ewcj)
- [func trimPrefix(() -> some RegexComponent)](/documentation/swift/rangereplaceablecollection/trimprefix(_:)-2hzf1)
- [func trimPrefix(some RegexComponent)](/documentation/swift/rangereplaceablecollection/trimprefix(_:)-2s3lb)
- [func trimPrefix<Prefix>(Prefix)](/documentation/swift/rangereplaceablecollection/trimprefix(_:)-3t4tj)
- [func trimPrefix(while: (Self.Element) throws -> Bool) rethrows](/documentation/swift/rangereplaceablecollection/trimprefix(while:))

###### Subscripts

- [subscript(Self.Index) -> Self.Element](/documentation/swift/rangereplaceablecollection/subscript(_:)-1x7vz)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/rangereplaceablecollection/subscript(_:)-3h0y3)

##### Manual Iteration

- [IteratorProtocol](/documentation/swift/iteratorprotocol)

###### Associated Types

- [Element](/documentation/swift/iteratorprotocol/element)

###### Instance Methods

- [func next() -> Self.Element?](/documentation/swift/iteratorprotocol/next())

##### Algebraic Sets

- [SetAlgebra](/documentation/swift/setalgebra)

###### Creating a Set

- [init()](/documentation/swift/setalgebra/init())

###### SetAlgebra Implementations

- [init()](/documentation/swift/setalgebra/init()-3obov)

###### Testing for Membership

- [func contains(Self.Element) -> Bool](/documentation/swift/setalgebra/contains(_:))

###### SetAlgebra Implementations

- [func contains(Self) -> Bool](/documentation/swift/setalgebra/contains(_:)-xkyd)
- [Element](/documentation/swift/setalgebra/element)

###### Adding and Removing Elements

- [func insert(Self.Element) -> (inserted: Bool, memberAfterInsert: Self.Element)](/documentation/swift/setalgebra/insert(_:))

###### SetAlgebra Implementations

- [func insert(Self.Element) -> (inserted: Bool, memberAfterInsert: Self.Element)](/documentation/swift/setalgebra/insert(_:)-1uo97)
- [func insert(Self.Element) -> (inserted: Bool, memberAfterInsert: Self.Element)](/documentation/swift/setalgebra/insert(_:)-9wohp)
- [func update(with: Self.Element) -> Self.Element?](/documentation/swift/setalgebra/update(with:))

###### SetAlgebra Implementations

- [func update(with: Self.Element) -> Self.Element?](/documentation/swift/setalgebra/update(with:)-2oa9l)
- [func remove(Self.Element) -> Self.Element?](/documentation/swift/setalgebra/remove(_:))

###### SetAlgebra Implementations

- [func remove(Self.Element) -> Self.Element?](/documentation/swift/setalgebra/remove(_:)-1pj2m)

###### Combining Sets

- [func union(Self) -> Self](/documentation/swift/setalgebra/union(_:))

###### SetAlgebra Implementations

- [func union(Self) -> Self](/documentation/swift/setalgebra/union(_:)-7mfo6)
- [func formUnion(Self)](/documentation/swift/setalgebra/formunion(_:))

###### SetAlgebra Implementations

- [func formUnion(Self)](/documentation/swift/setalgebra/formunion(_:)-4ht9l)
- [func intersection(Self) -> Self](/documentation/swift/setalgebra/intersection(_:))

###### SetAlgebra Implementations

- [func intersection(Self) -> Self](/documentation/swift/setalgebra/intersection(_:)-73uhs)
- [func formIntersection(Self)](/documentation/swift/setalgebra/formintersection(_:))

###### SetAlgebra Implementations

- [func formIntersection(Self)](/documentation/swift/setalgebra/formintersection(_:)-9h7lm)
- [func symmetricDifference(Self) -> Self](/documentation/swift/setalgebra/symmetricdifference(_:))

###### SetAlgebra Implementations

- [func symmetricDifference(Self) -> Self](/documentation/swift/setalgebra/symmetricdifference(_:)-81pzi)
- [func formSymmetricDifference(Self)](/documentation/swift/setalgebra/formsymmetricdifference(_:))

###### SetAlgebra Implementations

- [func formSymmetricDifference(Self)](/documentation/swift/setalgebra/formsymmetricdifference(_:)-56m23)

###### Comparing Sets

- [func isStrictSubset(of: Self) -> Bool](/documentation/swift/setalgebra/isstrictsubset(of:))
- [func isStrictSuperset(of: Self) -> Bool](/documentation/swift/setalgebra/isstrictsuperset(of:))

###### Initializers

- [init<S>(S)](/documentation/swift/setalgebra/init(_:))

###### SetAlgebra Implementations

- [init<S>(S)](/documentation/swift/setalgebra/init(_:)-5ink1)

###### Instance Properties

- [var isEmpty: Bool](/documentation/swift/setalgebra/isempty)

###### SetAlgebra Implementations

- [var isEmpty: Bool](/documentation/swift/setalgebra/isempty-58spu)

###### Instance Methods

- [func isDisjoint(with: Self) -> Bool](/documentation/swift/setalgebra/isdisjoint(with:))

###### SetAlgebra Implementations

- [func isDisjoint(with: Self) -> Bool](/documentation/swift/setalgebra/isdisjoint(with:)-59c10)
- [func isSubset(of: Self) -> Bool](/documentation/swift/setalgebra/issubset(of:))

###### SetAlgebra Implementations

- [func isSubset(of: Self) -> Bool](/documentation/swift/setalgebra/issubset(of:)-5y3lj)
- [func isSuperset(of: Self) -> Bool](/documentation/swift/setalgebra/issuperset(of:))

###### SetAlgebra Implementations

- [func isSuperset(of: Self) -> Bool](/documentation/swift/setalgebra/issuperset(of:)-88ovx)
- [func subtract(Self)](/documentation/swift/setalgebra/subtract(_:))

###### SetAlgebra Implementations

- [func subtract(Self)](/documentation/swift/setalgebra/subtract(_:)-7l337)
- [func subtracting(Self) -> Self](/documentation/swift/setalgebra/subtracting(_:))

###### SetAlgebra Implementations

- [func subtracting(Self) -> Self](/documentation/swift/setalgebra/subtracting(_:)-648yh)

##### Lazy Collections

- [LazySequenceProtocol](/documentation/swift/lazysequenceprotocol)

###### Associated Types

- [Elements](/documentation/swift/lazysequenceprotocol/elements-swift.associatedtype)

###### Instance Properties

- [var elements: Self.Elements](/documentation/swift/lazysequenceprotocol/elements-6570c)

###### LazySequenceProtocol Implementations

- [var elements: Self](/documentation/swift/lazysequenceprotocol/elements-3xrx)
- [var lazy: Self.Elements](/documentation/swift/lazysequenceprotocol/lazy-2u2ey)
- [var lazy: LazySequence<Self.Elements>](/documentation/swift/lazysequenceprotocol/lazy-4q4ln)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazysequenceprotocol/compactmap(_:))
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazysequenceprotocol/drop(while:))
- [func filter((Self.Elements.Element) -> Bool) -> LazyFilterSequence<Self.Elements>](/documentation/swift/lazysequenceprotocol/filter(_:))
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazysequenceprotocol/flatmap(_:)-11y2e)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazysequenceprotocol/flatmap(_:)-9blrr)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazysequenceprotocol/joined())
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazysequenceprotocol/map(_:))
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazysequenceprotocol/prefix(while:))
- [LazyCollectionProtocol](/documentation/swift/lazycollectionprotocol)

###### Instance Properties

- [var lazy: Self.Elements](/documentation/swift/lazycollectionprotocol/lazy-7wmso)
- [var lazy: LazyCollection<Self.Elements>](/documentation/swift/lazycollectionprotocol/lazy-9k7qy)
- [Supporting Types](/documentation/swift/supporting-types)

##### Slices

- [Slice](/documentation/swift/slice)

###### Initializers

- [init(base: Base, bounds: Range<Base.Index>)](/documentation/swift/slice/init(base:bounds:))

###### Instance Properties

- [var base: Base](/documentation/swift/slice/base)

###### Instance Methods

- [func assumingMemoryBound<T>(to: T.Type) -> UnsafeMutableBufferPointer<T>](/documentation/swift/slice/assumingmemorybound(to:)-5fkwu)
- [func assumingMemoryBound<T>(to: T.Type) -> UnsafeBufferPointer<T>](/documentation/swift/slice/assumingmemorybound(to:)-7a4sa)
- [func bindMemory<T>(to: T.Type) -> UnsafeBufferPointer<T>](/documentation/swift/slice/bindmemory(to:)-4ombl)
- [func bindMemory<T>(to: T.Type) -> UnsafeMutableBufferPointer<T>](/documentation/swift/slice/bindmemory(to:)-92fs7)
- [func copyBytes<C>(from: C)](/documentation/swift/slice/copybytes(from:))
- [func deinitialize<Element>() -> UnsafeMutableRawBufferPointer](/documentation/swift/slice/deinitialize())
- [func deinitializeElement<Element>(at: UnsafeMutableBufferPointer<Element>.Index)](/documentation/swift/slice/deinitializeelement(at:))
- [func initialize<S>(from: S) -> (unwritten: S.Iterator, index: Slice<Base>.Index)](/documentation/swift/slice/initialize(from:))
- [func initialize<Element>(fromContentsOf: some Collection) -> Slice<Base>.Index](/documentation/swift/slice/initialize(fromcontentsof:))
- [func initialize<Element>(repeating: Element)](/documentation/swift/slice/initialize(repeating:))
- [func initializeElement<Element>(at: Int, to: Element)](/documentation/swift/slice/initializeelement(at:to:))
- [func initializeMemory<S>(as: S.Element.Type, from: S) -> (unwritten: S.Iterator, initialized: UnsafeMutableBufferPointer<S.Element>)](/documentation/swift/slice/initializememory(as:from:))
- [func initializeMemory<C>(as: C.Element.Type, fromContentsOf: C) -> UnsafeMutableBufferPointer<C.Element>](/documentation/swift/slice/initializememory(as:fromcontentsof:))
- [func initializeMemory<T>(as: T.Type, repeating: T) -> UnsafeMutableBufferPointer<T>](/documentation/swift/slice/initializememory(as:repeating:))
- [func insert(Base.Element, at: Slice<Base>.Index)](/documentation/swift/slice/insert(_:at:)-4n5zz)
- [func insert<S>(contentsOf: S, at: Slice<Base>.Index)](/documentation/swift/slice/insert(contentsof:at:)-3z6ts)
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/load(frombyteoffset:as:)-3vjps)
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/load(frombyteoffset:as:)-45bko)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/loadunaligned(frombyteoffset:as:)-6jvd4)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/loadunaligned(frombyteoffset:as:)-6u1jm)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/loadunaligned(frombyteoffset:as:)-7jjnt)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/slice/loadunaligned(frombyteoffset:as:)-9gtr0)
- [func moveElement<Element>(from: Slice<Base>.Index) -> Element](/documentation/swift/slice/moveelement(from:))
- [func moveInitialize<Element>(fromContentsOf: UnsafeMutableBufferPointer<Element>) -> Slice<Base>.Index](/documentation/swift/slice/moveinitialize(fromcontentsof:)-82ebd)
- [func moveInitialize<Element>(fromContentsOf: Slice<UnsafeMutableBufferPointer<Element>>) -> Slice<Base>.Index](/documentation/swift/slice/moveinitialize(fromcontentsof:)-iasq)
- [func moveInitializeMemory<T>(as: T.Type, fromContentsOf: UnsafeMutableBufferPointer<T>) -> UnsafeMutableBufferPointer<T>](/documentation/swift/slice/moveinitializememory(as:fromcontentsof:)-1jll)
- [func moveInitializeMemory<T>(as: T.Type, fromContentsOf: Slice<UnsafeMutableBufferPointer<T>>) -> UnsafeMutableBufferPointer<T>](/documentation/swift/slice/moveinitializememory(as:fromcontentsof:)-1uz4a)
- [func moveUpdate<Element>(fromContentsOf: UnsafeMutableBufferPointer<Element>) -> Slice<Base>.Index](/documentation/swift/slice/moveupdate(fromcontentsof:)-5i98g)
- [func moveUpdate<Element>(fromContentsOf: Slice<UnsafeMutableBufferPointer<Element>>) -> Slice<Base>.Index](/documentation/swift/slice/moveupdate(fromcontentsof:)-ou4d)
- [func remove(at: Slice<Base>.Index) -> Base.Element](/documentation/swift/slice/remove(at:)-pbti)
- [func removeSubrange(Range<Slice<Base>.Index>)](/documentation/swift/slice/removesubrange(_:)-8hbh1)
- [func replaceSubrange<C>(Range<Slice<Base>.Index>, with: C)](/documentation/swift/slice/replacesubrange(_:with:)-904p8)
- [func storeBytes<T>(of: T, toByteOffset: Int, as: T.Type)](/documentation/swift/slice/storebytes(of:tobyteoffset:as:))
- [func update<S>(from: S) -> (unwritten: S.Iterator, index: Slice<Base>.Index)](/documentation/swift/slice/update(from:))
- [func update<Element>(fromContentsOf: some Collection) -> Slice<Base>.Index](/documentation/swift/slice/update(fromcontentsof:))
- [func update<Element>(repeating: Element)](/documentation/swift/slice/update(repeating:))
- [func withContiguousMutableStorageIfAvailable<R, Element>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/slice/withcontiguousmutablestorageifavailable(_:)-2ader)
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/slice/withmemoryrebound(to:_:)-1nqta)
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeMutableBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/slice/withmemoryrebound(to:_:)-3oirt)
- [func withMemoryRebound<T, E, Result, Element>(to: T.Type, (UnsafeMutableBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/slice/withmemoryrebound(to:_:)-6kxii)
- [func withMemoryRebound<T, E, Result, Element>(to: T.Type, (UnsafeBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/slice/withmemoryrebound(to:_:)-ibp7)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/slice/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/slice/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/slice/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/slice/difference(from:by:))
- [func formIndex(before: inout Slice<Base>.Index)](/documentation/swift/slice/formindex(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/slice/formindex(before:)-d9pr)
- [func index(before: Slice<Base>.Index) -> Slice<Base>.Index](/documentation/swift/slice/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/slice/joined(separator:)-6sxlg)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/slice/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/slice/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/slice/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/slice/poplast()-7zlp7)
- [func removeLast() -> Self.Element](/documentation/swift/slice/removelast()-29ty4)
- [func removeLast(Int)](/documentation/swift/slice/removelast(_:)-4ijd6)
- [Collection Implementations](/documentation/swift/slice/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/slice/count)
- [var endIndex: Slice<Base>.Index](/documentation/swift/slice/endindex)
- [var first: Self.Element?](/documentation/swift/slice/first)
- [var indices: Slice<Base>.Indices](/documentation/swift/slice/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/slice/isempty)
- [var startIndex: Slice<Base>.Index](/documentation/swift/slice/startindex)
- [var underestimatedCount: Int](/documentation/swift/slice/underestimatedcount)

###### Instance Methods

- [func distance(from: Slice<Base>.Index, to: Slice<Base>.Index) -> Int](/documentation/swift/slice/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/slice/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/slice/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/slice/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/slice/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/slice/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/slice/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/slice/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Slice<Base>.Index)](/documentation/swift/slice/formindex(after:))
- [func index(Slice<Base>.Index, offsetBy: Int) -> Slice<Base>.Index](/documentation/swift/slice/index(_:offsetby:))
- [func index(Slice<Base>.Index, offsetBy: Int, limitedBy: Slice<Base>.Index) -> Slice<Base>.Index?](/documentation/swift/slice/index(_:offsetby:limitedby:))
- [func index(after: Slice<Base>.Index) -> Slice<Base>.Index](/documentation/swift/slice/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/slice/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/slice/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/slice/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/slice/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/slice/map(_:)-3jfli)
- [func popFirst() -> Self.Element?](/documentation/swift/slice/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/slice/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/slice/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/slice/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/slice/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/slice/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/slice/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/slice/removefirst()-2564w)
- [func removeFirst(Int)](/documentation/swift/slice/removefirst(_:)-3pkd7)
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/slice/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/slice/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/slice/split(separator:maxsplits:omittingemptysubsequences:)-5z4op)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/slice/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/slice/suffix(from:))

###### Subscripts

- [subscript(Slice<Base>.Index) -> Base.Element](/documentation/swift/slice/subscript(_:)-1rloy)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/slice/subscript(_:)-3p40a)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/slice/subscript(_:)-520wp)
- [subscript(Range<Slice<Base>.Index>) -> Slice<Base>](/documentation/swift/slice/subscript(_:)-5pgrv)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/slice/subscript(_:)-5rdkr)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/slice/subscript(_:)-7bg96)

###### Type Aliases

- [Slice.Index](/documentation/swift/slice/index)
- [Slice.Indices](/documentation/swift/slice/indices-swift.typealias)
- [Slice.Iterator](/documentation/swift/slice/iterator)
- [Slice.SubSequence](/documentation/swift/slice/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/slice/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/slice/elements-swift.property)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/slice/compactmap(_:)-188bn)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/slice/flatmap(_:)-1q7p9)
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/slice/flatmap(_:)-6ng42)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/slice/joined()-3bqi4)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/slice/map(_:)-87fp1)

###### Type Aliases

- [Slice.Elements](/documentation/swift/slice/elements)
- [MutableCollection Implementations](/documentation/swift/slice/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/slice/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/slice/partition(by:)-7efo8)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/slice/partition(by:)-7n9yj)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/slice/removesubranges(_:)-20t3r)
- [func reverse()](/documentation/swift/slice/reverse())
- [func shuffle()](/documentation/swift/slice/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/slice/shuffle(using:))
- [func sort()](/documentation/swift/slice/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/slice/sort(by:))
- [func swapAt(Self.Index, Self.Index)](/documentation/swift/slice/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Slice<Base>.Element>) throws -> R) rethrows -> R?](/documentation/swift/slice/withcontiguousmutablestorageifavailable(_:)-2ual)

###### Subscripts

- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/slice/subscript(_:)-2elba)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/slice/subscript(_:)-3p9dc)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/slice/subscript(_:)-4f8ky)
- [subscript(Range<Slice<Base>.Index>) -> Slice<Base>](/documentation/swift/slice/subscript(_:)-87kqd)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/slice/subscript(_:)-8pq5s)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/slice/subscript(_:)-uq47)
- [subscript(Slice<Base>.Index) -> Base.Element](/documentation/swift/slice/subscript(_:)-z7ny)
- [RangeReplaceableCollection Implementations](/documentation/swift/slice/rangereplaceablecollection-implementations)

###### Operators

- [static func + <Other>(Self, Other) -> Self](/documentation/swift/slice/+(_:_:)-298al)
- [static func + <Other>(Other, Self) -> Self](/documentation/swift/slice/+(_:_:)-4resp)
- [static func + <Other>(Self, Other) -> Self](/documentation/swift/slice/+(_:_:)-99wuu)
- [static func += <Other>(inout Self, Other)](/documentation/swift/slice/+=(_:_:))

###### Initializers

- [init()](/documentation/swift/slice/init())
- [init<S>(S)](/documentation/swift/slice/init(_:))
- [init<S>(S)](/documentation/swift/slice/init(_:)-81eoy)
- [init(repeating: Base.Element, count: Int)](/documentation/swift/slice/init(repeating:count:))
- [init(repeating: Self.Element, count: Int)](/documentation/swift/slice/init(repeating:count:)-6ps2q)

###### Instance Methods

- [func append(Self.Element)](/documentation/swift/slice/append(_:))
- [func append<S>(contentsOf: S)](/documentation/swift/slice/append(contentsof:))
- [func applying(CollectionDifference<Self.Element>) -> Self?](/documentation/swift/slice/applying(_:))
- [func insert(Base.Element, at: Slice<Base>.Index)](/documentation/swift/slice/insert(_:at:)-6sg0)
- [func insert(Self.Element, at: Self.Index)](/documentation/swift/slice/insert(_:at:)-8i1dc)
- [func insert<S>(contentsOf: S, at: Slice<Base>.Index)](/documentation/swift/slice/insert(contentsof:at:)-25pep)
- [func insert<C>(contentsOf: C, at: Self.Index)](/documentation/swift/slice/insert(contentsof:at:)-2xj4m)
- [func popLast() -> Self.Element?](/documentation/swift/slice/poplast()-30m9y)
- [func popLast() -> Self.Element?](/documentation/swift/slice/poplast()-4rely)
- [func remove(at: Slice<Base>.Index) -> Base.Element](/documentation/swift/slice/remove(at:)-7ep9e)
- [func remove(at: Self.Index) -> Self.Element](/documentation/swift/slice/remove(at:)-7xja6)
- [func removeAll(keepingCapacity: Bool)](/documentation/swift/slice/removeall(keepingcapacity:))
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/slice/removeall(where:)-26lr3)
- [func removeAll(where: (Self.Element) throws -> Bool) rethrows](/documentation/swift/slice/removeall(where:)-9u7g)
- [func removeFirst() -> Self.Element](/documentation/swift/slice/removefirst()-1iayr)
- [func removeFirst() -> Self.Element](/documentation/swift/slice/removefirst()-3eija)
- [func removeFirst(Int)](/documentation/swift/slice/removefirst(_:)-1pxgx)
- [func removeFirst(Int)](/documentation/swift/slice/removefirst(_:)-7hjja)
- [func removeLast() -> Self.Element](/documentation/swift/slice/removelast()-5mmgh)
- [func removeLast() -> Self.Element](/documentation/swift/slice/removelast()-wsbc)
- [func removeLast(Int)](/documentation/swift/slice/removelast(_:)-75mgx)
- [func removeLast(Int)](/documentation/swift/slice/removelast(_:)-fxm2)
- [func removeSubrange<R>(R)](/documentation/swift/slice/removesubrange(_:)-1y2qo)
- [func removeSubrange(Range<Slice<Base>.Index>)](/documentation/swift/slice/removesubrange(_:)-7s7x9)
- [func removeSubrange(Range<Self.Index>)](/documentation/swift/slice/removesubrange(_:)-8m66i)
- [func removeSubranges(RangeSet<Self.Index>)](/documentation/swift/slice/removesubranges(_:)-2ncra)
- [func replaceSubrange<C>(Range<Self.Index>, with: C)](/documentation/swift/slice/replacesubrange(_:with:)-8l6gb)
- [func replaceSubrange<C, R>(R, with: C)](/documentation/swift/slice/replacesubrange(_:with:)-9le44)
- [func replaceSubrange<C>(Range<Slice<Base>.Index>, with: C)](/documentation/swift/slice/replacesubrange(_:with:)-zwfk)
- [func reserveCapacity(Int)](/documentation/swift/slice/reservecapacity(_:))
- [Sequence Implementations](/documentation/swift/slice/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/slice/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/slice/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/slice/compactmap(_:)-33fyf)
- [func contains(Self.Element) -> Bool](/documentation/swift/slice/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/slice/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/slice/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/slice/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/slice/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/slice/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/slice/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/slice/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/slice/flatmap(_:)-41d2a)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/slice/flatmap(_:)-45het)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/slice/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/slice/joined()-2byi)
- [func joined(separator: String) -> String](/documentation/swift/slice/joined(separator:)-2rxv1)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/slice/joined(separator:)-3q8sb)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/slice/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/slice/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/slice/map(_:)-4i7qt)
- [func max() -> Self.Element?](/documentation/swift/slice/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/slice/max(by:))
- [func min() -> Self.Element?](/documentation/swift/slice/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/slice/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/slice/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/slice/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/slice/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/slice/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/slice/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/slice/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/slice/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/slice/split(separator:maxsplits:omittingemptysubsequences:)-533fk)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/slice/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/slice/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Slice<Base>.Element>) throws -> R) rethrows -> R?](/documentation/swift/slice/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/slice/withcontiguousstorageifavailable(_:)-76evi)

###### Type Aliases

- [Slice.Element](/documentation/swift/slice/element)

##### Range Expressions

- [PartialRangeUpTo](/documentation/swift/partialrangeupto)

###### Initializers

- [init(Bound)](/documentation/swift/partialrangeupto/init(_:))

###### Instance Properties

- [let upperBound: Bound](/documentation/swift/partialrangeupto/upperbound)

###### Default Implementations

- [Decodable Implementations](/documentation/swift/partialrangeupto/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/partialrangeupto/init(from:))
- [Encodable Implementations](/documentation/swift/partialrangeupto/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/partialrangeupto/encode(to:))
- [RangeExpression Implementations](/documentation/swift/partialrangeupto/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/partialrangeupto/~=(_:_:))

###### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/partialrangeupto/contains(_:))
- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/partialrangeupto/relative(to:))
- [PartialRangeThrough](/documentation/swift/partialrangethrough)

###### Initializers

- [init(Bound)](/documentation/swift/partialrangethrough/init(_:))

###### Instance Properties

- [let upperBound: Bound](/documentation/swift/partialrangethrough/upperbound)

###### Default Implementations

- [Decodable Implementations](/documentation/swift/partialrangethrough/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/partialrangethrough/init(from:))
- [Encodable Implementations](/documentation/swift/partialrangethrough/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/partialrangethrough/encode(to:))
- [RangeExpression Implementations](/documentation/swift/partialrangethrough/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/partialrangethrough/~=(_:_:))

###### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/partialrangethrough/contains(_:))
- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/partialrangethrough/relative(to:))
- [PartialRangeFrom](/documentation/swift/partialrangefrom)

###### Initializers

- [init(Bound)](/documentation/swift/partialrangefrom/init(_:))

###### Instance Properties

- [let lowerBound: Bound](/documentation/swift/partialrangefrom/lowerbound)

###### Default Implementations

- [Decodable Implementations](/documentation/swift/partialrangefrom/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/partialrangefrom/init(from:))
- [Encodable Implementations](/documentation/swift/partialrangefrom/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/partialrangefrom/encode(to:))
- [RangeExpression Implementations](/documentation/swift/partialrangefrom/rangeexpression-implementations)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/partialrangefrom/~=(_:_:))

###### Instance Methods

- [func contains(Bound) -> Bool](/documentation/swift/partialrangefrom/contains(_:))
- [func relative<C>(to: C) -> Range<Bound>](/documentation/swift/partialrangefrom/relative(to:))
- [Sequence Implementations](/documentation/swift/partialrangefrom/sequence-implementations)

###### Structures

- [PartialRangeFrom.Iterator](/documentation/swift/partialrangefrom/iterator)

###### Instance Methods

- [func next() -> Bound?](/documentation/swift/partialrangefrom/iterator/next())

###### Type Aliases

- [PartialRangeFrom.Iterator.Element](/documentation/swift/partialrangefrom/iterator/element)

###### Instance Methods

- [func makeIterator() -> PartialRangeFrom<Bound>.Iterator](/documentation/swift/partialrangefrom/makeiterator())

###### Type Aliases

- [PartialRangeFrom.Element](/documentation/swift/partialrangefrom/element)
- [RangeExpression](/documentation/swift/rangeexpression)

###### Operators

- [static func ~= (Self, Self.Bound) -> Bool](/documentation/swift/rangeexpression/~=(_:_:))

###### Associated Types

- [Bound](/documentation/swift/rangeexpression/bound)

###### Instance Methods

- [func contains(Self.Bound) -> Bool](/documentation/swift/rangeexpression/contains(_:))
- [func relative<C>(to: C) -> Range<Self.Bound>](/documentation/swift/rangeexpression/relative(to:))
- [UnboundedRange_](/documentation/swift/unboundedrange_)

###### Creating an Unbounded Range

- [static func ... (UnboundedRange_)](/documentation/swift/unboundedrange_/'...(_:))
- [UnboundedRange](/documentation/swift/unboundedrange)

##### Type-Erasing Wrappers

- [AnySequence](/documentation/swift/anysequence)

###### Initializers

- [init<I>(() -> I)](/documentation/swift/anysequence/init(_:)-25934)
- [init<S>(S)](/documentation/swift/anysequence/init(_:)-307a9)

###### Instance Methods

- [func drop(while: (Element) throws -> Bool) rethrows -> AnySequence<Element>](/documentation/swift/anysequence/drop(while:))
- [func dropFirst(Int) -> AnySequence<Element>](/documentation/swift/anysequence/dropfirst(_:))
- [func dropLast(Int) -> [Element]](/documentation/swift/anysequence/droplast(_:))
- [func filter((Element) throws -> Bool) rethrows -> [Element]](/documentation/swift/anysequence/filter(_:))
- [func forEach((Element) throws -> Void) rethrows](/documentation/swift/anysequence/foreach(_:))
- [func map<T, E>((Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anysequence/map(_:))
- [func prefix(Int) -> AnySequence<Element>](/documentation/swift/anysequence/prefix(_:))
- [func prefix(while: (Element) throws -> Bool) rethrows -> [Element]](/documentation/swift/anysequence/prefix(while:))
- [func suffix(Int) -> [Element]](/documentation/swift/anysequence/suffix(_:))

###### Default Implementations

- [Sequence Implementations](/documentation/swift/anysequence/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anysequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/anysequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anysequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anysequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/anysequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anysequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anysequence/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anysequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anysequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anysequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anysequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anysequence/flatmap(_:)-25w04)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anysequence/flatmap(_:)-4zu3o)
- [func joined() -> FlattenSequence<Self>](/documentation/swift/anysequence/joined())
- [func joined(separator: String) -> String](/documentation/swift/anysequence/joined(separator:)-8fii9)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/anysequence/joined(separator:)-le98)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anysequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anysequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> AnySequence<Element>.Iterator](/documentation/swift/anysequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anysequence/map(_:)-4h64b)
- [func max() -> Self.Element?](/documentation/swift/anysequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anysequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/anysequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anysequence/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anysequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anysequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/anysequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/anysequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anysequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/anysequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anysequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/anysequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/anysequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/anysequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anysequence/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anysequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [AnySequence.Iterator](/documentation/swift/anysequence/iterator)
- [AnyCollection](/documentation/swift/anycollection)

###### Initializers

- [init(AnyCollection<Element>)](/documentation/swift/anycollection/init(_:)-1jdmb)
- [init<C>(C)](/documentation/swift/anycollection/init(_:)-33dcu)
- [init(AnyBidirectionalCollection<Element>)](/documentation/swift/anycollection/init(_:)-598x3)
- [init<C>(C)](/documentation/swift/anycollection/init(_:)-8k2a5)
- [init(AnyRandomAccessCollection<Element>)](/documentation/swift/anycollection/init(_:)-91xl3)
- [init<C>(C)](/documentation/swift/anycollection/init(_:)-9mgej)

###### Instance Methods

- [func drop(while: (Element) throws -> Bool) rethrows -> AnyCollection<Element>](/documentation/swift/anycollection/drop(while:))
- [func dropFirst(Int) -> AnyCollection<Element>](/documentation/swift/anycollection/dropfirst(_:))
- [func dropLast(Int) -> AnyCollection<Element>](/documentation/swift/anycollection/droplast(_:))
- [func filter((Element) throws -> Bool) rethrows -> [Element]](/documentation/swift/anycollection/filter(_:))
- [func forEach((Element) throws -> Void) rethrows](/documentation/swift/anycollection/foreach(_:))
- [func formIndex(inout AnyCollection<Element>.Index, offsetBy: Int)](/documentation/swift/anycollection/formindex(_:offsetby:))
- [func formIndex(inout AnyCollection<Element>.Index, offsetBy: Int, limitedBy: AnyCollection<Element>.Index) -> Bool](/documentation/swift/anycollection/formindex(_:offsetby:limitedby:))
- [func map<T, E>((Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anycollection/map(_:))
- [func prefix(Int) -> AnyCollection<Element>](/documentation/swift/anycollection/prefix(_:))
- [func prefix(while: (Element) throws -> Bool) rethrows -> AnyCollection<Element>](/documentation/swift/anycollection/prefix(while:))
- [func suffix(Int) -> AnyCollection<Element>](/documentation/swift/anycollection/suffix(_:))

###### Default Implementations

- [Collection Implementations](/documentation/swift/anycollection/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/anycollection/count)
- [var endIndex: AnyCollection<Element>.Index](/documentation/swift/anycollection/endindex)
- [var first: Self.Element?](/documentation/swift/anycollection/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/anycollection/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/anycollection/isempty)
- [var startIndex: AnyCollection<Element>.Index](/documentation/swift/anycollection/startindex)

###### Instance Methods

- [func distance(from: AnyCollection<Element>.Index, to: AnyCollection<Element>.Index) -> Int](/documentation/swift/anycollection/distance(from:to:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/anycollection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anycollection/firstindex(where:))
- [func formIndex(after: inout AnyCollection<Element>.Index)](/documentation/swift/anycollection/formindex(after:))
- [func index(AnyCollection<Element>.Index, offsetBy: Int) -> AnyCollection<Element>.Index](/documentation/swift/anycollection/index(_:offsetby:))
- [func index(AnyCollection<Element>.Index, offsetBy: Int, limitedBy: AnyCollection<Element>.Index) -> AnyCollection<Element>.Index?](/documentation/swift/anycollection/index(_:offsetby:limitedby:))
- [func index(after: AnyCollection<Element>.Index) -> AnyCollection<Element>.Index](/documentation/swift/anycollection/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/anycollection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/anycollection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/anycollection/indices(where:))
- [func makeIterator() -> AnyCollection<Element>.Iterator](/documentation/swift/anycollection/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anycollection/map(_:)-2u3hq)
- [func popFirst() -> Self.Element?](/documentation/swift/anycollection/popfirst())
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/anycollection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/anycollection/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/anycollection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/anycollection/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/anycollection/removefirst())
- [func removeFirst(Int)](/documentation/swift/anycollection/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anycollection/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/anycollection/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/anycollection/split(separator:maxsplits:omittingemptysubsequences:)-52osm)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/anycollection/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anycollection/subscript(_:)-47haf)
- [subscript(AnyCollection<Element>.Index) -> Element](/documentation/swift/anycollection/subscript(_:)-87z1l)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/anycollection/subscript(_:)-9guhy)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/anycollection/subscript(_:)-t0ed)
- [subscript(Range<AnyCollection<Element>.Index>) -> AnyCollection<Element>.SubSequence](/documentation/swift/anycollection/subscript(_:)-vb3o)

###### Type Aliases

- [AnyCollection.Index](/documentation/swift/anycollection/index)
- [AnyCollection.Indices](/documentation/swift/anycollection/indices)
- [AnyCollection.Iterator](/documentation/swift/anycollection/iterator)
- [AnyCollection.SubSequence](/documentation/swift/anycollection/subsequence)
- [Sequence Implementations](/documentation/swift/anycollection/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anycollection/lazy)
- [var underestimatedCount: Int](/documentation/swift/anycollection/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anycollection/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anycollection/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/anycollection/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anycollection/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anycollection/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anycollection/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anycollection/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anycollection/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anycollection/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anycollection/flatmap(_:)-5r882)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anycollection/flatmap(_:)-856yf)
- [func joined() -> FlattenSequence<Self>](/documentation/swift/anycollection/joined())
- [func joined(separator: String) -> String](/documentation/swift/anycollection/joined(separator:)-3o2fu)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/anycollection/joined(separator:)-476fl)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anycollection/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anycollection/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anycollection/map(_:)-5mbc5)
- [func max() -> Self.Element?](/documentation/swift/anycollection/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anycollection/max(by:))
- [func min() -> Self.Element?](/documentation/swift/anycollection/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anycollection/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anycollection/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anycollection/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/anycollection/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/anycollection/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anycollection/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/anycollection/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anycollection/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/anycollection/split(separator:maxsplits:omittingemptysubsequences:)-20tfq)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/anycollection/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anycollection/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anycollection/withcontiguousstorageifavailable(_:))
- [AnyBidirectionalCollection](/documentation/swift/anybidirectionalcollection)

###### Initializers

- [init?(AnyCollection<Element>)](/documentation/swift/anybidirectionalcollection/init(_:)-1hwm5)
- [init<C>(C)](/documentation/swift/anybidirectionalcollection/init(_:)-2kvez)
- [init(AnyRandomAccessCollection<Element>)](/documentation/swift/anybidirectionalcollection/init(_:)-4hewp)
- [init<C>(C)](/documentation/swift/anybidirectionalcollection/init(_:)-5lybd)
- [init(AnyBidirectionalCollection<Element>)](/documentation/swift/anybidirectionalcollection/init(_:)-61joz)

###### Instance Methods

- [func drop(while: (Element) throws -> Bool) rethrows -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/drop(while:))
- [func dropFirst(Int) -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/dropfirst(_:))
- [func dropLast(Int) -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/droplast(_:))
- [func filter((Element) throws -> Bool) rethrows -> [Element]](/documentation/swift/anybidirectionalcollection/filter(_:))
- [func forEach((Element) throws -> Void) rethrows](/documentation/swift/anybidirectionalcollection/foreach(_:))
- [func formIndex(inout AnyBidirectionalCollection<Element>.Index, offsetBy: Int)](/documentation/swift/anybidirectionalcollection/formindex(_:offsetby:))
- [func formIndex(inout AnyBidirectionalCollection<Element>.Index, offsetBy: Int, limitedBy: AnyBidirectionalCollection<Element>.Index) -> Bool](/documentation/swift/anybidirectionalcollection/formindex(_:offsetby:limitedby:))
- [func map<T, E>((Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anybidirectionalcollection/map(_:))
- [func prefix(Int) -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/prefix(_:))
- [func prefix(while: (Element) throws -> Bool) rethrows -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/prefix(while:))
- [func suffix(Int) -> AnyBidirectionalCollection<Element>](/documentation/swift/anybidirectionalcollection/suffix(_:))

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/anybidirectionalcollection/bidirectionalcollection-implementations)

###### Instance Properties

- [var endIndex: AnyBidirectionalCollection<Element>.Index](/documentation/swift/anybidirectionalcollection/endindex)
- [var last: Self.Element?](/documentation/swift/anybidirectionalcollection/last)
- [var startIndex: AnyBidirectionalCollection<Element>.Index](/documentation/swift/anybidirectionalcollection/startindex)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/anybidirectionalcollection/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/anybidirectionalcollection/difference(from:by:))
- [func distance(from: AnyBidirectionalCollection<Element>.Index, to: AnyBidirectionalCollection<Element>.Index) -> Int](/documentation/swift/anybidirectionalcollection/distance(from:to:))
- [func formIndex(after: inout AnyBidirectionalCollection<Element>.Index)](/documentation/swift/anybidirectionalcollection/formindex(after:))
- [func formIndex(before: inout AnyBidirectionalCollection<Element>.Index)](/documentation/swift/anybidirectionalcollection/formindex(before:))
- [func index(AnyBidirectionalCollection<Element>.Index, offsetBy: Int) -> AnyBidirectionalCollection<Element>.Index](/documentation/swift/anybidirectionalcollection/index(_:offsetby:))
- [func index(AnyBidirectionalCollection<Element>.Index, offsetBy: Int, limitedBy: AnyBidirectionalCollection<Element>.Index) -> AnyBidirectionalCollection<Element>.Index?](/documentation/swift/anybidirectionalcollection/index(_:offsetby:limitedby:))
- [func index(after: AnyBidirectionalCollection<Element>.Index) -> AnyBidirectionalCollection<Element>.Index](/documentation/swift/anybidirectionalcollection/index(after:))
- [func index(before: AnyBidirectionalCollection<Element>.Index) -> AnyBidirectionalCollection<Element>.Index](/documentation/swift/anybidirectionalcollection/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/anybidirectionalcollection/joined(separator:)-6ag5z)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anybidirectionalcollection/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/anybidirectionalcollection/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anybidirectionalcollection/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/anybidirectionalcollection/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/anybidirectionalcollection/removelast())
- [func removeLast(Int)](/documentation/swift/anybidirectionalcollection/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/anybidirectionalcollection/reversed())

###### Subscripts

- [subscript(AnyBidirectionalCollection<Element>.Index) -> Element](/documentation/swift/anybidirectionalcollection/subscript(_:)-95c1r)
- [subscript(Range<AnyBidirectionalCollection<Element>.Index>) -> AnyBidirectionalCollection<Element>.SubSequence](/documentation/swift/anybidirectionalcollection/subscript(_:)-9b37e)
- [Collection Implementations](/documentation/swift/anybidirectionalcollection/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/anybidirectionalcollection/count)
- [var first: Self.Element?](/documentation/swift/anybidirectionalcollection/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/anybidirectionalcollection/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/anybidirectionalcollection/isempty)

###### Instance Methods

- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/anybidirectionalcollection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anybidirectionalcollection/firstindex(where:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/anybidirectionalcollection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/anybidirectionalcollection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/anybidirectionalcollection/indices(where:))
- [func makeIterator() -> AnyBidirectionalCollection<Element>.Iterator](/documentation/swift/anybidirectionalcollection/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anybidirectionalcollection/map(_:)-4xfvs)
- [func popFirst() -> Self.Element?](/documentation/swift/anybidirectionalcollection/popfirst())
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/anybidirectionalcollection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/anybidirectionalcollection/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/anybidirectionalcollection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/anybidirectionalcollection/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/anybidirectionalcollection/removefirst())
- [func removeFirst(Int)](/documentation/swift/anybidirectionalcollection/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anybidirectionalcollection/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/anybidirectionalcollection/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/anybidirectionalcollection/split(separator:maxsplits:omittingemptysubsequences:)-5dxmc)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/anybidirectionalcollection/suffix(from:))

###### Subscripts

- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/anybidirectionalcollection/subscript(_:)-34ify)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/anybidirectionalcollection/subscript(_:)-8f134)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anybidirectionalcollection/subscript(_:)-93ijp)

###### Type Aliases

- [AnyBidirectionalCollection.Index](/documentation/swift/anybidirectionalcollection/index)
- [AnyBidirectionalCollection.Indices](/documentation/swift/anybidirectionalcollection/indices)
- [AnyBidirectionalCollection.Iterator](/documentation/swift/anybidirectionalcollection/iterator)
- [AnyBidirectionalCollection.SubSequence](/documentation/swift/anybidirectionalcollection/subsequence)
- [Sequence Implementations](/documentation/swift/anybidirectionalcollection/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anybidirectionalcollection/lazy)
- [var underestimatedCount: Int](/documentation/swift/anybidirectionalcollection/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anybidirectionalcollection/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anybidirectionalcollection/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/anybidirectionalcollection/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anybidirectionalcollection/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anybidirectionalcollection/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anybidirectionalcollection/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anybidirectionalcollection/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anybidirectionalcollection/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anybidirectionalcollection/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anybidirectionalcollection/flatmap(_:)-400so)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anybidirectionalcollection/flatmap(_:)-78q3j)
- [func joined() -> FlattenSequence<Self>](/documentation/swift/anybidirectionalcollection/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/anybidirectionalcollection/joined(separator:)-75msx)
- [func joined(separator: String) -> String](/documentation/swift/anybidirectionalcollection/joined(separator:)-8i1yu)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anybidirectionalcollection/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anybidirectionalcollection/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anybidirectionalcollection/map(_:)-769c3)
- [func max() -> Self.Element?](/documentation/swift/anybidirectionalcollection/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anybidirectionalcollection/max(by:))
- [func min() -> Self.Element?](/documentation/swift/anybidirectionalcollection/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anybidirectionalcollection/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anybidirectionalcollection/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anybidirectionalcollection/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/anybidirectionalcollection/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anybidirectionalcollection/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/anybidirectionalcollection/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anybidirectionalcollection/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/anybidirectionalcollection/split(separator:maxsplits:omittingemptysubsequences:)-4y1gu)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/anybidirectionalcollection/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anybidirectionalcollection/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anybidirectionalcollection/withcontiguousstorageifavailable(_:))
- [AnyRandomAccessCollection](/documentation/swift/anyrandomaccesscollection)

###### Initializers

- [init<C>(C)](/documentation/swift/anyrandomaccesscollection/init(_:)-1qlza)
- [init?(AnyBidirectionalCollection<Element>)](/documentation/swift/anyrandomaccesscollection/init(_:)-2j41k)
- [init(AnyRandomAccessCollection<Element>)](/documentation/swift/anyrandomaccesscollection/init(_:)-60sab)
- [init?(AnyCollection<Element>)](/documentation/swift/anyrandomaccesscollection/init(_:)-66pkb)

###### Instance Methods

- [func drop(while: (Element) throws -> Bool) rethrows -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/drop(while:))
- [func dropFirst(Int) -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/dropfirst(_:))
- [func dropLast(Int) -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/droplast(_:))
- [func filter((Element) throws -> Bool) rethrows -> [Element]](/documentation/swift/anyrandomaccesscollection/filter(_:))
- [func forEach((Element) throws -> Void) rethrows](/documentation/swift/anyrandomaccesscollection/foreach(_:))
- [func formIndex(inout AnyRandomAccessCollection<Element>.Index, offsetBy: Int)](/documentation/swift/anyrandomaccesscollection/formindex(_:offsetby:))
- [func formIndex(inout AnyRandomAccessCollection<Element>.Index, offsetBy: Int, limitedBy: AnyRandomAccessCollection<Element>.Index) -> Bool](/documentation/swift/anyrandomaccesscollection/formindex(_:offsetby:limitedby:))
- [func map<T, E>((Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyrandomaccesscollection/map(_:))
- [func prefix(Int) -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/prefix(_:))
- [func prefix(while: (Element) throws -> Bool) rethrows -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/prefix(while:))
- [func suffix(Int) -> AnyRandomAccessCollection<Element>](/documentation/swift/anyrandomaccesscollection/suffix(_:))

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/anyrandomaccesscollection/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/anyrandomaccesscollection/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/anyrandomaccesscollection/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/anyrandomaccesscollection/difference(from:by:))
- [func joined(separator: String) -> String](/documentation/swift/anyrandomaccesscollection/joined(separator:)-9vrqj)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyrandomaccesscollection/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/anyrandomaccesscollection/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anyrandomaccesscollection/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/anyrandomaccesscollection/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/anyrandomaccesscollection/removelast())
- [func removeLast(Int)](/documentation/swift/anyrandomaccesscollection/removelast(_:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/anyrandomaccesscollection/reversed())
- [Collection Implementations](/documentation/swift/anyrandomaccesscollection/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/anyrandomaccesscollection/count)
- [var first: Self.Element?](/documentation/swift/anyrandomaccesscollection/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/anyrandomaccesscollection/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/anyrandomaccesscollection/isempty)

###### Instance Methods

- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/anyrandomaccesscollection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/anyrandomaccesscollection/firstindex(where:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/anyrandomaccesscollection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/anyrandomaccesscollection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/anyrandomaccesscollection/indices(where:))
- [func makeIterator() -> AnyRandomAccessCollection<Element>.Iterator](/documentation/swift/anyrandomaccesscollection/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyrandomaccesscollection/map(_:)-1emdw)
- [func popFirst() -> Self.Element?](/documentation/swift/anyrandomaccesscollection/popfirst())
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/anyrandomaccesscollection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/anyrandomaccesscollection/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/anyrandomaccesscollection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/anyrandomaccesscollection/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/anyrandomaccesscollection/removefirst())
- [func removeFirst(Int)](/documentation/swift/anyrandomaccesscollection/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anyrandomaccesscollection/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/anyrandomaccesscollection/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/anyrandomaccesscollection/split(separator:maxsplits:omittingemptysubsequences:)-2m0ih)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/anyrandomaccesscollection/suffix(from:))

###### Subscripts

- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/anyrandomaccesscollection/subscript(_:)-1ezt3)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/anyrandomaccesscollection/subscript(_:)-9umyp)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/anyrandomaccesscollection/subscript(_:)-ui2k)

###### Type Aliases

- [AnyRandomAccessCollection.Index](/documentation/swift/anyrandomaccesscollection/index)
- [AnyRandomAccessCollection.Indices](/documentation/swift/anyrandomaccesscollection/indices)
- [AnyRandomAccessCollection.Iterator](/documentation/swift/anyrandomaccesscollection/iterator)
- [AnyRandomAccessCollection.SubSequence](/documentation/swift/anyrandomaccesscollection/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/anyrandomaccesscollection/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: AnyRandomAccessCollection<Element>.Index](/documentation/swift/anyrandomaccesscollection/endindex)
- [var startIndex: AnyRandomAccessCollection<Element>.Index](/documentation/swift/anyrandomaccesscollection/startindex)

###### Instance Methods

- [func distance(from: AnyRandomAccessCollection<Element>.Index, to: AnyRandomAccessCollection<Element>.Index) -> Int](/documentation/swift/anyrandomaccesscollection/distance(from:to:))
- [func formIndex(after: inout AnyRandomAccessCollection<Element>.Index)](/documentation/swift/anyrandomaccesscollection/formindex(after:))
- [func formIndex(before: inout AnyRandomAccessCollection<Element>.Index)](/documentation/swift/anyrandomaccesscollection/formindex(before:))
- [func index(AnyRandomAccessCollection<Element>.Index, offsetBy: Int) -> AnyRandomAccessCollection<Element>.Index](/documentation/swift/anyrandomaccesscollection/index(_:offsetby:))
- [func index(AnyRandomAccessCollection<Element>.Index, offsetBy: Int, limitedBy: AnyRandomAccessCollection<Element>.Index) -> AnyRandomAccessCollection<Element>.Index?](/documentation/swift/anyrandomaccesscollection/index(_:offsetby:limitedby:))
- [func index(after: AnyRandomAccessCollection<Element>.Index) -> AnyRandomAccessCollection<Element>.Index](/documentation/swift/anyrandomaccesscollection/index(after:))
- [func index(before: AnyRandomAccessCollection<Element>.Index) -> AnyRandomAccessCollection<Element>.Index](/documentation/swift/anyrandomaccesscollection/index(before:))

###### Subscripts

- [subscript(AnyRandomAccessCollection<Element>.Index) -> Element](/documentation/swift/anyrandomaccesscollection/subscript(_:)-37hui)
- [subscript(Range<AnyRandomAccessCollection<Element>.Index>) -> AnyRandomAccessCollection<Element>.SubSequence](/documentation/swift/anyrandomaccesscollection/subscript(_:)-6jydx)
- [Sequence Implementations](/documentation/swift/anyrandomaccesscollection/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anyrandomaccesscollection/lazy)
- [var underestimatedCount: Int](/documentation/swift/anyrandomaccesscollection/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyrandomaccesscollection/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyrandomaccesscollection/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/anyrandomaccesscollection/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyrandomaccesscollection/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anyrandomaccesscollection/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anyrandomaccesscollection/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyrandomaccesscollection/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anyrandomaccesscollection/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyrandomaccesscollection/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anyrandomaccesscollection/flatmap(_:)-2c332)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyrandomaccesscollection/flatmap(_:)-755qx)
- [func joined() -> FlattenSequence<Self>](/documentation/swift/anyrandomaccesscollection/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/anyrandomaccesscollection/joined(separator:)-81k3e)
- [func joined(separator: String) -> String](/documentation/swift/anyrandomaccesscollection/joined(separator:)-8fdgx)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anyrandomaccesscollection/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyrandomaccesscollection/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyrandomaccesscollection/map(_:)-425cg)
- [func max() -> Self.Element?](/documentation/swift/anyrandomaccesscollection/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyrandomaccesscollection/max(by:))
- [func min() -> Self.Element?](/documentation/swift/anyrandomaccesscollection/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyrandomaccesscollection/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anyrandomaccesscollection/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anyrandomaccesscollection/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/anyrandomaccesscollection/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anyrandomaccesscollection/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/anyrandomaccesscollection/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyrandomaccesscollection/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/anyrandomaccesscollection/split(separator:maxsplits:omittingemptysubsequences:)-84bnf)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/anyrandomaccesscollection/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyrandomaccesscollection/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anyrandomaccesscollection/withcontiguousstorageifavailable(_:))
- [AnyIterator](/documentation/swift/anyiterator)

###### Initializers

- [init<I>(I)](/documentation/swift/anyiterator/init(_:)-3m1u6)
- [init(() -> Element?)](/documentation/swift/anyiterator/init(_:)-5l6js)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/anyiterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/anyiterator/next())
- [Sequence Implementations](/documentation/swift/anyiterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/anyiterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/anyiterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyiterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyiterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/anyiterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyiterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/anyiterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/anyiterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/anyiterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/anyiterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anyiterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyiterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/anyiterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyiterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyiterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/anyiterator/flatmap(_:)-6q8cl)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/anyiterator/flatmap(_:)-77jpd)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/anyiterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/anyiterator/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/anyiterator/joined(separator:)-1cqmc)
- [func joined(separator: String) -> String](/documentation/swift/anyiterator/joined(separator:)-4wxky)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/anyiterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyiterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/anyiterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/anyiterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/anyiterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyiterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/anyiterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/anyiterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/anyiterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyiterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/anyiterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/anyiterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/anyiterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/anyiterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/anyiterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/anyiterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/anyiterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/anyiterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/anyiterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/anyiterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/anyiterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/anyiterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/anyiterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [AnyIterator.Iterator](/documentation/swift/anyiterator/iterator)
- [AnyIndex](/documentation/swift/anyindex)

###### Initializers

- [init<BaseIndex>(BaseIndex)](/documentation/swift/anyindex/init(_:))

###### Default Implementations

- [Comparable Implementations](/documentation/swift/anyindex/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/anyindex/'...(_:)-53asy)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/anyindex/'...(_:)-69ts0)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/anyindex/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/anyindex/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/anyindex/'.._(_:_:))
- [static func < (AnyIndex, AnyIndex) -> Bool](/documentation/swift/anyindex/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/anyindex/_(_:_:)-2ln36)
- [static func >= (Self, Self) -> Bool](/documentation/swift/anyindex/_=(_:_:)-76rr2)
- [static func <= (Self, Self) -> Bool](/documentation/swift/anyindex/_=(_:_:)-8jql0)
- [Equatable Implementations](/documentation/swift/anyindex/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/anyindex/!=(_:_:))
- [static func == (AnyIndex, AnyIndex) -> Bool](/documentation/swift/anyindex/==(_:_:))
- [AnyHashable](/documentation/swift/anyhashable)

###### Initializers

- [init<H>(H)](/documentation/swift/anyhashable/init(_:))

###### Instance Properties

- [var base: Any](/documentation/swift/anyhashable/base)

###### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/anyhashable/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/anyhashable/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/anyhashable/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/anyhashable/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/anyhashable/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/anyhashable/description)
- [Equatable Implementations](/documentation/swift/anyhashable/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/anyhashable/!=(_:_:))
- [static func == (AnyHashable, AnyHashable) -> Bool](/documentation/swift/anyhashable/==(_:_:))
- [Hashable Implementations](/documentation/swift/anyhashable/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/anyhashable/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/anyhashable/hash(into:))

##### Lazy Wrappers

- [LazySequence](/documentation/swift/lazysequence)

###### Instance Methods

- [func mapAnnotations<Feature, Input, Output>((Input) -> Output) -> LazyMapSequence<Base, AnnotatedFeature<Feature, Output>>](/documentation/swift/lazysequence/mapannotations(_:))
- [func mapFeatures<Input, Output, Annotation>((Input) -> Output) -> LazyMapSequence<Base, AnnotatedFeature<Output, Annotation>>](/documentation/swift/lazysequence/mapfeatures(_:))

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/lazysequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/lazysequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/lazysequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/lazysequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazysequence/distance(from:to:)-5ong5)
- [func formIndex(before: inout Self.Index)](/documentation/swift/lazysequence/formindex(before:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazysequence/index(_:offsetby:)-9c2fj)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazysequence/index(_:offsetby:limitedby:)-9juzm)
- [func index(before: LazySequence<Base>.Index) -> LazySequence<Base>.Index](/documentation/swift/lazysequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/lazysequence/joined(separator:)-5e92i)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazysequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazysequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazysequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/lazysequence/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/lazysequence/count)
- [var count: Int](/documentation/swift/lazysequence/count-1cggd)
- [var endIndex: LazySequence<Base>.Index](/documentation/swift/lazysequence/endindex)
- [var indices: LazySequence<Base>.Indices](/documentation/swift/lazysequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/lazysequence/isempty)
- [var isEmpty: Bool](/documentation/swift/lazysequence/isempty-1upms)
- [var startIndex: LazySequence<Base>.Index](/documentation/swift/lazysequence/startindex)

###### Instance Methods

- [func distance(from: LazySequence<Base>.Index, to: LazySequence<Base>.Index) -> Int](/documentation/swift/lazysequence/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazysequence/distance(from:to:)-396sb)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazysequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazysequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/lazysequence/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/lazysequence/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/lazysequence/formindex(after:))
- [func index(LazySequence<Base>.Index, offsetBy: Int) -> LazySequence<Base>.Index](/documentation/swift/lazysequence/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazysequence/index(_:offsetby:)-t8sl)
- [func index(LazySequence<Base>.Index, offsetBy: Int, limitedBy: LazySequence<Base>.Index) -> LazySequence<Base>.Index?](/documentation/swift/lazysequence/index(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazysequence/index(_:offsetby:limitedby:)-62vws)
- [func index(after: LazySequence<Base>.Index) -> LazySequence<Base>.Index](/documentation/swift/lazysequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/lazysequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/lazysequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/lazysequence/indices(where:))
- [func makeIterator() -> LazySequence<Base>.Iterator](/documentation/swift/lazysequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazysequence/map(_:)-7wx5z)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/lazysequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/lazysequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/lazysequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/lazysequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazysequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/lazysequence/split(separator:maxsplits:omittingemptysubsequences:)-ki1c)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/lazysequence/suffix(from:))

###### Subscripts

- [subscript(LazySequence<Base>.Index) -> LazySequence<Base>.Element](/documentation/swift/lazysequence/subscript(_:))
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazysequence/subscript(_:)-1iwxl)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/lazysequence/subscript(_:)-1rlj)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/lazysequence/subscript(_:)-8iflg)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/lazysequence/subscript(_:)-9kt1v)

###### Type Aliases

- [LazySequence.Index](/documentation/swift/lazysequence/index)
- [LazySequence.Indices](/documentation/swift/lazysequence/indices-swift.typealias)
- [LazySequence.Iterator](/documentation/swift/lazysequence/iterator)
- [LazySequence.SubSequence](/documentation/swift/lazysequence/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/lazysequence/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: LazySequence<Base>.Elements](/documentation/swift/lazysequence/elements-swift.property)
- [var lazy: LazySequence<Self.Elements>](/documentation/swift/lazysequence/lazy)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazysequence/compactmap(_:)-73i9g)
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazysequence/drop(while:))
- [func filter((Self.Elements.Element) -> Bool) -> LazyFilterSequence<Self.Elements>](/documentation/swift/lazysequence/filter(_:))
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazysequence/flatmap(_:)-102bh)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazysequence/flatmap(_:)-7fl2l)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazysequence/joined()-2zoe4)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazysequence/map(_:)-5eh3s)
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazysequence/prefix(while:))

###### Type Aliases

- [LazySequence.Elements](/documentation/swift/lazysequence/elements-swift.typealias)
- [RandomAccessCollection Implementations](/documentation/swift/lazysequence/randomaccesscollection-implementations)

###### Instance Methods

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazysequence/index(_:offsetby:limitedby:)-617va)
- [Sequence Implementations](/documentation/swift/lazysequence/sequence-implementations)

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazysequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazysequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazysequence/compactmap(_:)-420ej)
- [func contains(Self.Element) -> Bool](/documentation/swift/lazysequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazysequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazysequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazysequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazysequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazysequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazysequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazysequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazysequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazysequence/flatmap(_:)-6y096)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazysequence/flatmap(_:)-8fefz)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazysequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazysequence/joined()-2ibvq)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazysequence/joined(separator:)-26r7k)
- [func joined(separator: String) -> String](/documentation/swift/lazysequence/joined(separator:)-7b5x0)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazysequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazysequence/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazysequence/map(_:)-31x8w)
- [func max() -> Self.Element?](/documentation/swift/lazysequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazysequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazysequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazysequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazysequence/prefix(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazysequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazysequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazysequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazysequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazysequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazysequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazysequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazysequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazysequence/split(separator:maxsplits:omittingemptysubsequences:)-3ls1g)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazysequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazysequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazysequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazysequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [LazySequence.Element](/documentation/swift/lazysequence/element)
- [LazyMapSequence](/documentation/swift/lazymapsequence)

###### Instance Methods

- [func map<ElementOfResult>((Element) -> ElementOfResult) -> LazyMapSequence<Base, ElementOfResult>](/documentation/swift/lazymapsequence/map(_:)-2qa3r)
- [func map<ElementOfResult>((Element) -> ElementOfResult) -> LazyMapCollection<Base, ElementOfResult>](/documentation/swift/lazymapsequence/map(_:)-50gkd)

###### Type Aliases

- [LazyMapSequence.Elements](/documentation/swift/lazymapsequence/elements)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/lazymapsequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/lazymapsequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/lazymapsequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/lazymapsequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazymapsequence/distance(from:to:)-3cd1e)
- [func formIndex(before: inout LazyMapSequence<Base, Element>.Index)](/documentation/swift/lazymapsequence/formindex(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/lazymapsequence/formindex(before:)-8rmvx)
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazymapsequence/index(_:offsetby:)-ldgv)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazymapsequence/index(_:offsetby:limitedby:)-niw7)
- [func index(before: LazyMapSequence<Base, Element>.Index) -> LazyMapSequence<Base, Element>.Index](/documentation/swift/lazymapsequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/lazymapsequence/joined(separator:)-4i6uz)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazymapsequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazymapsequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/lazymapsequence/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/lazymapsequence/count)
- [var count: Int](/documentation/swift/lazymapsequence/count-5qqod)
- [var endIndex: Base.Index](/documentation/swift/lazymapsequence/endindex)
- [var indices: LazyMapSequence<Base, Element>.Indices](/documentation/swift/lazymapsequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/lazymapsequence/isempty)
- [var isEmpty: Bool](/documentation/swift/lazymapsequence/isempty-75pes)
- [var startIndex: Base.Index](/documentation/swift/lazymapsequence/startindex)

###### Instance Methods

- [func distance(from: LazyMapSequence<Base, Element>.Index, to: LazyMapSequence<Base, Element>.Index) -> Int](/documentation/swift/lazymapsequence/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazymapsequence/distance(from:to:)-3i820)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazymapsequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazymapsequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/lazymapsequence/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/lazymapsequence/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout LazyMapSequence<Base, Element>.Index)](/documentation/swift/lazymapsequence/formindex(after:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/lazymapsequence/formindex(after:)-6932e)
- [func index(LazyMapSequence<Base, Element>.Index, offsetBy: Int) -> LazyMapSequence<Base, Element>.Index](/documentation/swift/lazymapsequence/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazymapsequence/index(_:offsetby:)-78pdz)
- [func index(LazyMapSequence<Base, Element>.Index, offsetBy: Int, limitedBy: LazyMapSequence<Base, Element>.Index) -> LazyMapSequence<Base, Element>.Index?](/documentation/swift/lazymapsequence/index(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazymapsequence/index(_:offsetby:limitedby:)-5uiel)
- [func index(after: LazyMapSequence<Base, Element>.Index) -> LazyMapSequence<Base, Element>.Index](/documentation/swift/lazymapsequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/lazymapsequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/lazymapsequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/lazymapsequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazymapsequence/map(_:)-8qb3x)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/lazymapsequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/lazymapsequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/lazymapsequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/lazymapsequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazymapsequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/lazymapsequence/split(separator:maxsplits:omittingemptysubsequences:)-5eafc)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/lazymapsequence/suffix(from:))

###### Subscripts

- [subscript(Base.Index) -> Element](/documentation/swift/lazymapsequence/subscript(_:)-36b2w)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/lazymapsequence/subscript(_:)-3hxz5)
- [subscript(Range<Base.Index>) -> LazyMapSequence<Base, Element>.SubSequence](/documentation/swift/lazymapsequence/subscript(_:)-4qmx0)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazymapsequence/subscript(_:)-4tv8v)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/lazymapsequence/subscript(_:)-88114)

###### Type Aliases

- [LazyMapSequence.Index](/documentation/swift/lazymapsequence/index)
- [LazyMapSequence.Indices](/documentation/swift/lazymapsequence/indices-swift.typealias)
- [LazyMapSequence.SubSequence](/documentation/swift/lazymapsequence/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/lazymapsequence/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/lazymapsequence/elements-swift.property)
- [var lazy: Self.Elements](/documentation/swift/lazymapsequence/lazy)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazymapsequence/compactmap(_:)-9pvcf)
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazymapsequence/drop(while:))
- [func filter((Self.Elements.Element) -> Bool) -> LazyFilterSequence<Self.Elements>](/documentation/swift/lazymapsequence/filter(_:))
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazymapsequence/flatmap(_:)-94qg)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazymapsequence/flatmap(_:)-q9wd)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazymapsequence/joined()-3sfyr)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazymapsequence/map(_:)-8mwhr)
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazymapsequence/prefix(while:))
- [RandomAccessCollection Implementations](/documentation/swift/lazymapsequence/randomaccesscollection-implementations)

###### Instance Methods

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazymapsequence/index(_:offsetby:limitedby:)-x8kk)
- [Sequence Implementations](/documentation/swift/lazymapsequence/sequence-implementations)

###### Structures

- [LazyMapSequence.Iterator](/documentation/swift/lazymapsequence/iterator)

###### Instance Properties

- [var base: Base.Iterator](/documentation/swift/lazymapsequence/iterator/base)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/lazymapsequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/lazymapsequence/iterator/next())
- [Sequence Implementations](/documentation/swift/lazymapsequence/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/lazymapsequence/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/lazymapsequence/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazymapsequence/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/lazymapsequence/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazymapsequence/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/lazymapsequence/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazymapsequence/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazymapsequence/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazymapsequence/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/iterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazymapsequence/iterator/flatmap(_:)-1shiq)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazymapsequence/iterator/flatmap(_:)-esus)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazymapsequence/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazymapsequence/iterator/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazymapsequence/iterator/joined(separator:)-1kop)
- [func joined(separator: String) -> String](/documentation/swift/lazymapsequence/iterator/joined(separator:)-9ijwh)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazymapsequence/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/lazymapsequence/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazymapsequence/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/lazymapsequence/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazymapsequence/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazymapsequence/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazymapsequence/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazymapsequence/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazymapsequence/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazymapsequence/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazymapsequence/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazymapsequence/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazymapsequence/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [LazyMapSequence.Iterator.Iterator](/documentation/swift/lazymapsequence/iterator/iterator)

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazymapsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazymapsequence/compactmap(_:)-8vlm9)
- [func contains(Self.Element) -> Bool](/documentation/swift/lazymapsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazymapsequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazymapsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazymapsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazymapsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazymapsequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazymapsequence/flatmap(_:)-1kjs0)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazymapsequence/flatmap(_:)-3aw12)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazymapsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazymapsequence/joined()-28y7l)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazymapsequence/joined(separator:)-vht5)
- [func joined(separator: String) -> String](/documentation/swift/lazymapsequence/joined(separator:)-vz9k)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazymapsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> LazyMapSequence<Base, Element>.Iterator](/documentation/swift/lazymapsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazymapsequence/map(_:)-950gi)
- [func max() -> Self.Element?](/documentation/swift/lazymapsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazymapsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazymapsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazymapsequence/prefix(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazymapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazymapsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazymapsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazymapsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazymapsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazymapsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazymapsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazymapsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazymapsequence/split(separator:maxsplits:omittingemptysubsequences:)-9indh)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazymapsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazymapsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazymapsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazymapsequence/withcontiguousstorageifavailable(_:))
- [LazyFilterSequence](/documentation/swift/lazyfiltersequence)

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazyfiltersequence/underestimatedcount)

###### Instance Methods

- [func filter((LazyFilterSequence<Base>.Element) -> Bool) -> LazyFilterSequence<Base>](/documentation/swift/lazyfiltersequence/filter(_:))
- [func formIndex(inout LazyFilterSequence<Base>.Index, offsetBy: Int)](/documentation/swift/lazyfiltersequence/formindex(_:offsetby:))
- [func formIndex(inout LazyFilterSequence<Base>.Index, offsetBy: Int, limitedBy: LazyFilterSequence<Base>.Index) -> Bool](/documentation/swift/lazyfiltersequence/formindex(_:offsetby:limitedby:))

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/lazyfiltersequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/lazyfiltersequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/lazyfiltersequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/lazyfiltersequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazyfiltersequence/distance(from:to:)-3qiyk)
- [func formIndex(before: inout LazyFilterSequence<Base>.Index)](/documentation/swift/lazyfiltersequence/formindex(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/lazyfiltersequence/formindex(before:)-8yoxx)
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazyfiltersequence/index(_:offsetby:)-urni)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazyfiltersequence/index(_:offsetby:limitedby:)-7x3uh)
- [func index(before: LazyFilterSequence<Base>.Index) -> LazyFilterSequence<Base>.Index](/documentation/swift/lazyfiltersequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/lazyfiltersequence/joined(separator:)-1k8f6)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazyfiltersequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazyfiltersequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/lazyfiltersequence/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/lazyfiltersequence/count)
- [var endIndex: LazyFilterSequence<Base>.Index](/documentation/swift/lazyfiltersequence/endindex)
- [var indices: DefaultIndices<Self>](/documentation/swift/lazyfiltersequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/lazyfiltersequence/isempty)
- [var startIndex: LazyFilterSequence<Base>.Index](/documentation/swift/lazyfiltersequence/startindex)

###### Instance Methods

- [func distance(from: LazyFilterSequence<Base>.Index, to: LazyFilterSequence<Base>.Index) -> Int](/documentation/swift/lazyfiltersequence/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazyfiltersequence/distance(from:to:)-64w60)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazyfiltersequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazyfiltersequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/lazyfiltersequence/formindex(_:offsetby:)-4fulw)
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/lazyfiltersequence/formindex(_:offsetby:limitedby:)-94oyz)
- [func formIndex(after: inout LazyFilterSequence<Base>.Index)](/documentation/swift/lazyfiltersequence/formindex(after:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/lazyfiltersequence/formindex(after:)-8eya1)
- [func index(LazyFilterSequence<Base>.Index, offsetBy: Int) -> LazyFilterSequence<Base>.Index](/documentation/swift/lazyfiltersequence/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazyfiltersequence/index(_:offsetby:)-ghrd)
- [func index(LazyFilterSequence<Base>.Index, offsetBy: Int, limitedBy: LazyFilterSequence<Base>.Index) -> LazyFilterSequence<Base>.Index?](/documentation/swift/lazyfiltersequence/index(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazyfiltersequence/index(_:offsetby:limitedby:)-6rs60)
- [func index(after: LazyFilterSequence<Base>.Index) -> LazyFilterSequence<Base>.Index](/documentation/swift/lazyfiltersequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/lazyfiltersequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/lazyfiltersequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/lazyfiltersequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyfiltersequence/map(_:)-8n620)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/lazyfiltersequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/lazyfiltersequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/lazyfiltersequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/lazyfiltersequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazyfiltersequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/lazyfiltersequence/split(separator:maxsplits:omittingemptysubsequences:)-f04l)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/lazyfiltersequence/suffix(from:))

###### Subscripts

- [subscript(Range<LazyFilterSequence<Base>.Index>) -> LazyFilterSequence<Base>.SubSequence](/documentation/swift/lazyfiltersequence/subscript(_:)-4caas)
- [subscript(LazyFilterSequence<Base>.Index) -> LazyFilterSequence<Base>.Element](/documentation/swift/lazyfiltersequence/subscript(_:)-4syjt)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazyfiltersequence/subscript(_:)-6uzbx)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/lazyfiltersequence/subscript(_:)-7ge85)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/lazyfiltersequence/subscript(_:)-lelz)

###### Type Aliases

- [LazyFilterSequence.Index](/documentation/swift/lazyfiltersequence/index)
- [LazyFilterSequence.Indices](/documentation/swift/lazyfiltersequence/indices)
- [LazyFilterSequence.SubSequence](/documentation/swift/lazyfiltersequence/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/lazyfiltersequence/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/lazyfiltersequence/elements-swift.property)
- [var lazy: Self.Elements](/documentation/swift/lazyfiltersequence/lazy)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazyfiltersequence/compactmap(_:)-72vhr)
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazyfiltersequence/drop(while:))
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazyfiltersequence/flatmap(_:)-5g3dt)
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazyfiltersequence/flatmap(_:)-5pe4l)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazyfiltersequence/joined()-2q2lq)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazyfiltersequence/map(_:)-9kh6q)
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazyfiltersequence/prefix(while:))

###### Type Aliases

- [LazyFilterSequence.Elements](/documentation/swift/lazyfiltersequence/elements)
- [Sequence Implementations](/documentation/swift/lazyfiltersequence/sequence-implementations)

###### Structures

- [LazyFilterSequence.Iterator](/documentation/swift/lazyfiltersequence/iterator)

###### Instance Properties

- [var base: Base.Iterator](/documentation/swift/lazyfiltersequence/iterator/base)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/lazyfiltersequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> LazyFilterSequence<Base>.Iterator.Element?](/documentation/swift/lazyfiltersequence/iterator/next())

###### Type Aliases

- [LazyFilterSequence.Iterator.Element](/documentation/swift/lazyfiltersequence/iterator/element)
- [Sequence Implementations](/documentation/swift/lazyfiltersequence/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/lazyfiltersequence/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/lazyfiltersequence/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyfiltersequence/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/lazyfiltersequence/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazyfiltersequence/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyfiltersequence/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/iterator/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyfiltersequence/iterator/flatmap(_:)-3dw8i)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazyfiltersequence/iterator/flatmap(_:)-68zvx)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazyfiltersequence/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/joined())
- [func joined(separator: String) -> String](/documentation/swift/lazyfiltersequence/iterator/joined(separator:)-1jr9q)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/joined(separator:)-4f0oy)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyfiltersequence/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/lazyfiltersequence/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyfiltersequence/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/lazyfiltersequence/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazyfiltersequence/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazyfiltersequence/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazyfiltersequence/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazyfiltersequence/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazyfiltersequence/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazyfiltersequence/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazyfiltersequence/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazyfiltersequence/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazyfiltersequence/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [LazyFilterSequence.Iterator.Iterator](/documentation/swift/lazyfiltersequence/iterator/iterator)

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazyfiltersequence/underestimatedcount-1cznw)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyfiltersequence/compactmap(_:)-9rnux)
- [func contains(Self.Element) -> Bool](/documentation/swift/lazyfiltersequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazyfiltersequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazyfiltersequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazyfiltersequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyfiltersequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazyfiltersequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyfiltersequence/flatmap(_:)-890fi)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazyfiltersequence/flatmap(_:)-8kd85)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazyfiltersequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazyfiltersequence/joined()-1secb)
- [func joined(separator: String) -> String](/documentation/swift/lazyfiltersequence/joined(separator:)-7hl5i)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazyfiltersequence/joined(separator:)-8964t)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyfiltersequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> LazyFilterSequence<Base>.Iterator](/documentation/swift/lazyfiltersequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyfiltersequence/map(_:)-7bv79)
- [func max() -> Self.Element?](/documentation/swift/lazyfiltersequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazyfiltersequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyfiltersequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazyfiltersequence/prefix(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazyfiltersequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazyfiltersequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazyfiltersequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazyfiltersequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazyfiltersequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazyfiltersequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyfiltersequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazyfiltersequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazyfiltersequence/split(separator:maxsplits:omittingemptysubsequences:)-4wnc3)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazyfiltersequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyfiltersequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazyfiltersequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazyfiltersequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [LazyFilterSequence.Element](/documentation/swift/lazyfiltersequence/element)
- [LazyPrefixWhileSequence](/documentation/swift/lazyprefixwhilesequence)

###### Type Aliases

- [LazyPrefixWhileSequence.Element](/documentation/swift/lazyprefixwhilesequence/element)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/lazyprefixwhilesequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/lazyprefixwhilesequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/lazyprefixwhilesequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/lazyprefixwhilesequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazyprefixwhilesequence/distance(from:to:)-4ezr7)
- [func formIndex(before: inout Self.Index)](/documentation/swift/lazyprefixwhilesequence/formindex(before:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazyprefixwhilesequence/index(_:offsetby:)-44ez2)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/index(_:offsetby:limitedby:)-3wev9)
- [func index(before: LazyPrefixWhileSequence<Base>.Index) -> LazyPrefixWhileSequence<Base>.Index](/documentation/swift/lazyprefixwhilesequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/lazyprefixwhilesequence/joined(separator:)-9atxk)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/lazyprefixwhilesequence/collection-implementations)

###### Structures

- [LazyPrefixWhileSequence.Index](/documentation/swift/lazyprefixwhilesequence/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/lazyprefixwhilesequence/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/lazyprefixwhilesequence/index/'...(_:)-8ba8y)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/lazyprefixwhilesequence/index/'...(_:)-9mz14)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/lazyprefixwhilesequence/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/lazyprefixwhilesequence/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/lazyprefixwhilesequence/index/'.._(_:_:))
- [static func < (LazyPrefixWhileCollection<Base>.Index, LazyPrefixWhileCollection<Base>.Index) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/_(_:_:)-9hg6k)
- [static func <= (Self, Self) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/_=(_:_:)-5m6n5)
- [static func >= (Self, Self) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/_=(_:_:)-7wk7h)
- [Equatable Implementations](/documentation/swift/lazyprefixwhilesequence/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/!=(_:_:))
- [static func == (LazyPrefixWhileCollection<Base>.Index, LazyPrefixWhileCollection<Base>.Index) -> Bool](/documentation/swift/lazyprefixwhilesequence/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/lazyprefixwhilesequence/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/lazyprefixwhilesequence/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/lazyprefixwhilesequence/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/lazyprefixwhilesequence/count)
- [var endIndex: LazyPrefixWhileSequence<Base>.Index](/documentation/swift/lazyprefixwhilesequence/endindex)
- [var indices: DefaultIndices<Self>](/documentation/swift/lazyprefixwhilesequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/lazyprefixwhilesequence/isempty)
- [var startIndex: LazyPrefixWhileSequence<Base>.Index](/documentation/swift/lazyprefixwhilesequence/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazyprefixwhilesequence/distance(from:to:)-5ytzv)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/lazyprefixwhilesequence/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/lazyprefixwhilesequence/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/lazyprefixwhilesequence/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazyprefixwhilesequence/index(_:offsetby:)-2y8r8)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/index(_:offsetby:limitedby:)-279cj)
- [func index(after: LazyPrefixWhileSequence<Base>.Index) -> LazyPrefixWhileSequence<Base>.Index](/documentation/swift/lazyprefixwhilesequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/lazyprefixwhilesequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/lazyprefixwhilesequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/lazyprefixwhilesequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyprefixwhilesequence/map(_:)-69szl)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/lazyprefixwhilesequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/lazyprefixwhilesequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazyprefixwhilesequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/lazyprefixwhilesequence/split(separator:maxsplits:omittingemptysubsequences:)-1na6p)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/lazyprefixwhilesequence/suffix(from:))

###### Subscripts

- [subscript(LazyPrefixWhileSequence<Base>.Index) -> LazyPrefixWhileSequence<Base>.Element](/documentation/swift/lazyprefixwhilesequence/subscript(_:))
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/lazyprefixwhilesequence/subscript(_:)-1oo1v)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/lazyprefixwhilesequence/subscript(_:)-59k49)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazyprefixwhilesequence/subscript(_:)-75yeo)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/lazyprefixwhilesequence/subscript(_:)-9tkrc)

###### Type Aliases

- [LazyPrefixWhileSequence.Indices](/documentation/swift/lazyprefixwhilesequence/indices)
- [LazyPrefixWhileSequence.SubSequence](/documentation/swift/lazyprefixwhilesequence/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/lazyprefixwhilesequence/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/lazyprefixwhilesequence/elements-swift.property)
- [var lazy: Self.Elements](/documentation/swift/lazyprefixwhilesequence/lazy)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazyprefixwhilesequence/compactmap(_:)-2xgdq)
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazyprefixwhilesequence/drop(while:))
- [func filter((Self.Elements.Element) -> Bool) -> LazyFilterSequence<Self.Elements>](/documentation/swift/lazyprefixwhilesequence/filter(_:))
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazyprefixwhilesequence/flatmap(_:)-8pzjy)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazyprefixwhilesequence/flatmap(_:)-907vo)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazyprefixwhilesequence/joined()-h5vc)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazyprefixwhilesequence/map(_:)-24l6d)
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazyprefixwhilesequence/prefix(while:))

###### Type Aliases

- [LazyPrefixWhileSequence.Elements](/documentation/swift/lazyprefixwhilesequence/elements)
- [Sequence Implementations](/documentation/swift/lazyprefixwhilesequence/sequence-implementations)

###### Structures

- [LazyPrefixWhileSequence.Iterator](/documentation/swift/lazyprefixwhilesequence/iterator)

###### Type Aliases

- [LazyPrefixWhileSequence.Iterator.Element](/documentation/swift/lazyprefixwhilesequence/iterator/element)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/lazyprefixwhilesequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> LazyPrefixWhileSequence<Base>.Iterator.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/next())
- [Sequence Implementations](/documentation/swift/lazyprefixwhilesequence/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/lazyprefixwhilesequence/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyprefixwhilesequence/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazyprefixwhilesequence/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyprefixwhilesequence/iterator/flatmap(_:)-5fubp)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/flatmap(_:)-7mh64)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazyprefixwhilesequence/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/joined(separator:)-1x0ue)
- [func joined(separator: String) -> String](/documentation/swift/lazyprefixwhilesequence/iterator/joined(separator:)-2obj0)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/lazyprefixwhilesequence/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyprefixwhilesequence/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazyprefixwhilesequence/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazyprefixwhilesequence/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazyprefixwhilesequence/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazyprefixwhilesequence/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazyprefixwhilesequence/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazyprefixwhilesequence/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [LazyPrefixWhileSequence.Iterator.Iterator](/documentation/swift/lazyprefixwhilesequence/iterator/iterator)

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazyprefixwhilesequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyprefixwhilesequence/compactmap(_:)-29nfp)
- [func contains(Self.Element) -> Bool](/documentation/swift/lazyprefixwhilesequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazyprefixwhilesequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazyprefixwhilesequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyprefixwhilesequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazyprefixwhilesequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazyprefixwhilesequence/flatmap(_:)-62fa)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazyprefixwhilesequence/flatmap(_:)-9fckz)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazyprefixwhilesequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazyprefixwhilesequence/joined()-1ob4c)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazyprefixwhilesequence/joined(separator:)-1n2gn)
- [func joined(separator: String) -> String](/documentation/swift/lazyprefixwhilesequence/joined(separator:)-26tel)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazyprefixwhilesequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> LazyPrefixWhileSequence<Base>.Iterator](/documentation/swift/lazyprefixwhilesequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazyprefixwhilesequence/map(_:)-4uxrw)
- [func max() -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazyprefixwhilesequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazyprefixwhilesequence/prefix(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazyprefixwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazyprefixwhilesequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazyprefixwhilesequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazyprefixwhilesequence/split(separator:maxsplits:omittingemptysubsequences:)-rqw4)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazyprefixwhilesequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazyprefixwhilesequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazyprefixwhilesequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazyprefixwhilesequence/withcontiguousstorageifavailable(_:))
- [LazyDropWhileSequence](/documentation/swift/lazydropwhilesequence)

###### Type Aliases

- [LazyDropWhileSequence.Element](/documentation/swift/lazydropwhilesequence/element)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/lazydropwhilesequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/lazydropwhilesequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/lazydropwhilesequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/lazydropwhilesequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazydropwhilesequence/distance(from:to:)-5dj4t)
- [func formIndex(before: inout Self.Index)](/documentation/swift/lazydropwhilesequence/formindex(before:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazydropwhilesequence/index(_:offsetby:)-7kg8e)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazydropwhilesequence/index(_:offsetby:limitedby:)-269cw)
- [func index(before: LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Index](/documentation/swift/lazydropwhilesequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/lazydropwhilesequence/joined(separator:)-5cgwz)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazydropwhilesequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazydropwhilesequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazydropwhilesequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/lazydropwhilesequence/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/lazydropwhilesequence/count)
- [var endIndex: LazyDropWhileSequence<Base>.Index](/documentation/swift/lazydropwhilesequence/endindex)
- [var indices: DefaultIndices<Self>](/documentation/swift/lazydropwhilesequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/lazydropwhilesequence/isempty)
- [var startIndex: LazyDropWhileSequence<Base>.Index](/documentation/swift/lazydropwhilesequence/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/lazydropwhilesequence/distance(from:to:)-9uku)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/lazydropwhilesequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/lazydropwhilesequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/lazydropwhilesequence/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/lazydropwhilesequence/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/lazydropwhilesequence/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/lazydropwhilesequence/index(_:offsetby:)-17asz)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/lazydropwhilesequence/index(_:offsetby:limitedby:)-k9zq)
- [func index(after: LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Index](/documentation/swift/lazydropwhilesequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/lazydropwhilesequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/lazydropwhilesequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/lazydropwhilesequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazydropwhilesequence/map(_:)-7ovhy)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/lazydropwhilesequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/lazydropwhilesequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/lazydropwhilesequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/lazydropwhilesequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazydropwhilesequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/lazydropwhilesequence/split(separator:maxsplits:omittingemptysubsequences:)-16h0n)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/lazydropwhilesequence/suffix(from:))

###### Subscripts

- [subscript(LazyDropWhileSequence<Base>.Index) -> LazyDropWhileSequence<Base>.Element](/documentation/swift/lazydropwhilesequence/subscript(_:))
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/lazydropwhilesequence/subscript(_:)-5atki)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/lazydropwhilesequence/subscript(_:)-7qiik)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/lazydropwhilesequence/subscript(_:)-8ifgj)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/lazydropwhilesequence/subscript(_:)-jkb6)

###### Type Aliases

- [LazyDropWhileSequence.Index](/documentation/swift/lazydropwhilesequence/index)
- [LazyDropWhileSequence.Indices](/documentation/swift/lazydropwhilesequence/indices)
- [LazyDropWhileSequence.SubSequence](/documentation/swift/lazydropwhilesequence/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/lazydropwhilesequence/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/lazydropwhilesequence/elements-swift.property)
- [var lazy: Self.Elements](/documentation/swift/lazydropwhilesequence/lazy)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazydropwhilesequence/compactmap(_:)-9ksui)
- [func drop(while: (Self.Elements.Element) -> Bool) -> LazyDropWhileSequence<Self.Elements>](/documentation/swift/lazydropwhilesequence/drop(while:))
- [func filter((Self.Elements.Element) -> Bool) -> LazyFilterSequence<Self.Elements>](/documentation/swift/lazydropwhilesequence/filter(_:))
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/lazydropwhilesequence/flatmap(_:)-6szox)
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/lazydropwhilesequence/flatmap(_:)-726ic)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/lazydropwhilesequence/joined()-3lx90)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/lazydropwhilesequence/map(_:)-3n26j)
- [func prefix(while: (Self.Elements.Element) -> Bool) -> LazyPrefixWhileSequence<Self.Elements>](/documentation/swift/lazydropwhilesequence/prefix(while:))

###### Type Aliases

- [LazyDropWhileSequence.Elements](/documentation/swift/lazydropwhilesequence/elements)
- [Sequence Implementations](/documentation/swift/lazydropwhilesequence/sequence-implementations)

###### Structures

- [LazyDropWhileSequence.Iterator](/documentation/swift/lazydropwhilesequence/iterator)

###### Type Aliases

- [LazyDropWhileSequence.Iterator.Element](/documentation/swift/lazydropwhilesequence/iterator/element)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/lazydropwhilesequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> LazyDropWhileSequence<Base>.Iterator.Element?](/documentation/swift/lazydropwhilesequence/iterator/next())

###### Instance Properties

- [var underestimatedCount: Int](/documentation/swift/lazydropwhilesequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazydropwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazydropwhilesequence/compactmap(_:)-8mdnk)
- [func contains(Self.Element) -> Bool](/documentation/swift/lazydropwhilesequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazydropwhilesequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/lazydropwhilesequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/lazydropwhilesequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/lazydropwhilesequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazydropwhilesequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazydropwhilesequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/lazydropwhilesequence/enumerated())
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazydropwhilesequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/lazydropwhilesequence/flatmap(_:)-7fw6e)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/lazydropwhilesequence/flatmap(_:)-9tejp)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/lazydropwhilesequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/lazydropwhilesequence/joined()-1h38v)
- [func joined(separator: String) -> String](/documentation/swift/lazydropwhilesequence/joined(separator:)-8ylyk)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/lazydropwhilesequence/joined(separator:)-9jt9s)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/lazydropwhilesequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazydropwhilesequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> LazyDropWhileSequence<Base>.Iterator](/documentation/swift/lazydropwhilesequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/lazydropwhilesequence/map(_:)-1hd0u)
- [func max() -> Self.Element?](/documentation/swift/lazydropwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazydropwhilesequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/lazydropwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/lazydropwhilesequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/lazydropwhilesequence/prefix(_:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/lazydropwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/lazydropwhilesequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/lazydropwhilesequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/lazydropwhilesequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/lazydropwhilesequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/lazydropwhilesequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/lazydropwhilesequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/lazydropwhilesequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/lazydropwhilesequence/split(separator:maxsplits:omittingemptysubsequences:)-259d7)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/lazydropwhilesequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/lazydropwhilesequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/lazydropwhilesequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/lazydropwhilesequence/withcontiguousstorageifavailable(_:))
- [LazyCollection](/documentation/swift/lazycollection)
- [LazyDropWhileCollection](/documentation/swift/lazydropwhilecollection)
- [LazyFilterCollection](/documentation/swift/lazyfiltercollection)
- [LazyMapCollection](/documentation/swift/lazymapcollection)
- [LazyPrefixWhileCollection](/documentation/swift/lazyprefixwhilecollection)

##### Wrappers for Algorithms

- [CollectionDifference](/documentation/swift/collectiondifference)

###### Initializers

- [init?<Changes>(Changes)](/documentation/swift/collectiondifference/init(_:))

###### Instance Properties

- [let insertions: [CollectionDifference<ChangeElement>.Change]](/documentation/swift/collectiondifference/insertions)
- [let removals: [CollectionDifference<ChangeElement>.Change]](/documentation/swift/collectiondifference/removals)

###### Instance Methods

- [func formIndex(inout CollectionDifference<ChangeElement>.Index, offsetBy: Int)](/documentation/swift/collectiondifference/formindex(_:offsetby:))
- [func index(before: CollectionDifference<ChangeElement>.Index) -> CollectionDifference<ChangeElement>.Index](/documentation/swift/collectiondifference/index(before:))
- [func inferringMoves() -> CollectionDifference<ChangeElement>](/documentation/swift/collectiondifference/inferringmoves())
- [func inverse() -> CollectionDifference<ChangeElement>](/documentation/swift/collectiondifference/inverse())

###### Enumerations

- [CollectionDifference.Change](/documentation/swift/collectiondifference/change)

###### Enumeration Cases

- [case insert(offset: Int, element: ChangeElement, associatedWith: Int?)](/documentation/swift/collectiondifference/change/insert(offset:element:associatedwith:))
- [case remove(offset: Int, element: ChangeElement, associatedWith: Int?)](/documentation/swift/collectiondifference/change/remove(offset:element:associatedwith:))

###### Default Implementations

- [Decodable Implementations](/documentation/swift/collectiondifference/change/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/collectiondifference/change/init(from:))
- [Encodable Implementations](/documentation/swift/collectiondifference/change/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/collectiondifference/change/encode(to:))
- [Equatable Implementations](/documentation/swift/collectiondifference/change/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/collectiondifference/change/!=(_:_:))
- [static func == (CollectionDifference<ChangeElement>.Change, CollectionDifference<ChangeElement>.Change) -> Bool](/documentation/swift/collectiondifference/change/==(_:_:))
- [Hashable Implementations](/documentation/swift/collectiondifference/change/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/collectiondifference/change/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/collectiondifference/change/hash(into:))

###### Default Implementations

- [Collection Implementations](/documentation/swift/collectiondifference/collection-implementations)

###### Structures

- [CollectionDifference.Index](/documentation/swift/collectiondifference/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/collectiondifference/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/collectiondifference/index/'...(_:)-26k07)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/collectiondifference/index/'...(_:)-53ydx)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/collectiondifference/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/collectiondifference/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/collectiondifference/index/'.._(_:_:))
- [static func < (CollectionDifference<ChangeElement>.Index, CollectionDifference<ChangeElement>.Index) -> Bool](/documentation/swift/collectiondifference/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/collectiondifference/index/_(_:_:)-3fyv7)
- [static func >= (Self, Self) -> Bool](/documentation/swift/collectiondifference/index/_=(_:_:)-3zh7l)
- [static func <= (Self, Self) -> Bool](/documentation/swift/collectiondifference/index/_=(_:_:)-9z65w)
- [Equatable Implementations](/documentation/swift/collectiondifference/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/collectiondifference/index/!=(_:_:))
- [static func == (CollectionDifference<ChangeElement>.Index, CollectionDifference<ChangeElement>.Index) -> Bool](/documentation/swift/collectiondifference/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/collectiondifference/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/collectiondifference/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/collectiondifference/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/collectiondifference/count)
- [var endIndex: CollectionDifference<ChangeElement>.Index](/documentation/swift/collectiondifference/endindex)
- [var first: Self.Element?](/documentation/swift/collectiondifference/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/collectiondifference/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/collectiondifference/isempty)
- [var startIndex: CollectionDifference<ChangeElement>.Index](/documentation/swift/collectiondifference/startindex)
- [var underestimatedCount: Int](/documentation/swift/collectiondifference/underestimatedcount)

###### Instance Methods

- [func distance(from: CollectionDifference<ChangeElement>.Index, to: CollectionDifference<ChangeElement>.Index) -> Int](/documentation/swift/collectiondifference/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/collectiondifference/distance(from:to:)-945d8)
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collectiondifference/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/collectiondifference/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/collectiondifference/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/collectiondifference/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/collectiondifference/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/collectiondifference/formindex(_:offsetby:)-21k4b)
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/collectiondifference/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/collectiondifference/formindex(after:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/collectiondifference/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/collectiondifference/index(_:offsetby:limitedby:))
- [func index(after: CollectionDifference<ChangeElement>.Index) -> CollectionDifference<ChangeElement>.Index](/documentation/swift/collectiondifference/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/collectiondifference/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/collectiondifference/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/collectiondifference/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/collectiondifference/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/collectiondifference/map(_:)-zouk)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/collectiondifference/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/collectiondifference/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/collectiondifference/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/collectiondifference/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/collectiondifference/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/collectiondifference/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/collectiondifference/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/collectiondifference/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/collectiondifference/split(separator:maxsplits:omittingemptysubsequences:)-1dhc)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/collectiondifference/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/collectiondifference/suffix(from:))

###### Subscripts

- [subscript(CollectionDifference<ChangeElement>.Index) -> CollectionDifference<ChangeElement>.Element](/documentation/swift/collectiondifference/subscript(_:))
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/collectiondifference/subscript(_:)-22qdy)

###### Type Aliases

- [CollectionDifference.Indices](/documentation/swift/collectiondifference/indices)
- [CollectionDifference.Iterator](/documentation/swift/collectiondifference/iterator)
- [CollectionDifference.SubSequence](/documentation/swift/collectiondifference/subsequence)
- [Decodable Implementations](/documentation/swift/collectiondifference/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/collectiondifference/init(from:))
- [Encodable Implementations](/documentation/swift/collectiondifference/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/collectiondifference/encode(to:))
- [Equatable Implementations](/documentation/swift/collectiondifference/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/collectiondifference/!=(_:_:))
- [static func == (CollectionDifference<ChangeElement>, CollectionDifference<ChangeElement>) -> Bool](/documentation/swift/collectiondifference/==(_:_:))
- [Hashable Implementations](/documentation/swift/collectiondifference/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/collectiondifference/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/collectiondifference/hash(into:))
- [Sequence Implementations](/documentation/swift/collectiondifference/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/collectiondifference/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectiondifference/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/collectiondifference/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/collectiondifference/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectiondifference/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/collectiondifference/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/collectiondifference/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectiondifference/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/collectiondifference/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/collectiondifference/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectiondifference/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/collectiondifference/flatmap(_:)-2jkzm)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/collectiondifference/flatmap(_:)-89rmu)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/collectiondifference/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectiondifference/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/collectiondifference/map(_:)-1p5t9)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectiondifference/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/collectiondifference/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/collectiondifference/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/collectiondifference/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/collectiondifference/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/collectiondifference/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/collectiondifference/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/collectiondifference/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/collectiondifference/split(separator:maxsplits:omittingemptysubsequences:)-897oj)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/collectiondifference/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/collectiondifference/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/collectiondifference/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [CollectionDifference.Element](/documentation/swift/collectiondifference/element)
- [DropFirstSequence](/documentation/swift/dropfirstsequence)

###### Initializers

- [init(Base, dropping: Int)](/documentation/swift/dropfirstsequence/init(_:dropping:))

###### Instance Methods

- [func dropFirst(Int) -> DropFirstSequence<Base>](/documentation/swift/dropfirstsequence/dropfirst(_:))

###### Type Aliases

- [DropFirstSequence.SubSequence](/documentation/swift/dropfirstsequence/subsequence)

###### Default Implementations

- [Sequence Implementations](/documentation/swift/dropfirstsequence/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dropfirstsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/dropfirstsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropfirstsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dropfirstsequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dropfirstsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropfirstsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dropfirstsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/dropfirstsequence/drop(while:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/dropfirstsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dropfirstsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropfirstsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dropfirstsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropfirstsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropfirstsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dropfirstsequence/flatmap(_:)-66w5i)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dropfirstsequence/flatmap(_:)-9hnmb)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dropfirstsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dropfirstsequence/joined())
- [func joined(separator: String) -> String](/documentation/swift/dropfirstsequence/joined(separator:)-1lfg6)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dropfirstsequence/joined(separator:)-vj4v)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dropfirstsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropfirstsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> DropFirstSequence<Base>.Iterator](/documentation/swift/dropfirstsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dropfirstsequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/dropfirstsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropfirstsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dropfirstsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropfirstsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/dropfirstsequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropfirstsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dropfirstsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dropfirstsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dropfirstsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dropfirstsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dropfirstsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dropfirstsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropfirstsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/dropfirstsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/dropfirstsequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dropfirstsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropfirstsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/dropfirstsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dropfirstsequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [DropFirstSequence.Element](/documentation/swift/dropfirstsequence/element)
- [DropFirstSequence.Iterator](/documentation/swift/dropfirstsequence/iterator)
- [DropWhileSequence](/documentation/swift/dropwhilesequence)

###### Instance Methods

- [func drop(while: (DropWhileSequence<Base>.Element) throws -> Bool) rethrows -> DropWhileSequence<Base>](/documentation/swift/dropwhilesequence/drop(while:))

###### Type Aliases

- [DropWhileSequence.Element](/documentation/swift/dropwhilesequence/element)

###### Default Implementations

- [Sequence Implementations](/documentation/swift/dropwhilesequence/sequence-implementations)

###### Structures

- [DropWhileSequence.Iterator](/documentation/swift/dropwhilesequence/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/dropwhilesequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> DropWhileSequence<Base>.Iterator.Element?](/documentation/swift/dropwhilesequence/iterator/next())

###### Type Aliases

- [DropWhileSequence.Iterator.Element](/documentation/swift/dropwhilesequence/iterator/element)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/dropwhilesequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/dropwhilesequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dropwhilesequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/dropwhilesequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropwhilesequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/dropwhilesequence/count(where:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/dropwhilesequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/dropwhilesequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dropwhilesequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropwhilesequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/dropwhilesequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropwhilesequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropwhilesequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/dropwhilesequence/flatmap(_:)-54urw)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/dropwhilesequence/flatmap(_:)-8jyls)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/dropwhilesequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/dropwhilesequence/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/dropwhilesequence/joined(separator:)-6g78p)
- [func joined(separator: String) -> String](/documentation/swift/dropwhilesequence/joined(separator:)-9nzkj)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/dropwhilesequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropwhilesequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> DropWhileSequence<Base>.Iterator](/documentation/swift/dropwhilesequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/dropwhilesequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/dropwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropwhilesequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/dropwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/dropwhilesequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/dropwhilesequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropwhilesequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/dropwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/dropwhilesequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/dropwhilesequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/dropwhilesequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/dropwhilesequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/dropwhilesequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/dropwhilesequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/dropwhilesequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/dropwhilesequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/dropwhilesequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/dropwhilesequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/dropwhilesequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/dropwhilesequence/withcontiguousstorageifavailable(_:))
- [EnumeratedSequence](/documentation/swift/enumeratedsequence)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/enumeratedsequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/enumeratedsequence/last)

###### Instance Methods

- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/enumeratedsequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/enumeratedsequence/distance(from:to:)-90p1a)
- [func formIndex(before: inout Self.Index)](/documentation/swift/enumeratedsequence/formindex(before:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/enumeratedsequence/index(_:offsetby:)-5oheh)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/enumeratedsequence/index(_:offsetby:limitedby:)-3spm1)
- [func index(before: EnumeratedSequence<Base>.Index) -> EnumeratedSequence<Base>.Index](/documentation/swift/enumeratedsequence/index(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/last(where:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/enumeratedsequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/enumeratedsequence/collection-implementations)

###### Structures

- [EnumeratedSequence.Index](/documentation/swift/enumeratedsequence/index)

###### Instance Properties

- [let base: Base.Index](/documentation/swift/enumeratedsequence/index/base)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/enumeratedsequence/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/enumeratedsequence/index/'...(_:)-1tyzg)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/enumeratedsequence/index/'...(_:)-55wxw)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/enumeratedsequence/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/enumeratedsequence/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/enumeratedsequence/index/'.._(_:_:))
- [static func < (EnumeratedSequence<Base>.Index, EnumeratedSequence<Base>.Index) -> Bool](/documentation/swift/enumeratedsequence/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/enumeratedsequence/index/_(_:_:)-59bjf)
- [static func <= (Self, Self) -> Bool](/documentation/swift/enumeratedsequence/index/_=(_:_:)-2idsp)
- [static func >= (Self, Self) -> Bool](/documentation/swift/enumeratedsequence/index/_=(_:_:)-5fwix)
- [Equatable Implementations](/documentation/swift/enumeratedsequence/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/enumeratedsequence/index/!=(_:_:))
- [static func == (EnumeratedSequence<Base>.Index, EnumeratedSequence<Base>.Index) -> Bool](/documentation/swift/enumeratedsequence/index/==(_:_:))

###### Instance Properties

- [var count: Int](/documentation/swift/enumeratedsequence/count)
- [var count: Int](/documentation/swift/enumeratedsequence/count-3o2fx)
- [var endIndex: EnumeratedSequence<Base>.Index](/documentation/swift/enumeratedsequence/endindex)
- [var indices: DefaultIndices<Self>](/documentation/swift/enumeratedsequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/enumeratedsequence/isempty)
- [var isEmpty: Bool](/documentation/swift/enumeratedsequence/isempty-1yllc)
- [var startIndex: EnumeratedSequence<Base>.Index](/documentation/swift/enumeratedsequence/startindex)

###### Instance Methods

- [func distance(from: EnumeratedSequence<Base>.Index, to: EnumeratedSequence<Base>.Index) -> Int](/documentation/swift/enumeratedsequence/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/enumeratedsequence/distance(from:to:)-6kmqj)
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/enumeratedsequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/enumeratedsequence/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/enumeratedsequence/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/enumeratedsequence/formindex(after:))
- [func index(EnumeratedSequence<Base>.Index, offsetBy: Int) -> EnumeratedSequence<Base>.Index](/documentation/swift/enumeratedsequence/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/enumeratedsequence/index(_:offsetby:)-4bcg9)
- [func index(EnumeratedSequence<Base>.Index, offsetBy: Int, limitedBy: EnumeratedSequence<Base>.Index) -> EnumeratedSequence<Base>.Index?](/documentation/swift/enumeratedsequence/index(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/enumeratedsequence/index(_:offsetby:limitedby:)-4rme3)
- [func index(after: EnumeratedSequence<Base>.Index) -> EnumeratedSequence<Base>.Index](/documentation/swift/enumeratedsequence/index(after:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/enumeratedsequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/enumeratedsequence/map(_:)-9le0)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/enumeratedsequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/enumeratedsequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/enumeratedsequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/enumeratedsequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/enumeratedsequence/removingsubranges(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/enumeratedsequence/suffix(from:))

###### Subscripts

- [subscript(EnumeratedSequence<Base>.Index) -> EnumeratedSequence<Base>.Element](/documentation/swift/enumeratedsequence/subscript(_:))
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/enumeratedsequence/subscript(_:)-5gng6)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/enumeratedsequence/subscript(_:)-7y5my)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/enumeratedsequence/subscript(_:)-8ubal)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/enumeratedsequence/subscript(_:)-91gqg)

###### Type Aliases

- [EnumeratedSequence.Indices](/documentation/swift/enumeratedsequence/indices)
- [EnumeratedSequence.SubSequence](/documentation/swift/enumeratedsequence/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/enumeratedsequence/randomaccesscollection-implementations)

###### Instance Methods

- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/enumeratedsequence/index(_:offsetby:limitedby:)-9f98a)
- [Sequence Implementations](/documentation/swift/enumeratedsequence/sequence-implementations)

###### Structures

- [EnumeratedSequence.Iterator](/documentation/swift/enumeratedsequence/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/enumeratedsequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> EnumeratedSequence<Base>.Iterator.Element?](/documentation/swift/enumeratedsequence/iterator/next())

###### Type Aliases

- [EnumeratedSequence.Iterator.Element](/documentation/swift/enumeratedsequence/iterator/element)
- [Sequence Implementations](/documentation/swift/enumeratedsequence/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/enumeratedsequence/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/enumeratedsequence/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/enumeratedsequence/iterator/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/enumeratedsequence/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/enumeratedsequence/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/enumeratedsequence/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/enumeratedsequence/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/iterator/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/enumeratedsequence/iterator/flatmap(_:)-50wvd)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/enumeratedsequence/iterator/flatmap(_:)-98frp)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/enumeratedsequence/iterator/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/enumeratedsequence/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/enumeratedsequence/iterator/map(_:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/iterator/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/enumeratedsequence/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/enumeratedsequence/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/enumeratedsequence/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/enumeratedsequence/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/enumeratedsequence/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/enumeratedsequence/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [EnumeratedSequence.Iterator.Iterator](/documentation/swift/enumeratedsequence/iterator/iterator)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/enumeratedsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/enumeratedsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/enumeratedsequence/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/enumeratedsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/enumeratedsequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/enumeratedsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/enumeratedsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/enumeratedsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/enumeratedsequence/flatmap(_:)-4t5x2)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/enumeratedsequence/flatmap(_:)-6gcbi)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/enumeratedsequence/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> EnumeratedSequence<Base>.Iterator](/documentation/swift/enumeratedsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/enumeratedsequence/map(_:)-2mfl2)
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/enumeratedsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/enumeratedsequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/enumeratedsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/enumeratedsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/enumeratedsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/enumeratedsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/enumeratedsequence/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/enumeratedsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/enumeratedsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/enumeratedsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/enumeratedsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/enumeratedsequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [EnumeratedSequence.Element](/documentation/swift/enumeratedsequence/element)
- [FlattenCollection](/documentation/swift/flattencollection)
- [FlattenSequence](/documentation/swift/flattensequence)

###### Instance Methods

- [func formIndex(inout FlattenSequence<Base>.Index, offsetBy: Int)](/documentation/swift/flattensequence/formindex(_:offsetby:))
- [func formIndex(inout FlattenSequence<Base>.Index, offsetBy: Int, limitedBy: FlattenSequence<Base>.Index) -> Bool](/documentation/swift/flattensequence/formindex(_:offsetby:limitedby:))

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/flattensequence/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/flattensequence/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/flattensequence/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/flattensequence/difference(from:by:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/flattensequence/distance(from:to:)-1s77i)
- [func formIndex(before: inout FlattenSequence<Base>.Index)](/documentation/swift/flattensequence/formindex(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/flattensequence/formindex(before:)-1ghfa)
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/flattensequence/index(_:offsetby:)-1pgap)
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/flattensequence/index(_:offsetby:limitedby:)-6ctou)
- [func index(before: FlattenSequence<Base>.Index) -> FlattenSequence<Base>.Index](/documentation/swift/flattensequence/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/flattensequence/joined(separator:)-9kr1e)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/flattensequence/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/flattensequence/lastindex(where:))
- [Collection Implementations](/documentation/swift/flattensequence/collection-implementations)

###### Structures

- [FlattenSequence.Index](/documentation/swift/flattensequence/index)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/flattensequence/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/flattensequence/index/'...(_:)-1suah)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/flattensequence/index/'...(_:)-8yc3u)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/flattensequence/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/flattensequence/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/flattensequence/index/'.._(_:_:))
- [static func < (FlattenCollection<Base>.Index, FlattenCollection<Base>.Index) -> Bool](/documentation/swift/flattensequence/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/flattensequence/index/_(_:_:)-9lk2)
- [static func >= (Self, Self) -> Bool](/documentation/swift/flattensequence/index/_=(_:_:)-1va76)
- [static func <= (Self, Self) -> Bool](/documentation/swift/flattensequence/index/_=(_:_:)-8ut2h)
- [Equatable Implementations](/documentation/swift/flattensequence/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/flattensequence/index/!=(_:_:))
- [static func == (FlattenCollection<Base>.Index, FlattenCollection<Base>.Index) -> Bool](/documentation/swift/flattensequence/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/flattensequence/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/flattensequence/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/flattensequence/index/hash(into:))

###### Instance Properties

- [var count: Int](/documentation/swift/flattensequence/count)
- [var endIndex: FlattenSequence<Base>.Index](/documentation/swift/flattensequence/endindex)
- [var indices: DefaultIndices<Self>](/documentation/swift/flattensequence/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/flattensequence/isempty)
- [var startIndex: FlattenSequence<Base>.Index](/documentation/swift/flattensequence/startindex)

###### Instance Methods

- [func distance(from: FlattenSequence<Base>.Index, to: FlattenSequence<Base>.Index) -> Int](/documentation/swift/flattensequence/distance(from:to:))
- [func distance(from: Self.Index, to: Self.Index) -> Int](/documentation/swift/flattensequence/distance(from:to:)-1neyu)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/flattensequence/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/flattensequence/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/flattensequence/formindex(_:offsetby:)-9h4a8)
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/flattensequence/formindex(_:offsetby:limitedby:)-5809f)
- [func formIndex(after: inout FlattenSequence<Base>.Index)](/documentation/swift/flattensequence/formindex(after:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/flattensequence/formindex(after:)-7v0c1)
- [func index(FlattenSequence<Base>.Index, offsetBy: Int) -> FlattenSequence<Base>.Index](/documentation/swift/flattensequence/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int) -> Self.Index](/documentation/swift/flattensequence/index(_:offsetby:)-20r2m)
- [func index(FlattenSequence<Base>.Index, offsetBy: Int, limitedBy: FlattenSequence<Base>.Index) -> FlattenSequence<Base>.Index?](/documentation/swift/flattensequence/index(_:offsetby:limitedby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/flattensequence/index(_:offsetby:limitedby:)-7gfpk)
- [func index(after: FlattenSequence<Base>.Index) -> FlattenSequence<Base>.Index](/documentation/swift/flattensequence/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/flattensequence/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/flattensequence/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/flattensequence/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/flattensequence/map(_:)-9pfsv)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/flattensequence/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/flattensequence/prefix(upto:))
- [func randomElement() -> Self.Element?](/documentation/swift/flattensequence/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/flattensequence/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/flattensequence/removingsubranges(_:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/flattensequence/split(separator:maxsplits:omittingemptysubsequences:)-9yjf5)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/flattensequence/suffix(from:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/flattensequence/subscript(_:)-1cq56)
- [subscript(FlattenSequence<Base>.Index) -> Base.Element.Element](/documentation/swift/flattensequence/subscript(_:)-1eq7u)
- [subscript(Range<FlattenSequence<Base>.Index>) -> Slice<FlattenCollection<Base>>](/documentation/swift/flattensequence/subscript(_:)-3w5sk)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/flattensequence/subscript(_:)-4nz3b)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/flattensequence/subscript(_:)-cutv)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/flattensequence/subscript(_:)-v1s4)

###### Type Aliases

- [FlattenSequence.Indices](/documentation/swift/flattensequence/indices)
- [FlattenSequence.SubSequence](/documentation/swift/flattensequence/subsequence)
- [Sequence Implementations](/documentation/swift/flattensequence/sequence-implementations)

###### Structures

- [FlattenSequence.Iterator](/documentation/swift/flattensequence/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/flattensequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> FlattenSequence<Base>.Iterator.Element?](/documentation/swift/flattensequence/iterator/next())

###### Type Aliases

- [FlattenSequence.Iterator.Element](/documentation/swift/flattensequence/iterator/element)
- [Sequence Implementations](/documentation/swift/flattensequence/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/flattensequence/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/flattensequence/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/flattensequence/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/flattensequence/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/flattensequence/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/flattensequence/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/flattensequence/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/flattensequence/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/flattensequence/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/flattensequence/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/iterator/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/flattensequence/iterator/flatmap(_:)-3y1vp)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/flattensequence/iterator/flatmap(_:)-7lydm)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/flattensequence/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/flattensequence/iterator/joined())
- [func joined(separator: String) -> String](/documentation/swift/flattensequence/iterator/joined(separator:)-14aab)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/flattensequence/iterator/joined(separator:)-86lij)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/flattensequence/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/flattensequence/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/flattensequence/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/flattensequence/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/flattensequence/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/flattensequence/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/flattensequence/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/flattensequence/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/flattensequence/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/flattensequence/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/flattensequence/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/flattensequence/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/flattensequence/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/flattensequence/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/flattensequence/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/flattensequence/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/flattensequence/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [FlattenSequence.Iterator.Iterator](/documentation/swift/flattensequence/iterator/iterator)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/flattensequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/flattensequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/flattensequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/flattensequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/flattensequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/flattensequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/flattensequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/flattensequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/flattensequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/flattensequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/flattensequence/flatmap(_:)-43e2u)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/flattensequence/flatmap(_:)-731v7)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/flattensequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/flattensequence/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/flattensequence/joined(separator:)-53e90)
- [func joined(separator: String) -> String](/documentation/swift/flattensequence/joined(separator:)-8az16)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/flattensequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> FlattenSequence<Base>.Iterator](/documentation/swift/flattensequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/flattensequence/map(_:)-7kusu)
- [func max() -> Self.Element?](/documentation/swift/flattensequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/flattensequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/flattensequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/flattensequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/flattensequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/flattensequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/flattensequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/flattensequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/flattensequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/flattensequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/flattensequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/flattensequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/flattensequence/split(separator:maxsplits:omittingemptysubsequences:)-20oji)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/flattensequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/flattensequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/flattensequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/flattensequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [FlattenSequence.Element](/documentation/swift/flattensequence/element)
- [JoinedSequence](/documentation/swift/joinedsequence)

###### Initializers

- [init<Separator>(base: Base, separator: Separator)](/documentation/swift/joinedsequence/init(base:separator:))

###### Type Aliases

- [JoinedSequence.Element](/documentation/swift/joinedsequence/element)

###### Default Implementations

- [Sequence Implementations](/documentation/swift/joinedsequence/sequence-implementations)

###### Structures

- [JoinedSequence.Iterator](/documentation/swift/joinedsequence/iterator)

###### Initializers

- [init<Separator>(base: Base.Iterator, separator: Separator)](/documentation/swift/joinedsequence/iterator/init(base:separator:))

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/joinedsequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> JoinedSequence<Base>.Iterator.Element?](/documentation/swift/joinedsequence/iterator/next())

###### Type Aliases

- [JoinedSequence.Iterator.Element](/documentation/swift/joinedsequence/iterator/element)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/joinedsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/joinedsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/joinedsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/joinedsequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/joinedsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/joinedsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/joinedsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/joinedsequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/joinedsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/joinedsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/joinedsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/joinedsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/joinedsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/joinedsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/joinedsequence/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/joinedsequence/flatmap(_:)-1dxn5)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/joinedsequence/flatmap(_:)-5cevu)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/joinedsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/joinedsequence/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/joinedsequence/joined(separator:)-3n0qi)
- [func joined(separator: String) -> String](/documentation/swift/joinedsequence/joined(separator:)-5tb1r)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/joinedsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/joinedsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> JoinedSequence<Base>.Iterator](/documentation/swift/joinedsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/joinedsequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/joinedsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/joinedsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/joinedsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/joinedsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/joinedsequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/joinedsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/joinedsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/joinedsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/joinedsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/joinedsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/joinedsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/joinedsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/joinedsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/joinedsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/joinedsequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/joinedsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/joinedsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/joinedsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/joinedsequence/withcontiguousstorageifavailable(_:))
- [PrefixSequence](/documentation/swift/prefixsequence)

###### Initializers

- [init(Base, maxLength: Int)](/documentation/swift/prefixsequence/init(_:maxlength:))

###### Instance Methods

- [func prefix(Int) -> PrefixSequence<Base>](/documentation/swift/prefixsequence/prefix(_:))

###### Default Implementations

- [Sequence Implementations](/documentation/swift/prefixsequence/sequence-implementations)

###### Structures

- [PrefixSequence.Iterator](/documentation/swift/prefixsequence/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/prefixsequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> PrefixSequence<Base>.Iterator.Element?](/documentation/swift/prefixsequence/iterator/next())

###### Type Aliases

- [PrefixSequence.Iterator.Element](/documentation/swift/prefixsequence/iterator/element)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/prefixsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/prefixsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/prefixsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/prefixsequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/prefixsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/prefixsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/prefixsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/prefixsequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/prefixsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/prefixsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/prefixsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/prefixsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/prefixsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/prefixsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/prefixsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/prefixsequence/flatmap(_:)-57e0w)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/prefixsequence/flatmap(_:)-wtye)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/prefixsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/prefixsequence/joined())
- [func joined(separator: String) -> String](/documentation/swift/prefixsequence/joined(separator:)-1qaxa)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/prefixsequence/joined(separator:)-81kwg)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/prefixsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/prefixsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> PrefixSequence<Base>.Iterator](/documentation/swift/prefixsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/prefixsequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/prefixsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/prefixsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/prefixsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/prefixsequence/min(by:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/prefixsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/prefixsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/prefixsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/prefixsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/prefixsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/prefixsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/prefixsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/prefixsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/prefixsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/prefixsequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/prefixsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/prefixsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/prefixsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/prefixsequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [PrefixSequence.Element](/documentation/swift/prefixsequence/element)
- [Repeated](/documentation/swift/repeated)

###### Instance Properties

- [let count: Int](/documentation/swift/repeated/count)
- [let repeatedValue: Element](/documentation/swift/repeated/repeatedvalue)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/repeated/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/repeated/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/repeated/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/repeated/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/repeated/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/repeated/formindex(before:))
- [func joined(separator: String) -> String](/documentation/swift/repeated/joined(separator:)-2hbtj)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/repeated/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/repeated/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/repeated/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/repeated/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/repeated/suffix(_:))
- [Collection Implementations](/documentation/swift/repeated/collection-implementations)

###### Instance Properties

- [var first: Self.Element?](/documentation/swift/repeated/first)
- [var isEmpty: Bool](/documentation/swift/repeated/isempty)
- [var underestimatedCount: Int](/documentation/swift/repeated/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/repeated/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/repeated/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/repeated/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/repeated/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/repeated/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/repeated/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/repeated/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/repeated/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/repeated/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/repeated/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/repeated/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/repeated/map(_:)-4y3h7)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/repeated/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/repeated/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/repeated/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/repeated/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/repeated/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/repeated/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/repeated/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/repeated/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/repeated/split(separator:maxsplits:omittingemptysubsequences:)-4q9u4)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/repeated/suffix(from:))

###### Type Aliases

- [Repeated.Indices](/documentation/swift/repeated/indices)
- [Repeated.Iterator](/documentation/swift/repeated/iterator)
- [Repeated.SubSequence](/documentation/swift/repeated/subsequence)
- [RandomAccessCollection Implementations](/documentation/swift/repeated/randomaccesscollection-implementations)

###### Instance Properties

- [var endIndex: Repeated<Element>.Index](/documentation/swift/repeated/endindex)
- [var indices: Range<Self.Index>](/documentation/swift/repeated/indices-swift.property)
- [var startIndex: Repeated<Element>.Index](/documentation/swift/repeated/startindex)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/repeated/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/repeated/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/repeated/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/repeated/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/repeated/index(before:))

###### Subscripts

- [subscript(Int) -> Element](/documentation/swift/repeated/subscript(_:))

###### Type Aliases

- [Repeated.Index](/documentation/swift/repeated/index)
- [Sequence Implementations](/documentation/swift/repeated/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/repeated/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/repeated/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/repeated/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/repeated/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/repeated/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/repeated/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/repeated/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/repeated/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/repeated/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/repeated/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/repeated/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/repeated/flatmap(_:)-4ktxw)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/repeated/flatmap(_:)-85lfb)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/repeated/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/repeated/joined())
- [func joined(separator: String) -> String](/documentation/swift/repeated/joined(separator:)-2xbpw)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/repeated/joined(separator:)-4dqsr)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/repeated/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/repeated/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/repeated/map(_:)-93vx6)
- [func max() -> Self.Element?](/documentation/swift/repeated/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/repeated/max(by:))
- [func min() -> Self.Element?](/documentation/swift/repeated/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/repeated/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/repeated/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/repeated/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/repeated/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/repeated/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/repeated/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/repeated/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/repeated/split(separator:maxsplits:omittingemptysubsequences:)-c1tr)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/repeated/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/repeated/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/repeated/withcontiguousstorageifavailable(_:))
- [ReversedCollection](/documentation/swift/reversedcollection)

###### Instance Methods

- [func reversed() -> Base](/documentation/swift/reversedcollection/reversed())

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/reversedcollection/bidirectionalcollection-implementations)

###### Structures

- [ReversedCollection.Index](/documentation/swift/reversedcollection/index)

###### Initializers

- [init(Base.Index)](/documentation/swift/reversedcollection/index/init(_:))

###### Instance Properties

- [let base: Base.Index](/documentation/swift/reversedcollection/index/base)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/reversedcollection/index/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/reversedcollection/index/'...(_:)-7td6l)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/reversedcollection/index/'...(_:)-9yax3)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/reversedcollection/index/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/reversedcollection/index/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/reversedcollection/index/'.._(_:_:))
- [static func < (ReversedCollection<Base>.Index, ReversedCollection<Base>.Index) -> Bool](/documentation/swift/reversedcollection/index/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/reversedcollection/index/_(_:_:)-1oel1)
- [static func <= (Self, Self) -> Bool](/documentation/swift/reversedcollection/index/_=(_:_:)-1gott)
- [static func >= (Self, Self) -> Bool](/documentation/swift/reversedcollection/index/_=(_:_:)-5ovrh)
- [Equatable Implementations](/documentation/swift/reversedcollection/index/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/reversedcollection/index/!=(_:_:))
- [static func == (ReversedCollection<Base>.Index, ReversedCollection<Base>.Index) -> Bool](/documentation/swift/reversedcollection/index/==(_:_:))
- [Hashable Implementations](/documentation/swift/reversedcollection/index/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/reversedcollection/index/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/reversedcollection/index/hash(into:))

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/reversedcollection/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/reversedcollection/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/reversedcollection/difference(from:by:))
- [func distance(from: ReversedCollection<Base>.Index, to: ReversedCollection<Base>.Index) -> Int](/documentation/swift/reversedcollection/distance(from:to:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/reversedcollection/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/reversedcollection/formindex(before:))
- [func index(ReversedCollection<Base>.Index, offsetBy: Int) -> ReversedCollection<Base>.Index](/documentation/swift/reversedcollection/index(_:offsetby:))
- [func index(ReversedCollection<Base>.Index, offsetBy: Int, limitedBy: ReversedCollection<Base>.Index) -> ReversedCollection<Base>.Index?](/documentation/swift/reversedcollection/index(_:offsetby:limitedby:))
- [func index(after: ReversedCollection<Base>.Index) -> ReversedCollection<Base>.Index](/documentation/swift/reversedcollection/index(after:))
- [func index(before: ReversedCollection<Base>.Index) -> ReversedCollection<Base>.Index](/documentation/swift/reversedcollection/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/reversedcollection/joined(separator:)-3e82c)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/reversedcollection/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/reversedcollection/lastindex(where:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/reversedcollection/suffix(_:))
- [Collection Implementations](/documentation/swift/reversedcollection/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/reversedcollection/count)
- [var endIndex: ReversedCollection<Base>.Index](/documentation/swift/reversedcollection/endindex)
- [var first: Self.Element?](/documentation/swift/reversedcollection/first)
- [var indices: DefaultIndices<Self>](/documentation/swift/reversedcollection/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/reversedcollection/isempty)
- [var startIndex: ReversedCollection<Base>.Index](/documentation/swift/reversedcollection/startindex)
- [var underestimatedCount: Int](/documentation/swift/reversedcollection/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/reversedcollection/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/reversedcollection/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/reversedcollection/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/reversedcollection/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/reversedcollection/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/reversedcollection/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/reversedcollection/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/reversedcollection/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/reversedcollection/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/reversedcollection/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/reversedcollection/map(_:)-7zsm6)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/reversedcollection/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/reversedcollection/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/reversedcollection/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/reversedcollection/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/reversedcollection/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/reversedcollection/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/reversedcollection/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/reversedcollection/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/reversedcollection/split(separator:maxsplits:omittingemptysubsequences:)-7uzmt)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/reversedcollection/suffix(from:))

###### Subscripts

- [subscript(ReversedCollection<Base>.Index) -> ReversedCollection<Base>.Element](/documentation/swift/reversedcollection/subscript(_:))

###### Type Aliases

- [ReversedCollection.Indices](/documentation/swift/reversedcollection/indices)
- [ReversedCollection.SubSequence](/documentation/swift/reversedcollection/subsequence)
- [LazySequenceProtocol Implementations](/documentation/swift/reversedcollection/lazysequenceprotocol-implementations)

###### Instance Properties

- [var elements: Self](/documentation/swift/reversedcollection/elements-swift.property)

###### Instance Methods

- [func compactMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/reversedcollection/compactmap(_:)-45kvo)
- [func flatMap<SegmentOfResult>((Self.Elements.Element) -> SegmentOfResult) -> LazySequence<FlattenSequence<LazyMapSequence<Self.Elements, SegmentOfResult>>>](/documentation/swift/reversedcollection/flatmap(_:)-4wxgx)
- [func flatMap<ElementOfResult>((Self.Elements.Element) -> ElementOfResult?) -> LazyMapSequence<LazyFilterSequence<LazyMapSequence<Self.Elements, ElementOfResult?>>, ElementOfResult>](/documentation/swift/reversedcollection/flatmap(_:)-81zng)
- [func joined() -> LazySequence<FlattenSequence<Self.Elements>>](/documentation/swift/reversedcollection/joined()-2x3z5)
- [func map<U>((Self.Element) -> U) -> LazyMapSequence<Self.Elements, U>](/documentation/swift/reversedcollection/map(_:)-88nu3)

###### Type Aliases

- [ReversedCollection.Elements](/documentation/swift/reversedcollection/elements)
- [Sequence Implementations](/documentation/swift/reversedcollection/sequence-implementations)

###### Structures

- [ReversedCollection.Iterator](/documentation/swift/reversedcollection/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/reversedcollection/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> ReversedCollection<Base>.Iterator.Element?](/documentation/swift/reversedcollection/iterator/next())

###### Type Aliases

- [ReversedCollection.Iterator.Element](/documentation/swift/reversedcollection/iterator/element)
- [Sequence Implementations](/documentation/swift/reversedcollection/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/reversedcollection/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/reversedcollection/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/reversedcollection/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/reversedcollection/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/reversedcollection/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/reversedcollection/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/reversedcollection/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/reversedcollection/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/reversedcollection/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/reversedcollection/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/reversedcollection/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/iterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/reversedcollection/iterator/flatmap(_:)-6iqg9)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/reversedcollection/iterator/flatmap(_:)-7zjgh)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/reversedcollection/iterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/reversedcollection/iterator/joined())
- [func joined(separator: String) -> String](/documentation/swift/reversedcollection/iterator/joined(separator:)-16xv3)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/reversedcollection/iterator/joined(separator:)-6z11h)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/reversedcollection/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/reversedcollection/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/reversedcollection/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/reversedcollection/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/reversedcollection/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/reversedcollection/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/reversedcollection/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/reversedcollection/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/reversedcollection/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/reversedcollection/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/reversedcollection/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/reversedcollection/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/reversedcollection/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/reversedcollection/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/reversedcollection/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/reversedcollection/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/reversedcollection/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/reversedcollection/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/reversedcollection/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [ReversedCollection.Iterator.Iterator](/documentation/swift/reversedcollection/iterator/iterator)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/reversedcollection/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/reversedcollection/compactmap(_:)-2ra13)
- [func contains(Self.Element) -> Bool](/documentation/swift/reversedcollection/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/reversedcollection/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/reversedcollection/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/reversedcollection/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/reversedcollection/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/reversedcollection/flatmap(_:)-17mz1)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/reversedcollection/flatmap(_:)-9kclv)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/reversedcollection/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/reversedcollection/joined()-448f)
- [func joined(separator: String) -> String](/documentation/swift/reversedcollection/joined(separator:)-1ijrz)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/reversedcollection/joined(separator:)-xipx)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/reversedcollection/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> ReversedCollection<Base>.Iterator](/documentation/swift/reversedcollection/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/reversedcollection/map(_:)-6gkpm)
- [func max() -> Self.Element?](/documentation/swift/reversedcollection/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/max(by:))
- [func min() -> Self.Element?](/documentation/swift/reversedcollection/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/reversedcollection/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/reversedcollection/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/reversedcollection/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/reversedcollection/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/reversedcollection/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/reversedcollection/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/reversedcollection/sorted(by:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/reversedcollection/split(separator:maxsplits:omittingemptysubsequences:)-59vb5)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/reversedcollection/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/reversedcollection/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/reversedcollection/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [ReversedCollection.Element](/documentation/swift/reversedcollection/element)
- [StrideTo](/documentation/swift/strideto)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/strideto/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/strideto/custommirror)
- [Sequence Implementations](/documentation/swift/strideto/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/strideto/lazy)
- [var underestimatedCount: Int](/documentation/swift/strideto/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/strideto/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/strideto/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/strideto/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/strideto/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/strideto/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/strideto/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/strideto/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/strideto/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/strideto/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/strideto/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/strideto/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/strideto/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/strideto/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/strideto/flatmap(_:)-90o9f)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/strideto/flatmap(_:)-91vkc)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/strideto/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/strideto/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/strideto/joined(separator:)-52o5k)
- [func joined(separator: String) -> String](/documentation/swift/strideto/joined(separator:)-6gaaw)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/strideto/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/strideto/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> StrideToIterator<Element>](/documentation/swift/strideto/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/strideto/map(_:))
- [func max() -> Self.Element?](/documentation/swift/strideto/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/strideto/max(by:))
- [func min() -> Self.Element?](/documentation/swift/strideto/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/strideto/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/strideto/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/strideto/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/strideto/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/strideto/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/strideto/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/strideto/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/strideto/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/strideto/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/strideto/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/strideto/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/strideto/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/strideto/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/strideto/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/strideto/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/strideto/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [StrideTo.Iterator](/documentation/swift/strideto/iterator)
- [StrideThrough](/documentation/swift/stridethrough)

###### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/stridethrough/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/stridethrough/custommirror)
- [Sequence Implementations](/documentation/swift/stridethrough/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/stridethrough/lazy)
- [var underestimatedCount: Int](/documentation/swift/stridethrough/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/stridethrough/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/stridethrough/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/stridethrough/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/stridethrough/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/stridethrough/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/stridethrough/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/stridethrough/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/stridethrough/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/stridethrough/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/stridethrough/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/stridethrough/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/stridethrough/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/stridethrough/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/stridethrough/flatmap(_:)-1er06)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/stridethrough/flatmap(_:)-29w2n)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/stridethrough/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/stridethrough/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/stridethrough/joined(separator:)-1zt3c)
- [func joined(separator: String) -> String](/documentation/swift/stridethrough/joined(separator:)-33ki)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/stridethrough/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/stridethrough/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> StrideThroughIterator<Element>](/documentation/swift/stridethrough/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/stridethrough/map(_:))
- [func max() -> Self.Element?](/documentation/swift/stridethrough/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/stridethrough/max(by:))
- [func min() -> Self.Element?](/documentation/swift/stridethrough/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/stridethrough/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/stridethrough/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/stridethrough/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/stridethrough/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/stridethrough/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/stridethrough/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/stridethrough/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/stridethrough/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/stridethrough/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/stridethrough/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/stridethrough/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/stridethrough/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/stridethrough/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/stridethrough/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/stridethrough/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/stridethrough/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [StrideThrough.Iterator](/documentation/swift/stridethrough/iterator)
- [UnfoldSequence](/documentation/swift/unfoldsequence)

###### Type Aliases

- [UnfoldFirstSequence](/documentation/swift/unfoldfirstsequence)
- [UnfoldSequence.Iterator](/documentation/swift/unfoldsequence/iterator)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/unfoldsequence/next())

###### Default Implementations

- [Sequence Implementations](/documentation/swift/unfoldsequence/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unfoldsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/unfoldsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unfoldsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unfoldsequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unfoldsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unfoldsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unfoldsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/unfoldsequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/unfoldsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/unfoldsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unfoldsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unfoldsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unfoldsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unfoldsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unfoldsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unfoldsequence/flatmap(_:)-2njko)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unfoldsequence/flatmap(_:)-3xu1o)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unfoldsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/unfoldsequence/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/unfoldsequence/joined(separator:)-4nirn)
- [func joined(separator: String) -> String](/documentation/swift/unfoldsequence/joined(separator:)-9h36m)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unfoldsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unfoldsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/unfoldsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unfoldsequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/unfoldsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unfoldsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unfoldsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unfoldsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/unfoldsequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unfoldsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unfoldsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unfoldsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/unfoldsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/unfoldsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unfoldsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unfoldsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unfoldsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/unfoldsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/unfoldsequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unfoldsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unfoldsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/unfoldsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unfoldsequence/withcontiguousstorageifavailable(_:))
- [Zip2Sequence](/documentation/swift/zip2sequence)

###### Type Aliases

- [Zip2Sequence.Stream1](/documentation/swift/zip2sequence/stream1)
- [Zip2Sequence.Stream2](/documentation/swift/zip2sequence/stream2)

###### Default Implementations

- [Sequence Implementations](/documentation/swift/zip2sequence/sequence-implementations)

###### Structures

- [Zip2Sequence.Iterator](/documentation/swift/zip2sequence/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/zip2sequence/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Zip2Sequence<Sequence1, Sequence2>.Iterator.Element?](/documentation/swift/zip2sequence/iterator/next())

###### Type Aliases

- [Zip2Sequence.Iterator.Element](/documentation/swift/zip2sequence/iterator/element)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/zip2sequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/zip2sequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/zip2sequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/zip2sequence/compactmap(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/zip2sequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/zip2sequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/zip2sequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/zip2sequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/zip2sequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/zip2sequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/zip2sequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/zip2sequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/zip2sequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/zip2sequence/flatmap(_:)-8h6h8)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/zip2sequence/flatmap(_:)-r4bo)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/zip2sequence/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/zip2sequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Zip2Sequence<Sequence1, Sequence2>.Iterator](/documentation/swift/zip2sequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/zip2sequence/map(_:))
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/zip2sequence/max(by:))
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/zip2sequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/zip2sequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/zip2sequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/zip2sequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/zip2sequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/zip2sequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/zip2sequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/zip2sequence/shuffled(using:))
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/zip2sequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/zip2sequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/zip2sequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/zip2sequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/zip2sequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [Zip2Sequence.Element](/documentation/swift/zip2sequence/element)

##### Collections of Indices

- [DefaultIndices](/documentation/swift/defaultindices)

###### Default Implementations

- [BidirectionalCollection Implementations](/documentation/swift/defaultindices/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/defaultindices/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/defaultindices/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/defaultindices/difference(from:by:))
- [func formIndex(before: inout DefaultIndices<Elements>.Index)](/documentation/swift/defaultindices/formindex(before:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/defaultindices/formindex(before:)-6w7lf)
- [func index(before: DefaultIndices<Elements>.Index) -> DefaultIndices<Elements>.Index](/documentation/swift/defaultindices/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/defaultindices/joined(separator:)-5do0s)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/defaultindices/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/defaultindices/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/defaultindices/lastindex(where:))
- [func popLast() -> Self.Element?](/documentation/swift/defaultindices/poplast())
- [func removeLast() -> Self.Element](/documentation/swift/defaultindices/removelast())
- [func removeLast(Int)](/documentation/swift/defaultindices/removelast(_:))
- [Collection Implementations](/documentation/swift/defaultindices/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/defaultindices/count)
- [var endIndex: DefaultIndices<Elements>.Index](/documentation/swift/defaultindices/endindex)
- [var first: Self.Element?](/documentation/swift/defaultindices/first)
- [var indices: DefaultIndices<Elements>.Indices](/documentation/swift/defaultindices/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/defaultindices/isempty)
- [var startIndex: DefaultIndices<Elements>.Index](/documentation/swift/defaultindices/startindex)
- [var underestimatedCount: Int](/documentation/swift/defaultindices/underestimatedcount)

###### Instance Methods

- [func distance(from: DefaultIndices<Elements>.Index, to: DefaultIndices<Elements>.Index) -> Int](/documentation/swift/defaultindices/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/defaultindices/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/defaultindices/dropfirst(_:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/defaultindices/droplast(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/defaultindices/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/defaultindices/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/defaultindices/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/defaultindices/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout DefaultIndices<Elements>.Index)](/documentation/swift/defaultindices/formindex(after:))
- [func index(DefaultIndices<Elements>.Index, offsetBy: Int) -> DefaultIndices<Elements>.Index](/documentation/swift/defaultindices/index(_:offsetby:))
- [func index(DefaultIndices<Elements>.Index, offsetBy: Int, limitedBy: DefaultIndices<Elements>.Index) -> DefaultIndices<Elements>.Index?](/documentation/swift/defaultindices/index(_:offsetby:limitedby:))
- [func index(after: DefaultIndices<Elements>.Index) -> DefaultIndices<Elements>.Index](/documentation/swift/defaultindices/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/defaultindices/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/defaultindices/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/defaultindices/indices(where:))
- [func makeIterator() -> IndexingIterator<Self>](/documentation/swift/defaultindices/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/defaultindices/map(_:)-5p6p7)
- [func popFirst() -> Self.Element?](/documentation/swift/defaultindices/popfirst())
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/defaultindices/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/defaultindices/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/defaultindices/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/defaultindices/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/defaultindices/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/defaultindices/randomelement(using:))
- [func removeFirst() -> Self.Element](/documentation/swift/defaultindices/removefirst())
- [func removeFirst(Int)](/documentation/swift/defaultindices/removefirst(_:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/defaultindices/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/defaultindices/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/defaultindices/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/defaultindices/suffix(_:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/defaultindices/suffix(from:))

###### Subscripts

- [subscript(DefaultIndices<Elements>.Index) -> Elements.Index](/documentation/swift/defaultindices/subscript(_:)-1grsk)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/defaultindices/subscript(_:)-392od)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/defaultindices/subscript(_:)-4ala2)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/defaultindices/subscript(_:)-4h7sp)
- [subscript(Range<DefaultIndices<Elements>.Index>) -> DefaultIndices<Elements>](/documentation/swift/defaultindices/subscript(_:)-8o3ct)

###### Type Aliases

- [DefaultIndices.Index](/documentation/swift/defaultindices/index)
- [DefaultIndices.Indices](/documentation/swift/defaultindices/indices-swift.typealias)
- [DefaultIndices.Iterator](/documentation/swift/defaultindices/iterator)
- [DefaultIndices.SubSequence](/documentation/swift/defaultindices/subsequence)
- [Sequence Implementations](/documentation/swift/defaultindices/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/defaultindices/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/defaultindices/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/defaultindices/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/defaultindices/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/defaultindices/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/defaultindices/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/defaultindices/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/defaultindices/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/defaultindices/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/defaultindices/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/defaultindices/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/defaultindices/flatmap(_:)-6chvc)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/defaultindices/flatmap(_:)-i3m3)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/defaultindices/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/defaultindices/joined())
- [func joined(separator: String) -> String](/documentation/swift/defaultindices/joined(separator:)-1ckn9)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/defaultindices/joined(separator:)-7ubfv)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/defaultindices/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/defaultindices/lexicographicallyprecedes(_:by:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/defaultindices/map(_:)-9jno1)
- [func max() -> Self.Element?](/documentation/swift/defaultindices/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/defaultindices/max(by:))
- [func min() -> Self.Element?](/documentation/swift/defaultindices/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/defaultindices/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/defaultindices/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/defaultindices/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/defaultindices/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/defaultindices/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/defaultindices/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/defaultindices/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/defaultindices/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/defaultindices/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/defaultindices/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/defaultindices/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [DefaultIndices.Element](/documentation/swift/defaultindices/element)

##### Indices and Iterators

- [IteratorSequence](/documentation/swift/iteratorsequence)

###### Initializers

- [init(Base)](/documentation/swift/iteratorsequence/init(_:))

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/iteratorsequence/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Base.Element?](/documentation/swift/iteratorsequence/next())

###### Type Aliases

- [IteratorSequence.Element](/documentation/swift/iteratorsequence/element)
- [Sequence Implementations](/documentation/swift/iteratorsequence/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/iteratorsequence/lazy)
- [var underestimatedCount: Int](/documentation/swift/iteratorsequence/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/iteratorsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/iteratorsequence/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/iteratorsequence/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/iteratorsequence/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/iteratorsequence/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/iteratorsequence/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/iteratorsequence/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/iteratorsequence/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/iteratorsequence/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/iteratorsequence/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/iteratorsequence/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/iteratorsequence/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/iteratorsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/iteratorsequence/flatmap(_:)-1o4bm)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/iteratorsequence/flatmap(_:)-2tee)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/iteratorsequence/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/iteratorsequence/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/iteratorsequence/joined(separator:)-2g7pm)
- [func joined(separator: String) -> String](/documentation/swift/iteratorsequence/joined(separator:)-4ve6o)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/iteratorsequence/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/iteratorsequence/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/iteratorsequence/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/iteratorsequence/map(_:))
- [func max() -> Self.Element?](/documentation/swift/iteratorsequence/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/iteratorsequence/max(by:))
- [func min() -> Self.Element?](/documentation/swift/iteratorsequence/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/iteratorsequence/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/iteratorsequence/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/iteratorsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/iteratorsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/iteratorsequence/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/iteratorsequence/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/iteratorsequence/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/iteratorsequence/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/iteratorsequence/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/iteratorsequence/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/iteratorsequence/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/iteratorsequence/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/iteratorsequence/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/iteratorsequence/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/iteratorsequence/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/iteratorsequence/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [IteratorSequence.Iterator](/documentation/swift/iteratorsequence/iterator)
- [IndexingIterator](/documentation/swift/indexingiterator)

###### Type Aliases

- [IndexingIterator.SubSequence](/documentation/swift/indexingiterator/subsequence)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/indexingiterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Elements.Element?](/documentation/swift/indexingiterator/next())

###### Type Aliases

- [IndexingIterator.Element](/documentation/swift/indexingiterator/element)
- [Sequence Implementations](/documentation/swift/indexingiterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/indexingiterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/indexingiterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/indexingiterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/indexingiterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/indexingiterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/indexingiterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/indexingiterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/indexingiterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/indexingiterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/indexingiterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/indexingiterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/indexingiterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/indexingiterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/indexingiterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/indexingiterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/indexingiterator/flatmap(_:)-56mad)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/indexingiterator/flatmap(_:)-6ahgc)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/indexingiterator/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/indexingiterator/joined())
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/indexingiterator/joined(separator:)-1nha1)
- [func joined(separator: String) -> String](/documentation/swift/indexingiterator/joined(separator:)-72ztj)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/indexingiterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/indexingiterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/indexingiterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/indexingiterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/indexingiterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/indexingiterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/indexingiterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/indexingiterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/indexingiterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/indexingiterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/indexingiterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/indexingiterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/indexingiterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/indexingiterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/indexingiterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/indexingiterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/indexingiterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/indexingiterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/indexingiterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/indexingiterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/indexingiterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/indexingiterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/indexingiterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [IndexingIterator.Iterator](/documentation/swift/indexingiterator/iterator)
- [EnumeratedIterator](/documentation/swift/enumeratediterator)
- [SetIterator](/documentation/swift/setiterator)
- [StrideThroughIterator](/documentation/swift/stridethroughiterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/stridethroughiterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/stridethroughiterator/next())
- [StrideToIterator](/documentation/swift/stridetoiterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/stridetoiterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/stridetoiterator/next())

##### Deprecated

- [DictionaryIndex](/documentation/swift/dictionaryindex)
- [SetIndex](/documentation/swift/setindex)
- [CountableClosedRange](/documentation/swift/countableclosedrange)
- [CountablePartialRangeFrom](/documentation/swift/countablepartialrangefrom)
- [CountableRange](/documentation/swift/countablerange)
- [Managed Buffers](/documentation/swift/managed-buffers)

##### Buffer Implementation

- [ManagedBuffer](/documentation/swift/managedbuffer)

###### Instance Properties

- [var capacity: Int](/documentation/swift/managedbuffer/capacity)
- [var header: Header](/documentation/swift/managedbuffer/header)

###### Instance Methods

- [func withUnsafeMutablePointerToElements<E, R>((UnsafeMutablePointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbuffer/withunsafemutablepointertoelements(_:))
- [func withUnsafeMutablePointerToHeader<E, R>((UnsafeMutablePointer<Header>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbuffer/withunsafemutablepointertoheader(_:))
- [func withUnsafeMutablePointers<E, R>((UnsafeMutablePointer<Header>, UnsafeMutablePointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbuffer/withunsafemutablepointers(_:))

###### Type Methods

- [class func create(minimumCapacity: Int, makingHeaderWith: (ManagedBuffer<Header, Element>) throws -> Header) rethrows -> ManagedBuffer<Header, Element>](/documentation/swift/managedbuffer/create(minimumcapacity:makingheaderwith:))
- [ManagedBufferPointer](/documentation/swift/managedbufferpointer)

###### Creating a Buffer

- [init(bufferClass: AnyClass, minimumCapacity: Int, makingHeaderWith: (AnyObject, (AnyObject) -> Int) throws -> Header) rethrows](/documentation/swift/managedbufferpointer/init(bufferclass:minimumcapacity:makingheaderwith:))
- [init(unsafeBufferObject: AnyObject)](/documentation/swift/managedbufferpointer/init(unsafebufferobject:))

###### Inspecting a Buffer

- [var capacity: Int](/documentation/swift/managedbufferpointer/capacity)
- [var header: Header](/documentation/swift/managedbufferpointer/header)
- [var buffer: AnyObject](/documentation/swift/managedbufferpointer/buffer)
- [func isUniqueReference() -> Bool](/documentation/swift/managedbufferpointer/isuniquereference())

###### Accessing Buffer Contents

- [func withUnsafeMutablePointerToElements<E, R>((UnsafeMutablePointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbufferpointer/withunsafemutablepointertoelements(_:))
- [func withUnsafeMutablePointerToHeader<E, R>((UnsafeMutablePointer<Header>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbufferpointer/withunsafemutablepointertoheader(_:))
- [func withUnsafeMutablePointers<E, R>((UnsafeMutablePointer<Header>, UnsafeMutablePointer<Element>) throws(E) -> R) throws(E) -> R](/documentation/swift/managedbufferpointer/withunsafemutablepointers(_:))

###### Comparing Buffers

- [static func != (Self, Self) -> Bool](/documentation/swift/managedbufferpointer/!=(_:_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/managedbufferpointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/managedbufferpointer/!=(_:_:))
- [static func == (ManagedBufferPointer<Header, Element>, ManagedBufferPointer<Header, Element>) -> Bool](/documentation/swift/managedbufferpointer/==(_:_:))

##### Uniqueness Checking

- [func isKnownUniquelyReferenced<T>(inout T?) -> Bool](/documentation/swift/isknownuniquelyreferenced(_:)-98zpp)
- [func isKnownUniquelyReferenced<T>(inout T) -> Bool](/documentation/swift/isknownuniquelyreferenced(_:)-5kvtu)
- [Time](/documentation/swift/time-and-duration)

#### Clocks

- [Clock](/documentation/swift/clock)

##### Associated Types

- [Duration](/documentation/swift/clock/duration)
- [Instant](/documentation/swift/clock/instant)

##### Instance Properties

- [var minimumResolution: Self.Duration](/documentation/swift/clock/minimumresolution)
- [var now: Self.Instant](/documentation/swift/clock/now)

##### Instance Methods

- [func measure(() throws -> Void) rethrows -> Self.Instant.Duration](/documentation/swift/clock/measure(_:))
- [func measure(isolation: isolated (any Actor)?, () async throws -> Void) async rethrows -> Self.Instant.Duration](/documentation/swift/clock/measure(isolation:_:))
- [func sleep(for: Self.Instant.Duration, tolerance: Self.Instant.Duration?) async throws](/documentation/swift/clock/sleep(for:tolerance:))
- [func sleep(until: Self.Instant, tolerance: Self.Instant.Duration?) async throws](/documentation/swift/clock/sleep(until:tolerance:))

##### Type Properties

- [static var continuous: ContinuousClock](/documentation/swift/clock/continuous)
- [static var suspending: SuspendingClock](/documentation/swift/clock/suspending)
- [ContinuousClock](/documentation/swift/continuousclock)

##### Structures

- [ContinuousClock.Instant](/documentation/swift/continuousclock/instant)

###### Operators

- [static func + (ContinuousClock.Instant, Duration) -> ContinuousClock.Instant](/documentation/swift/continuousclock/instant/+(_:_:))
- [static func += (inout ContinuousClock.Instant, Duration)](/documentation/swift/continuousclock/instant/+=(_:_:))
- [static func - (ContinuousClock.Instant, ContinuousClock.Instant) -> Duration](/documentation/swift/continuousclock/instant/-(_:_:)-4vp5e)
- [static func - (ContinuousClock.Instant, Duration) -> ContinuousClock.Instant](/documentation/swift/continuousclock/instant/-(_:_:)-8g3es)
- [static func -= (inout ContinuousClock.Instant, Duration)](/documentation/swift/continuousclock/instant/-=(_:_:))

###### Type Properties

- [static var now: ContinuousClock.Instant](/documentation/swift/continuousclock/instant/now)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/continuousclock/instant/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/continuousclock/instant/'...(_:)-1sif9)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/continuousclock/instant/'...(_:)-6i99j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/continuousclock/instant/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/continuousclock/instant/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/continuousclock/instant/'.._(_:_:))
- [static func < (ContinuousClock.Instant, ContinuousClock.Instant) -> Bool](/documentation/swift/continuousclock/instant/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/continuousclock/instant/_(_:_:)-7pn1h)
- [static func <= (Self, Self) -> Bool](/documentation/swift/continuousclock/instant/_=(_:_:)-1inkc)
- [static func >= (Self, Self) -> Bool](/documentation/swift/continuousclock/instant/_=(_:_:)-3yi5q)
- [Decodable Implementations](/documentation/swift/continuousclock/instant/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/continuousclock/instant/init(from:))
- [Encodable Implementations](/documentation/swift/continuousclock/instant/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/continuousclock/instant/encode(to:))
- [Equatable Implementations](/documentation/swift/continuousclock/instant/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/continuousclock/instant/!=(_:_:))
- [static func == (ContinuousClock.Instant, ContinuousClock.Instant) -> Bool](/documentation/swift/continuousclock/instant/==(_:_:))
- [Hashable Implementations](/documentation/swift/continuousclock/instant/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/continuousclock/instant/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/continuousclock/instant/hash(into:))
- [InstantProtocol Implementations](/documentation/swift/continuousclock/instant/instantprotocol-implementations)

###### Instance Methods

- [func advanced(by: Duration) -> ContinuousClock.Instant](/documentation/swift/continuousclock/instant/advanced(by:))
- [func duration(to: ContinuousClock.Instant) -> Duration](/documentation/swift/continuousclock/instant/duration(to:))

###### Type Aliases

- [ContinuousClock.Instant.Duration](/documentation/swift/continuousclock/instant/duration)

##### Initializers

- [init()](/documentation/swift/continuousclock/init())

##### Instance Properties

- [var systemEpoch: ContinuousClock.Instant](/documentation/swift/continuousclock/systemepoch)

##### Type Properties

- [static var now: ContinuousClock.Instant](/documentation/swift/continuousclock/now-swift.type.property)

##### Default Implementations

- [Clock Implementations](/documentation/swift/continuousclock/clock-implementations)

###### Instance Properties

- [var minimumResolution: Duration](/documentation/swift/continuousclock/minimumresolution)
- [var now: ContinuousClock.Instant](/documentation/swift/continuousclock/now-swift.property)

###### Instance Methods

- [func measure(() throws -> Void) rethrows -> Self.Instant.Duration](/documentation/swift/continuousclock/measure(_:))
- [func measure(isolation: isolated (any Actor)?, () async throws -> Void) async rethrows -> Self.Instant.Duration](/documentation/swift/continuousclock/measure(isolation:_:))
- [func sleep(for: Self.Instant.Duration, tolerance: Self.Instant.Duration?) async throws](/documentation/swift/continuousclock/sleep(for:tolerance:))
- [func sleep(until: ContinuousClock.Instant, tolerance: Duration?) async throws](/documentation/swift/continuousclock/sleep(until:tolerance:))

###### Type Aliases

- [ContinuousClock.Duration](/documentation/swift/continuousclock/duration)

###### Type Properties

- [static var continuous: ContinuousClock](/documentation/swift/continuousclock/continuous)
- [SuspendingClock](/documentation/swift/suspendingclock)

##### Structures

- [SuspendingClock.Instant](/documentation/swift/suspendingclock/instant)

###### Operators

- [static func + (SuspendingClock.Instant, Duration) -> SuspendingClock.Instant](/documentation/swift/suspendingclock/instant/+(_:_:))
- [static func += (inout SuspendingClock.Instant, Duration)](/documentation/swift/suspendingclock/instant/+=(_:_:))
- [static func - (SuspendingClock.Instant, Duration) -> SuspendingClock.Instant](/documentation/swift/suspendingclock/instant/-(_:_:)-7hsct)
- [static func - (SuspendingClock.Instant, SuspendingClock.Instant) -> Duration](/documentation/swift/suspendingclock/instant/-(_:_:)-883fd)
- [static func -= (inout SuspendingClock.Instant, Duration)](/documentation/swift/suspendingclock/instant/-=(_:_:))

###### Type Properties

- [static var now: SuspendingClock.Instant](/documentation/swift/suspendingclock/instant/now)

###### Default Implementations

- [Comparable Implementations](/documentation/swift/suspendingclock/instant/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/suspendingclock/instant/'...(_:)-79vop)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/suspendingclock/instant/'...(_:)-9qpet)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/suspendingclock/instant/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/suspendingclock/instant/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/suspendingclock/instant/'.._(_:_:))
- [static func < (SuspendingClock.Instant, SuspendingClock.Instant) -> Bool](/documentation/swift/suspendingclock/instant/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/suspendingclock/instant/_(_:_:)-877n2)
- [static func >= (Self, Self) -> Bool](/documentation/swift/suspendingclock/instant/_=(_:_:)-4o9y7)
- [static func <= (Self, Self) -> Bool](/documentation/swift/suspendingclock/instant/_=(_:_:)-897gt)
- [Decodable Implementations](/documentation/swift/suspendingclock/instant/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/suspendingclock/instant/init(from:))
- [Encodable Implementations](/documentation/swift/suspendingclock/instant/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/suspendingclock/instant/encode(to:))
- [Equatable Implementations](/documentation/swift/suspendingclock/instant/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/suspendingclock/instant/!=(_:_:))
- [static func == (SuspendingClock.Instant, SuspendingClock.Instant) -> Bool](/documentation/swift/suspendingclock/instant/==(_:_:))
- [Hashable Implementations](/documentation/swift/suspendingclock/instant/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/suspendingclock/instant/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/suspendingclock/instant/hash(into:))
- [InstantProtocol Implementations](/documentation/swift/suspendingclock/instant/instantprotocol-implementations)

###### Instance Methods

- [func advanced(by: Duration) -> SuspendingClock.Instant](/documentation/swift/suspendingclock/instant/advanced(by:))
- [func duration(to: SuspendingClock.Instant) -> Duration](/documentation/swift/suspendingclock/instant/duration(to:))

###### Type Aliases

- [SuspendingClock.Instant.Duration](/documentation/swift/suspendingclock/instant/duration)

##### Initializers

- [init()](/documentation/swift/suspendingclock/init())

##### Instance Properties

- [var systemEpoch: SuspendingClock.Instant](/documentation/swift/suspendingclock/systemepoch)

##### Type Properties

- [static var now: SuspendingClock.Instant](/documentation/swift/suspendingclock/now-swift.type.property)

##### Default Implementations

- [Clock Implementations](/documentation/swift/suspendingclock/clock-implementations)

###### Instance Properties

- [var minimumResolution: Duration](/documentation/swift/suspendingclock/minimumresolution)
- [var now: SuspendingClock.Instant](/documentation/swift/suspendingclock/now-swift.property)

###### Instance Methods

- [func measure(() throws -> Void) rethrows -> Self.Instant.Duration](/documentation/swift/suspendingclock/measure(_:))
- [func measure(isolation: isolated (any Actor)?, () async throws -> Void) async rethrows -> Self.Instant.Duration](/documentation/swift/suspendingclock/measure(isolation:_:))
- [func sleep(for: Self.Instant.Duration, tolerance: Self.Instant.Duration?) async throws](/documentation/swift/suspendingclock/sleep(for:tolerance:))
- [func sleep(until: SuspendingClock.Instant, tolerance: Duration?) async throws](/documentation/swift/suspendingclock/sleep(until:tolerance:))

###### Type Aliases

- [SuspendingClock.Duration](/documentation/swift/suspendingclock/duration)

###### Type Properties

- [static var suspending: SuspendingClock](/documentation/swift/suspendingclock/suspending)

#### Durations

- [Duration](/documentation/swift/duration)

##### Creating a duration

- [init(secondsComponent: Int64, attosecondsComponent: Int64)](/documentation/swift/duration/init(secondscomponent:attosecondscomponent:))
- [static func seconds<T>(T) -> Duration](/documentation/swift/duration/seconds(_:)-311cx)
- [static func seconds(Double) -> Duration](/documentation/swift/duration/seconds(_:)-5ifzr)
- [static func milliseconds<T>(T) -> Duration](/documentation/swift/duration/milliseconds(_:)-1w328)
- [static func milliseconds(Double) -> Duration](/documentation/swift/duration/milliseconds(_:)-7ledy)
- [static func microseconds(Double) -> Duration](/documentation/swift/duration/microseconds(_:)-1zzcc)
- [static func microseconds<T>(T) -> Duration](/documentation/swift/duration/microseconds(_:)-2majo)

##### Accessing a duration’s components

- [var components: (seconds: Int64, attoseconds: Int64)](/documentation/swift/duration/components)

##### Performing calculations on durations

- [static func * (Duration, Double) -> Duration](/documentation/swift/duration/*(_:_:)-3d469)
- [static func *= <T>(inout Duration, T)](/documentation/swift/duration/*=(_:_:))
- [static func / (Duration, Double) -> Duration](/documentation/swift/duration/_(_:_:)-7fkmh)
- [static func /= (inout Duration, Double)](/documentation/swift/duration/_=(_:_:)-10rgx)
- [static func /= <T>(inout Duration, T)](/documentation/swift/duration/_=(_:_:)-1qfv3)

##### Formatting a duration

- [func formatted() -> String](/documentation/swift/duration/formatted())
- [func formatted<S>(S) -> S.FormatOutput](/documentation/swift/duration/formatted(_:))
- [Duration.TimeFormatStyle](/documentation/swift/duration/timeformatstyle)

###### Creating a time format style

- [init(pattern: Duration.TimeFormatStyle.Pattern, locale: Locale)](/documentation/swift/duration/timeformatstyle/init(pattern:locale:))
- [Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct)

###### Creating a pattern

- [static func hourMinute(padHourToLength: Int, roundSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminute(padhourtolength:roundseconds:))
- [static func hourMinuteSecond(padHourToLength: Int, fractionalSecondsLength: Int, roundFractionalSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminutesecond(padhourtolength:fractionalsecondslength:roundfractionalseconds:))
- [static func minuteSecond(padMinuteToLength: Int, fractionalSecondsLength: Int, roundFractionalSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/minutesecond(padminutetolength:fractionalsecondslength:roundfractionalseconds:))

###### Using common patterns

- [static var hourMinute: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminute)
- [static var hourMinuteSecond: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminutesecond)
- [static var minuteSecond: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/minutesecond)

###### Formatting a duration

- [func format(Duration) -> String](/documentation/swift/duration/timeformatstyle/format(_:))

###### Formatting a duration as an attributed string

- [var attributed: Duration.TimeFormatStyle.Attributed](/documentation/swift/duration/timeformatstyle/attributed-swift.property)
- [Duration.TimeFormatStyle.Attributed](/documentation/swift/duration/timeformatstyle/attributed-swift.struct)

###### Formatting a duration

- [func format(Duration) -> AttributedString](/documentation/swift/duration/timeformatstyle/attributed-swift.struct/format(_:))

###### Working with locales

- [func locale(Locale) -> Duration.TimeFormatStyle.Attributed](/documentation/swift/duration/timeformatstyle/attributed-swift.struct/locale(_:))

###### Instance Methods

- [func grouping(NumberFormatStyleConfiguration.Grouping) -> Duration.TimeFormatStyle.Attributed](/documentation/swift/duration/timeformatstyle/attributed-swift.struct/grouping(_:))

###### Subscripts

- [subscript<T>(dynamicMember _: WritableKeyPath<Duration.TimeFormatStyle, T>) -> T](/documentation/swift/duration/timeformatstyle/attributed-swift.struct/subscript(dynamicmember:)-32lo0)
- [subscript<T>(dynamicMember _: KeyPath<Duration.TimeFormatStyle, T>) -> T](/documentation/swift/duration/timeformatstyle/attributed-swift.struct/subscript(dynamicmember:)-8cksi)

###### Using a style pattern

- [var pattern: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.property)
- [Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct)

###### Creating a pattern

- [static func hourMinute(padHourToLength: Int, roundSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminute(padhourtolength:roundseconds:))
- [static func hourMinuteSecond(padHourToLength: Int, fractionalSecondsLength: Int, roundFractionalSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminutesecond(padhourtolength:fractionalsecondslength:roundfractionalseconds:))
- [static func minuteSecond(padMinuteToLength: Int, fractionalSecondsLength: Int, roundFractionalSeconds: FloatingPointRoundingRule) -> Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/minutesecond(padminutetolength:fractionalsecondslength:roundfractionalseconds:))

###### Using common patterns

- [static var hourMinute: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminute)
- [static var hourMinuteSecond: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/hourminutesecond)
- [static var minuteSecond: Duration.TimeFormatStyle.Pattern](/documentation/swift/duration/timeformatstyle/pattern-swift.struct/minutesecond)

###### Working with locales

- [var locale: Locale](/documentation/swift/duration/timeformatstyle/locale)
- [func locale(Locale) -> Duration.TimeFormatStyle](/documentation/swift/duration/timeformatstyle/locale(_:))

###### Instance Properties

- [var grouping: NumberFormatStyleConfiguration.Grouping](/documentation/swift/duration/timeformatstyle/grouping)

###### Instance Methods

- [func grouping(NumberFormatStyleConfiguration.Grouping) -> Duration.TimeFormatStyle](/documentation/swift/duration/timeformatstyle/grouping(_:))
- [Duration.UnitsFormatStyle](/documentation/swift/duration/unitsformatstyle)

###### Creating a units format style

- [init(allowedUnits: Set<Duration.UnitsFormatStyle.Unit>, width: Duration.UnitsFormatStyle.UnitWidth, maximumUnitCount: Int?, zeroValueUnits: Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy, valueLength: Int?, fractionalPart: Duration.UnitsFormatStyle.FractionalPartDisplayStrategy)](/documentation/swift/duration/unitsformatstyle/init(allowedunits:width:maximumunitcount:zerovalueunits:valuelength:fractionalpart:))
- [init<ValueRange>(allowedUnits: Set<Duration.UnitsFormatStyle.Unit>, width: Duration.UnitsFormatStyle.UnitWidth, maximumUnitCount: Int?, zeroValueUnits: Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy, valueLengthLimits: ValueRange, fractionalPart: Duration.UnitsFormatStyle.FractionalPartDisplayStrategy)](/documentation/swift/duration/unitsformatstyle/init(allowedunits:width:maximumunitcount:zerovalueunits:valuelengthlimits:fractionalpart:))

###### Formatting a duration

- [func format(Duration) -> String](/documentation/swift/duration/unitsformatstyle/format(_:))

###### Formatting a duration as an attributed string

- [var attributed: Duration.UnitsFormatStyle.Attributed](/documentation/swift/duration/unitsformatstyle/attributed-swift.property)
- [Duration.UnitsFormatStyle.Attributed](/documentation/swift/duration/unitsformatstyle/attributed-swift.struct)

###### Formatting a duration

- [func format(Duration) -> AttributedString](/documentation/swift/duration/unitsformatstyle/attributed-swift.struct/format(_:))

###### Working with locales

- [func locale(Locale) -> Duration.UnitsFormatStyle.Attributed](/documentation/swift/duration/unitsformatstyle/attributed-swift.struct/locale(_:))

###### Subscripts

- [subscript<T>(dynamicMember _: KeyPath<Duration.UnitsFormatStyle, T>) -> T](/documentation/swift/duration/unitsformatstyle/attributed-swift.struct/subscript(dynamicmember:)-57dpz)
- [subscript<T>(dynamicMember _: WritableKeyPath<Duration.UnitsFormatStyle, T>) -> T](/documentation/swift/duration/unitsformatstyle/attributed-swift.struct/subscript(dynamicmember:)-65x7d)

###### Working with units

- [var allowedUnits: Set<Duration.UnitsFormatStyle.Unit>](/documentation/swift/duration/unitsformatstyle/allowedunits)
- [Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit)

###### Duration units

- [static var hours: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/hours)
- [static var minutes: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/minutes)
- [static var seconds: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/seconds)
- [static var milliseconds: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/milliseconds)
- [static var microseconds: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/microseconds)
- [static var nanoseconds: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/nanoseconds)

###### Type Properties

- [static var days: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/days)
- [static var weeks: Duration.UnitsFormatStyle.Unit](/documentation/swift/duration/unitsformatstyle/unit/weeks)
- [var maximumUnitCount: Int?](/documentation/swift/duration/unitsformatstyle/maximumunitcount)
- [var valueLengthLimits: Range<Int>?](/documentation/swift/duration/unitsformatstyle/valuelengthlimits)

###### Working with unit widths

- [var unitWidth: Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.property)
- [Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.struct)

###### Duration unit widths

- [static var abbreviated: Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.struct/abbreviated)
- [static var condensedAbbreviated: Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.struct/condensedabbreviated)
- [static var narrow: Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.struct/narrow)
- [static var wide: Duration.UnitsFormatStyle.UnitWidth](/documentation/swift/duration/unitsformatstyle/unitwidth-swift.struct/wide)

###### Working with zero values

- [var zeroValueUnitsDisplay: Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy](/documentation/swift/duration/unitsformatstyle/zerovalueunitsdisplay)
- [Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy](/documentation/swift/duration/unitsformatstyle/zerovalueunitsdisplaystrategy)

###### Using common strategies

- [static var hide: Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy](/documentation/swift/duration/unitsformatstyle/zerovalueunitsdisplaystrategy/hide)
- [static func show(length: Int) -> Duration.UnitsFormatStyle.ZeroValueUnitsDisplayStrategy](/documentation/swift/duration/unitsformatstyle/zerovalueunitsdisplaystrategy/show(length:))

###### Working with fractional values

- [var fractionalPartDisplay: Duration.UnitsFormatStyle.FractionalPartDisplayStrategy](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplay)
- [Duration.UnitsFormatStyle.FractionalPartDisplayStrategy](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy)

###### Creating a fractional part display strategy

- [init<Range>(lengthLimits: Range, roundingRule: FloatingPointRoundingRule, roundingIncrement: Double?)](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/init(lengthlimits:roundingrule:roundingincrement:))

###### Using common strategies

- [static var hide: Duration.UnitsFormatStyle.FractionalPartDisplayStrategy](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/hide)
- [static func hide(rounded: FloatingPointRoundingRule) -> Duration.UnitsFormatStyle.FractionalPartDisplayStrategy](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/hide(rounded:))
- [static func show(length: Int, rounded: FloatingPointRoundingRule, increment: Double?) -> Duration.UnitsFormatStyle.FractionalPartDisplayStrategy](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/show(length:rounded:increment:))

###### Working with strategy properties

- [var minimumLength: Int](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/minimumlength)
- [var maximumLength: Int](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/maximumlength)
- [var roundingIncrement: Double?](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/roundingincrement)
- [var roundingRule: FloatingPointRoundingRule](/documentation/swift/duration/unitsformatstyle/fractionalpartdisplaystrategy/roundingrule)

###### Working with locales

- [var locale: Locale](/documentation/swift/duration/unitsformatstyle/locale)
- [func locale(Locale) -> Duration.UnitsFormatStyle](/documentation/swift/duration/unitsformatstyle/locale(_:))

##### Initializers

- [init(attoseconds: Int128)](/documentation/swift/duration/init(attoseconds:))

##### Instance Properties

- [var attoseconds: Int128](/documentation/swift/duration/attoseconds)

##### Type Methods

- [static func nanoseconds(Double) -> Duration](/documentation/swift/duration/nanoseconds(_:)-1cg32)
- [static func nanoseconds<T>(T) -> Duration](/documentation/swift/duration/nanoseconds(_:)-8nsaz)

##### Default Implementations

- [AdditiveArithmetic Implementations](/documentation/swift/duration/additivearithmetic-implementations)

###### Operators

- [static func + (Self) -> Self](/documentation/swift/duration/+(_:))
- [static func + (Duration, Duration) -> Duration](/documentation/swift/duration/+(_:_:))
- [static func += (inout Duration, Duration)](/documentation/swift/duration/+=(_:_:))
- [static func += (inout Self, Self)](/documentation/swift/duration/+=(_:_:)-4dm12)
- [static func - (Duration, Duration) -> Duration](/documentation/swift/duration/-(_:_:))
- [static func -= (inout Duration, Duration)](/documentation/swift/duration/-=(_:_:))
- [static func -= (inout Self, Self)](/documentation/swift/duration/-=(_:_:)-8vzo7)

###### Type Properties

- [static var zero: Duration](/documentation/swift/duration/zero)
- [AtomicRepresentable Implementations](/documentation/swift/duration/atomicrepresentable-implementations)

###### Type Aliases

- [Duration.AtomicRepresentation](/documentation/swift/duration/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Duration.AtomicRepresentation) -> Duration](/documentation/swift/duration/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Duration) -> Duration.AtomicRepresentation](/documentation/swift/duration/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/duration/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/duration/'...(_:)-1a3h)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/duration/'...(_:)-9h7ny)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/duration/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/duration/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/duration/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/duration/_(_:_:)-1710k)
- [static func < (Duration, Duration) -> Bool](/documentation/swift/duration/_(_:_:)-ijui)
- [static func <= (Self, Self) -> Bool](/documentation/swift/duration/_=(_:_:)-2hktt)
- [static func >= (Self, Self) -> Bool](/documentation/swift/duration/_=(_:_:)-6wrs8)
- [CustomStringConvertible Implementations](/documentation/swift/duration/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/duration/description)
- [Decodable Implementations](/documentation/swift/duration/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/duration/init(from:))
- [DurationProtocol Implementations](/documentation/swift/duration/durationprotocol-implementations)

###### Operators

- [static func * <T>(Duration, T) -> Duration](/documentation/swift/duration/*(_:_:)-p8xl)
- [static func *= (inout Self, Int)](/documentation/swift/duration/*=(_:_:)-6w9sx)
- [static func / (Duration, Duration) -> Double](/documentation/swift/duration/_(_:_:)-2b3df)
- [static func / <T>(Duration, T) -> Duration](/documentation/swift/duration/_(_:_:)-9n0bj)
- [static func /= (inout Self, Int)](/documentation/swift/duration/_=(_:_:)-6ggas)
- [Encodable Implementations](/documentation/swift/duration/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/duration/encode(to:))
- [Equatable Implementations](/documentation/swift/duration/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/duration/!=(_:_:))
- [static func == (Duration, Duration) -> Bool](/documentation/swift/duration/==(_:_:))
- [Hashable Implementations](/documentation/swift/duration/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/duration/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/duration/hash(into:))
- [DurationProtocol](/documentation/swift/durationprotocol)

##### Operators

- [static func * (Self, Int) -> Self](/documentation/swift/durationprotocol/*(_:_:))
- [static func *= (inout Self, Int)](/documentation/swift/durationprotocol/*=(_:_:))

###### DurationProtocol Implementations

- [static func *= (inout Self, Int)](/documentation/swift/durationprotocol/*=(_:_:)-7pkfj)
- [static func / (Self, Self) -> Double](/documentation/swift/durationprotocol/_(_:_:)-4x9r1)
- [static func / (Self, Int) -> Self](/documentation/swift/durationprotocol/_(_:_:)-6l82o)
- [static func /= (inout Self, Int)](/documentation/swift/durationprotocol/_=(_:_:))

###### DurationProtocol Implementations

- [static func /= (inout Self, Int)](/documentation/swift/durationprotocol/_=(_:_:)-53vlk)

#### Supporting Types

- [InstantProtocol](/documentation/swift/instantprotocol)

##### Associated Types

- [Duration](/documentation/swift/instantprotocol/duration)

##### Instance Methods

- [func advanced(by: Self.Duration) -> Self](/documentation/swift/instantprotocol/advanced(by:))
- [func duration(to: Self) -> Self.Duration](/documentation/swift/instantprotocol/duration(to:))

### Tools for Your Types

- [Basic Behaviors](/documentation/swift/basic-behaviors)

#### Equality and Ordering

- [Equatable](/documentation/swift/equatable)

##### Equatable Requirements

- [static func == (Self, Self) -> Bool](/documentation/swift/equatable/==(_:_:))

###### DistributedActor Implementations

- [static func == (Self, Self) -> Bool](/documentation/distributed/distributedactor/==(_:_:))

###### Equatable Implementations

- [static func == (Self, Self) -> Bool](/documentation/swift/equatable/==(_:_:)-1xq7p)
- [static func == (Self, Self) -> Bool](/documentation/swift/equatable/==(_:_:)-3ngto)
- [static func == (Self, Self) -> Bool](/documentation/swift/equatable/==(_:_:)-6673q)
- [static func == <Other>(Self, Other) -> Bool](/documentation/swift/equatable/==(_:_:)-7do7a)
- [static func == <RHS>(Self, RHS) -> Bool](/documentation/swift/equatable/==(_:_:)-7k1nz)
- [static func != (Self, Self) -> Bool](/documentation/swift/equatable/!=(_:_:))

##### Tuple Comparison

- [func == ((), ()) -> Bool](/documentation/swift/==(_:_:)-958in)
- [func == <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/==(_:_:)-2htbb)
- [func == <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/==(_:_:)-h88g)
- [func == <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/==(_:_:)-7lhq7)
- [func == <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/==(_:_:)-1hbor)
- [func == <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/==(_:_:)-1ud2a)
- [func == ((any (~Copyable & ~Escapable).Type)?, (any (~Copyable & ~Escapable).Type)?) -> Bool](/documentation/swift/==(_:_:)-9kf9y)
- [func != ((), ()) -> Bool](/documentation/swift/!=(_:_:)-18co7)
- [func != <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/!=(_:_:)-7er1l)
- [func != <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/!=(_:_:)-754t2)
- [func != <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/!=(_:_:)-7ao4l)
- [func != <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/!=(_:_:)-4fzl6)
- [func != <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/!=(_:_:)-3nrcc)
- [func != ((any (~Copyable & ~Escapable).Type)?, (any (~Copyable & ~Escapable).Type)?) -> Bool](/documentation/swift/!=(_:_:)-1mxms)

##### Pattern Matching

- [func ~= <T>(T, T) -> Bool](/documentation/swift/~=(_:_:))
- [Comparable](/documentation/swift/comparable)

##### Range Expressions

- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/comparable/'...(_:_:))
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/comparable/'...(_:)-6mvrh)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/comparable/'...(_:)-1quco)

##### Tuple Comparison

- [func < ((), ()) -> Bool](/documentation/swift/_(_:_:)-1b1cu)
- [func < <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/_(_:_:)-4ck5h)
- [func < <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/_(_:_:)-23151)
- [func < <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/_(_:_:)-6p1tf)
- [func < <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/_(_:_:)-3hhjy)
- [func < <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/_(_:_:)-8mgtp)
- [func <= ((), ()) -> Bool](/documentation/swift/_=(_:_:)-16p1e)
- [func <= <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/_=(_:_:)-3jpod)
- [func <= <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/_=(_:_:)-8u5uu)
- [func <= <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/_=(_:_:)-6kea2)
- [func <= <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/_=(_:_:)-1hzxz)
- [func <= <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/_=(_:_:)-7n746)
- [func > ((), ()) -> Bool](/documentation/swift/_(_:_:)-yktb)
- [func > <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/_(_:_:)-4xg09)
- [func > <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/_(_:_:)-7p512)
- [func > <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/_(_:_:)-5gb41)
- [func > <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/_(_:_:)-3ewuy)
- [func > <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/_(_:_:)-kqsy)
- [func >= ((), ()) -> Bool](/documentation/swift/_=(_:_:)-1ak1k)
- [func >= <A, B>((A, B), (A, B)) -> Bool](/documentation/swift/_=(_:_:)-6kwvw)
- [func >= <A, B, C>((A, B, C), (A, B, C)) -> Bool](/documentation/swift/_=(_:_:)-7p28b)
- [func >= <A, B, C, D>((A, B, C, D), (A, B, C, D)) -> Bool](/documentation/swift/_=(_:_:)-43xgn)
- [func >= <A, B, C, D, E>((A, B, C, D, E), (A, B, C, D, E)) -> Bool](/documentation/swift/_=(_:_:)-6i1ov)
- [func >= <A, B, C, D, E, F>((A, B, C, D, E, F), (A, B, C, D, E, F)) -> Bool](/documentation/swift/_=(_:_:)-1n7oc)

##### Operators

- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/comparable/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/comparable/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-8j02g)

###### Comparable Implementations

- [static func > <Other>(Self, Other) -> Bool](/documentation/swift/comparable/_(_:_:)-2lu7e)
- [static func > (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-7sv3e)
- [static func > (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-7yy2z)
- [static func > <RHS>(Self, RHS) -> Bool](/documentation/swift/comparable/_(_:_:)-91z6r)
- [static func > (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-uq3f)
- [static func < (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-9jp4d)

###### Comparable Implementations

- [static func < (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-2qz41)
- [static func < (Self, Self) -> Bool](/documentation/swift/comparable/_(_:_:)-8kchc)
- [static func < <RHS>(Self, RHS) -> Bool](/documentation/swift/comparable/_(_:_:)-8ogs5)
- [static func < <Other>(Self, Other) -> Bool](/documentation/swift/comparable/_(_:_:)-z2os)
- [static func >= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-4hu01)

###### Comparable Implementations

- [static func >= <RHS>(Self, RHS) -> Bool](/documentation/swift/comparable/_=(_:_:)-1eln1)
- [static func >= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-2htxd)
- [static func >= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-2nvou)
- [static func >= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-4d7sn)
- [static func >= <Other>(Self, Other) -> Bool](/documentation/swift/comparable/_=(_:_:)-6cgpr)
- [static func <= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-buc5)

###### Comparable Implementations

- [static func <= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-4c5w5)
- [static func <= <Other>(Self, Other) -> Bool](/documentation/swift/comparable/_=(_:_:)-7a44t)
- [static func <= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-7vu9w)
- [static func <= <RHS>(Self, RHS) -> Bool](/documentation/swift/comparable/_=(_:_:)-7yw8z)
- [static func <= (Self, Self) -> Bool](/documentation/swift/comparable/_=(_:_:)-8wgjd)
- [Identifiable](/documentation/swift/identifiable)

##### Specifying the Associated Type

- [ID](/documentation/swift/identifiable/id-swift.associatedtype)

##### Specifying the Identified Item

- [var id: Self.ID](/documentation/swift/identifiable/id-8t2ws)

###### Identifiable Implementations

- [var id: ObjectIdentifier](/documentation/swift/identifiable/id-97pgf)

#### Copying

- [Copyable](/documentation/swift/copyable)
- [BitwiseCopyable](/documentation/swift/bitwisecopyable)
- [Escapable](/documentation/swift/escapable)

#### Sets and Dictionaries

- [Hashable](/documentation/swift/hashable)

##### Providing a Hash Value

- [func hash(into: inout Hasher)](/documentation/swift/hashable/hash(into:))

###### DistributedActor Implementations

- [func hash(into: inout Hasher)](/documentation/distributed/distributedactor/hash(into:))

###### Hashable Implementations

- [func hash(into: inout Hasher)](/documentation/swift/hashable/hash(into:)-3gv4c)
- [func hash(into: inout Hasher)](/documentation/swift/hashable/hash(into:)-86617)

##### Deprecated

- [var hashValue: Int](/documentation/swift/hashable/hashvalue)
- [Hasher](/documentation/swift/hasher)

##### Creating a Hasher

- [init()](/documentation/swift/hasher/init())

##### Adding Values

- [func combine<H>(H)](/documentation/swift/hasher/combine(_:))
- [func combine(bytes: UnsafeRawBufferPointer)](/documentation/swift/hasher/combine(bytes:))

##### Finalizing a Hasher

- [func finalize() -> Int](/documentation/swift/hasher/finalize())

#### String Representation

- [CustomStringConvertible](/documentation/swift/customstringconvertible)

##### Instance Properties

- [var description: String](/documentation/swift/customstringconvertible/description)

###### CustomStringConvertible Implementations

- [var description: String](/documentation/swift/customstringconvertible/description-5zvsf)
- [var description: String](/documentation/swift/customstringconvertible/description-7p32f)
- [var description: String](/documentation/swift/customstringconvertible/description-905fa)
- [LosslessStringConvertible](/documentation/swift/losslessstringconvertible)

##### Initializers

- [init?(String)](/documentation/swift/losslessstringconvertible/init(_:))

###### BinaryInteger Implementations

- [init?(String)](/documentation/swift/binaryinteger/init(_:)-3cx61)
- [init<T>(T)](/documentation/swift/binaryinteger/init(_:)-62cdc)

###### FixedWidthInteger Implementations

- [init?(Backtrace.Address)](/documentation/swift/fixedwidthinteger/init(_:))
- [CustomDebugStringConvertible](/documentation/swift/customdebugstringconvertible)

##### Instance Properties

- [var debugDescription: String](/documentation/swift/customdebugstringconvertible/debugdescription)

###### CustomDebugStringConvertible Implementations

- [var debugDescription: String](/documentation/swift/customdebugstringconvertible/debugdescription-1omzk)

#### Raw Representation

- [CaseIterable](/documentation/swift/caseiterable)

##### Accessing Cases

- [static var allCases: Self.AllCases](/documentation/swift/caseiterable/allcases-swift.type.property)
- [AllCases](/documentation/swift/caseiterable/allcases-swift.associatedtype)
- [RawRepresentable](/documentation/swift/rawrepresentable)

##### Creating a Value

- [init?(rawValue: Self.RawValue)](/documentation/swift/rawrepresentable/init(rawvalue:))

##### Accessing the Raw Value

- [var rawValue: Self.RawValue](/documentation/swift/rawrepresentable/rawvalue-swift.property)
- [RawValue](/documentation/swift/rawrepresentable/rawvalue-swift.associatedtype)

##### Comparing Values

- [func == <T>(T, T) -> Bool](/documentation/swift/==(_:_:)-9hu5c)
- [func != <T>(T, T) -> Bool](/documentation/swift/!=(_:_:)-9wy5n)
- [func != <T>(T, T) -> Bool](/documentation/swift/!=(_:_:)-8pggn)

##### Decoding a Value

- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-5auil)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-5ar5m)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-417i8)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-9u9tp)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-4ibll)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-3hvw1)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-5ktev)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-2hvc0)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-114vz)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-29lhi)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-94955)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-6z4x4)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-3arr3)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-812cy)

##### Encoding a Value

- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-4evma)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-5igsi)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-4tbh4)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-21ma8)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-8horh)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-78oqu)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-4pavm)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-86dqn)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-7dyeb)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-4gohs)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-9u5rt)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-cla3)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-27waz)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-16ame)

##### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/rawrepresentable/init(codingkey:)-3mxjn)
- [init?<T>(codingKey: T)](/documentation/swift/rawrepresentable/init(codingkey:)-9gih0)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-6yajb)
- [init(from: any Decoder) throws](/documentation/swift/rawrepresentable/init(from:)-8fm8i)

##### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/rawrepresentable/codingkey-2f0gm)
- [var codingKey: any CodingKey](/documentation/swift/rawrepresentable/codingkey-xnw1)
- [var hashValue: Int](/documentation/swift/rawrepresentable/hashvalue)

##### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-172ut)
- [func encode(to: any Encoder) throws](/documentation/swift/rawrepresentable/encode(to:)-3ahar)
- [func hash(into: inout Hasher)](/documentation/swift/rawrepresentable/hash(into:))

##### Type Aliases

- [RawRepresentable.AtomicOptionalRepresentation](/documentation/swift/rawrepresentable/atomicoptionalrepresentation)
- [RawRepresentable.AtomicRepresentation](/documentation/swift/rawrepresentable/atomicrepresentation)

##### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming Self.RawValue.AtomicOptionalRepresentation) -> Self?](/documentation/swift/rawrepresentable/decodeatomicoptionalrepresentation(_:))
- [static func decodeAtomicRepresentation(consuming Self.RawValue.AtomicRepresentation) -> Self](/documentation/swift/rawrepresentable/decodeatomicrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming Self?) -> Self.RawValue.AtomicOptionalRepresentation](/documentation/swift/rawrepresentable/encodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Self) -> Self.RawValue.AtomicRepresentation](/documentation/swift/rawrepresentable/encodeatomicrepresentation(_:))
- [Encoding, Decoding, and Serialization](/documentation/swift/encoding-decoding-and-serialization)

#### Custom Encoding and Decoding

- [Encoding and Decoding Custom Types](/documentation/foundation/encoding-and-decoding-custom-types)
- [Codable](/documentation/swift/codable)
- [Encodable](/documentation/swift/encodable)

##### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/encodable/encode(to:))

###### Encodable Implementations

- [func encode(to: any Encoder) throws](/documentation/swift/encodable/encode(to:)-4qkz3)
- [Decodable](/documentation/swift/decodable)

##### Initializers

- [init(from: any Decoder) throws](/documentation/swift/decodable/init(from:))

###### Decodable Implementations

- [init(from: any Decoder) throws](/documentation/swift/decodable/init(from:)-8cbq4)
- [CodingKey](/documentation/swift/codingkey)

##### Initializers

- [init?(intValue: Int)](/documentation/swift/codingkey/init(intvalue:))
- [init?(stringValue: String)](/documentation/swift/codingkey/init(stringvalue:))

##### Instance Properties

- [var intValue: Int?](/documentation/swift/codingkey/intvalue)
- [var stringValue: String](/documentation/swift/codingkey/stringvalue)
- [CodingKeyRepresentable](/documentation/swift/codingkeyrepresentable)

##### Initializers

- [init?<T>(codingKey: T)](/documentation/swift/codingkeyrepresentable/init(codingkey:))

##### Instance Properties

- [var codingKey: any CodingKey](/documentation/swift/codingkeyrepresentable/codingkey)
- [CodingUserInfoKey](/documentation/swift/codinguserinfokey)

##### Operators

- [static func == (CodingUserInfoKey, CodingUserInfoKey) -> Bool](/documentation/swift/codinguserinfokey/==(_:_:))

##### Initializers

- [init?(rawValue: String)](/documentation/swift/codinguserinfokey/init(rawvalue:))

##### Instance Properties

- [var hashValue: Int](/documentation/swift/codinguserinfokey/hashvalue)
- [let rawValue: String](/documentation/swift/codinguserinfokey/rawvalue-swift.property)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/codinguserinfokey/hash(into:))

##### Type Aliases

- [CodingUserInfoKey.RawValue](/documentation/swift/codinguserinfokey/rawvalue-swift.typealias)

##### Type Properties

- [static let actorSystemKey: CodingUserInfoKey](/documentation/swift/codinguserinfokey/actorsystemkey)

##### Default Implementations

- [Equatable Implementations](/documentation/swift/codinguserinfokey/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/codinguserinfokey/!=(_:_:))

#### Encoders and Decoders

- [Encoder](/documentation/swift/encoder)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/encoder/codingpath)
- [var userInfo: [CodingUserInfoKey : Any]](/documentation/swift/encoder/userinfo)

##### Instance Methods

- [func container<Key>(keyedBy: Key.Type) -> KeyedEncodingContainer<Key>](/documentation/swift/encoder/container(keyedby:))
- [func singleValueContainer() -> any SingleValueEncodingContainer](/documentation/swift/encoder/singlevaluecontainer())
- [func unkeyedContainer() -> any UnkeyedEncodingContainer](/documentation/swift/encoder/unkeyedcontainer())
- [Decoder](/documentation/swift/decoder)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/decoder/codingpath)
- [var userInfo: [CodingUserInfoKey : Any]](/documentation/swift/decoder/userinfo)

##### Instance Methods

- [func container<Key>(keyedBy: Key.Type) throws -> KeyedDecodingContainer<Key>](/documentation/swift/decoder/container(keyedby:))
- [func singleValueContainer() throws -> any SingleValueDecodingContainer](/documentation/swift/decoder/singlevaluecontainer())
- [func unkeyedContainer() throws -> any UnkeyedDecodingContainer](/documentation/swift/decoder/unkeyedcontainer())
- [EncodingError](/documentation/swift/encodingerror)

##### Structures

- [EncodingError.Context](/documentation/swift/encodingerror/context)

###### Initializers

- [init(codingPath: [any CodingKey], debugDescription: String, underlyingError: (any Error)?)](/documentation/swift/encodingerror/context/init(codingpath:debugdescription:underlyingerror:))

###### Instance Properties

- [let codingPath: [any CodingKey]](/documentation/swift/encodingerror/context/codingpath)
- [let debugDescription: String](/documentation/swift/encodingerror/context/debugdescription)
- [let underlyingError: (any Error)?](/documentation/swift/encodingerror/context/underlyingerror)

##### Enumeration Cases

- [case invalidValue(Any, EncodingError.Context)](/documentation/swift/encodingerror/invalidvalue(_:_:))

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/encodingerror/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/encodingerror/debugdescription)
- [DecodingError](/documentation/swift/decodingerror)

##### Structures

- [DecodingError.Context](/documentation/swift/decodingerror/context)

###### Initializers

- [init(codingPath: [any CodingKey], debugDescription: String, underlyingError: (any Error)?)](/documentation/swift/decodingerror/context/init(codingpath:debugdescription:underlyingerror:))

###### Instance Properties

- [let codingPath: [any CodingKey]](/documentation/swift/decodingerror/context/codingpath)
- [let debugDescription: String](/documentation/swift/decodingerror/context/debugdescription)
- [let underlyingError: (any Error)?](/documentation/swift/decodingerror/context/underlyingerror)

##### Enumeration Cases

- [case dataCorrupted(DecodingError.Context)](/documentation/swift/decodingerror/datacorrupted(_:))
- [case keyNotFound(any CodingKey, DecodingError.Context)](/documentation/swift/decodingerror/keynotfound(_:_:))
- [case typeMismatch(any Any.Type, DecodingError.Context)](/documentation/swift/decodingerror/typemismatch(_:_:))
- [case valueNotFound(any Any.Type, DecodingError.Context)](/documentation/swift/decodingerror/valuenotfound(_:_:))

##### Type Methods

- [static func dataCorruptedError<C>(forKey: C.Key, in: C, debugDescription: String) -> DecodingError](/documentation/swift/decodingerror/datacorruptederror(forkey:in:debugdescription:))
- [static func dataCorruptedError(in: any SingleValueDecodingContainer, debugDescription: String) -> DecodingError](/documentation/swift/decodingerror/datacorruptederror(in:debugdescription:)-4ruvu)
- [static func dataCorruptedError(in: any UnkeyedDecodingContainer, debugDescription: String) -> DecodingError](/documentation/swift/decodingerror/datacorruptederror(in:debugdescription:)-5on9z)

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/decodingerror/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/decodingerror/debugdescription)

#### Encoding Containers

- [SingleValueEncodingContainer](/documentation/swift/singlevalueencodingcontainer)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/singlevalueencodingcontainer/codingpath)

##### Instance Methods

- [func encode(Int) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-1mftu)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Double) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-23skf)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Float) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-2c14h)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Bool) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-2oplx)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt64) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-39vhy)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(String) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-44wsc)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Int8) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5111)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Int64) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-512uf)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Int16) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5fuor)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5kf5u)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt16) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5ndtj)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode<T>(T) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-687yj)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt32) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6a9w5)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-7alir)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(Int32) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-9mmv6)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-hruu)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encode(UInt8) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-r5hk)

###### SingleValueEncodingContainer Implementations

- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-5lw48)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-6x0pw)
- [func encode(Int128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-82sdy)
- [func encode(UInt128) throws](/documentation/swift/singlevalueencodingcontainer/encode(_:)-wjsd)
- [func encodeNil() throws](/documentation/swift/singlevalueencodingcontainer/encodenil())
- [KeyedEncodingContainer](/documentation/swift/keyedencodingcontainer)

##### Initializers

- [init<Container>(Container)](/documentation/swift/keyedencodingcontainer/init(_:))

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/keyedencodingcontainer/codingpath)

##### Instance Methods

- [func encode<T, C>(CodableConfiguration<T?, C>, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-11ktw)
- [func encode(UInt, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-1m6rk)
- [func encode<T>(T, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-3a74m)
- [func encode(UInt8, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-3xzi8)
- [func encode(Int64, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-4qaju)
- [func encode(String, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-5bc5p)
- [func encode(Int, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-78vtz)
- [func encode(Int128, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-7a0m)
- [func encode(UInt64, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-7ch7a)
- [func encode(Int32, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-85f3r)
- [func encode(Int16, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-8hung)
- [func encode(UInt16, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-8ik7d)
- [func encode(UInt128, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-8qhuv)
- [func encode(Float, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-8y5p6)
- [func encode(UInt32, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-92a4)
- [func encode(Int8, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-99z4)
- [func encode(Double, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-9c512)
- [func encode(Bool, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-9mh8u)
- [func encode<T, C>(T, forKey: KeyedEncodingContainer<K>.Key, configuration: C.Type) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:configuration:)-3i2wq)
- [func encode<T>(T, forKey: KeyedEncodingContainer<K>.Key, configuration: T.EncodingConfiguration) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:configuration:)-4va3q)
- [func encodeConditional<T>(T, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeconditional(_:forkey:))
- [func encodeIfPresent(Int?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-11yvf)
- [func encodeIfPresent(Int16?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-250z5)
- [func encodeIfPresent(String?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-2b1yb)
- [func encodeIfPresent(UInt16?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-2rzgp)
- [func encodeIfPresent(UInt32?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-3rw9e)
- [func encodeIfPresent<T>(T?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-45la3)
- [func encodeIfPresent(Float?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-4c8zy)
- [func encodeIfPresent(Int32?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-6cflq)
- [func encodeIfPresent(Int64?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-70fw4)
- [func encodeIfPresent(UInt?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-70vk4)
- [func encodeIfPresent(UInt128?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-7c6zc)
- [func encodeIfPresent(Bool?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-7cikn)
- [func encodeIfPresent(Int128?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-7wqtl)
- [func encodeIfPresent(UInt64?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-87bds)
- [func encodeIfPresent(Int8?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-9vbxv)
- [func encodeIfPresent(UInt8?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-9ydxr)
- [func encodeIfPresent(Double?, forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-ikpq)
- [func encodeIfPresent<T>(T?, forKey: KeyedEncodingContainer<K>.Key, configuration: T.EncodingConfiguration) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:configuration:)-7bzb4)
- [func encodeIfPresent<T, C>(T?, forKey: KeyedEncodingContainer<K>.Key, configuration: C.Type) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:configuration:)-7x1yj)
- [func encodeNil(forKey: KeyedEncodingContainer<K>.Key) throws](/documentation/swift/keyedencodingcontainer/encodenil(forkey:))
- [func encodePredicateExpression<T, each Input>(T, forKey: KeyedEncodingContainer<K>.Key, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/keyedencodingcontainer/encodepredicateexpression(_:forkey:variable:predicateconfiguration:)-4hhm9)
- [func encodePredicateExpression<T, each Input>(T, forKey: KeyedEncodingContainer<K>.Key, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/keyedencodingcontainer/encodepredicateexpression(_:forkey:variable:predicateconfiguration:)-92gv8)
- [func encodePredicateExpressionIfPresent<T, each Input>(T?, forKey: KeyedEncodingContainer<K>.Key, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/keyedencodingcontainer/encodepredicateexpressionifpresent(_:forkey:variable:predicateconfiguration:)-858hy)
- [func encodePredicateExpressionIfPresent<T, each Input>(T?, forKey: KeyedEncodingContainer<K>.Key, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/keyedencodingcontainer/encodepredicateexpressionifpresent(_:forkey:variable:predicateconfiguration:)-ivzi)
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type, forKey: KeyedEncodingContainer<K>.Key) -> KeyedEncodingContainer<NestedKey>](/documentation/swift/keyedencodingcontainer/nestedcontainer(keyedby:forkey:))
- [func nestedUnkeyedContainer(forKey: KeyedEncodingContainer<K>.Key) -> any UnkeyedEncodingContainer](/documentation/swift/keyedencodingcontainer/nestedunkeyedcontainer(forkey:))
- [func superEncoder() -> any Encoder](/documentation/swift/keyedencodingcontainer/superencoder())
- [func superEncoder(forKey: KeyedEncodingContainer<K>.Key) -> any Encoder](/documentation/swift/keyedencodingcontainer/superencoder(forkey:))

##### Type Aliases

- [KeyedEncodingContainer.Key](/documentation/swift/keyedencodingcontainer/key)

##### Default Implementations

- [KeyedEncodingContainerProtocol Implementations](/documentation/swift/keyedencodingcontainer/keyedencodingcontainerprotocol-implementations)

###### Instance Methods

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-8yufz)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encode(_:forkey:)-vjhq)
- [func encodeConditional<T>(T, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeconditional(_:forkey:)-2sxc0)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-1nn49)
- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-29g6g)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-2bjaq)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-3afe0)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-3xv7m)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-46r8i)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-4p0ik)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-4ws6m)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-6cvd3)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-706xw)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-7m9z7)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-809zp)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-836ib)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-954rq)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-e1h9)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-n83l)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainer/encodeifpresent(_:forkey:)-nej2)
- [KeyedEncodingContainerProtocol](/documentation/swift/keyedencodingcontainerprotocol)

##### Associated Types

- [Key](/documentation/swift/keyedencodingcontainerprotocol/key)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/keyedencodingcontainerprotocol/codingpath)

##### Instance Methods

- [func encode(Int16, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-389ei)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt16, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-44xki)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Float, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-45mw2)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt64, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-4lg54)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Bool, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-4xpm2)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Int, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-53bkq)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-73p1b)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(String, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-74l0h)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-75dqb)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Int64, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7d8l)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-86s3y)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt8, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-887jx)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode<T>(T, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-8gl89)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(UInt32, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-8mwtj)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Double, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-8xq4c)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Int32, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-9hxpb)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encode(Int8, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-qjna)

###### KeyedEncodingContainerProtocol Implementations

- [func encode(Int128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-5igzg)
- [func encode(UInt128, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encode(_:forkey:)-7lntx)
- [func encodeConditional<T>(T, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeconditional(_:forkey:))

###### KeyedEncodingContainerProtocol Implementations

- [func encodeConditional<T>(T, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeconditional(_:forkey:)-42y2)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1d9dk)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1f6sg)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1iqzh)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r22b)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2xq5p)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-35mgj)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3j1kl)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4axra)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5ig1w)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5uiig)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5xhse)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-68f89)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xotr)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7b7eu)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-837jy)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-d7xg)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-luij)

###### KeyedEncodingContainerProtocol Implementations

- [func encodeIfPresent(Double?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1g1z4)
- [func encodeIfPresent(UInt?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lv6o)
- [func encodeIfPresent(UInt16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1lz0j)
- [func encodeIfPresent(Int128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-1r6ai)
- [func encodeIfPresent(UInt8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-2dwj5)
- [func encodeIfPresent(UInt64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-3lhrl)
- [func encodeIfPresent(Int32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4a2u7)
- [func encodeIfPresent(Float?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4d89n)
- [func encodeIfPresent(UInt128?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4kvt4)
- [func encodeIfPresent<T>(T?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-4p5p4)
- [func encodeIfPresent(String?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-5jh2r)
- [func encodeIfPresent(Int16?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-6xbjj)
- [func encodeIfPresent(Bool?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-7rynx)
- [func encodeIfPresent(UInt32?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8i0us)
- [func encodeIfPresent(Int?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-8m92m)
- [func encodeIfPresent(Int64?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-9sui2)
- [func encodeIfPresent(Int8?, forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodeifpresent(_:forkey:)-yaxk)
- [func encodeNil(forKey: Self.Key) throws](/documentation/swift/keyedencodingcontainerprotocol/encodenil(forkey:))
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type, forKey: Self.Key) -> KeyedEncodingContainer<NestedKey>](/documentation/swift/keyedencodingcontainerprotocol/nestedcontainer(keyedby:forkey:))
- [func nestedUnkeyedContainer(forKey: Self.Key) -> any UnkeyedEncodingContainer](/documentation/swift/keyedencodingcontainerprotocol/nestedunkeyedcontainer(forkey:))
- [func superEncoder() -> any Encoder](/documentation/swift/keyedencodingcontainerprotocol/superencoder())
- [func superEncoder(forKey: Self.Key) -> any Encoder](/documentation/swift/keyedencodingcontainerprotocol/superencoder(forkey:))
- [UnkeyedEncodingContainer](/documentation/swift/unkeyedencodingcontainer)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/unkeyedencodingcontainer/codingpath)
- [var count: Int](/documentation/swift/unkeyedencodingcontainer/count)

##### Instance Methods

- [func encode(Float) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-1rqbg)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Double) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-1yl36)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Bool) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-24em8)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-30ux3)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-3dtgb)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-4ehqa)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt8) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-6460j)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int64) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-6jau2)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt16) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-6moq8)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(String) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-6o2fd)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-784h2)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt32) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7cs0h)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int8) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7vq)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int16) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7za3t)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(Int32) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-9d3m0)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode<T>(T) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-9k4uf)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode(UInt64) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-9sz81)

###### UnkeyedEncodingContainer Implementations

- [func encode(UInt128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-7suq1)
- [func encode(Int128) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:)-8m4kj)
- [func encode<T, C>(T, configuration: C.Type) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:configuration:)-3y681)
- [func encode<T>(T, configuration: T.EncodingConfiguration) throws](/documentation/swift/unkeyedencodingcontainer/encode(_:configuration:)-85f4v)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-19w8r)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2bav9)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-36ny)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-3upp3)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4tdyr)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-54d9i)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-58k1b)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-62wy5)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7m806)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-862ok)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-89pyf)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-8d3h)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-8vtn5)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9s06k)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9sogk)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-kdw8)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-xykc)

###### UnkeyedEncodingContainer Implementations

- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-1k4wu)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-28q9o)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2rt93)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-2yymi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-4lzqs)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-59l2f)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-5zeys)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-6e9jx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7485u)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-74qqt)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-7pqnf)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-97v19)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9cu3t)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9dfsi)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-9lwpz)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zmlx)
- [func encode<T>(contentsOf: T) throws](/documentation/swift/unkeyedencodingcontainer/encode(contentsof:)-zo1s)
- [func encodeConditional<T>(T) throws](/documentation/swift/unkeyedencodingcontainer/encodeconditional(_:))

###### UnkeyedEncodingContainer Implementations

- [func encodeConditional<T>(T) throws](/documentation/swift/unkeyedencodingcontainer/encodeconditional(_:)-4trvc)
- [func encodeNil() throws](/documentation/swift/unkeyedencodingcontainer/encodenil())
- [func encodePredicateExpression<T, each Input>(T, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/unkeyedencodingcontainer/encodepredicateexpression(_:variable:predicateconfiguration:)-30xlk)
- [func encodePredicateExpression<T, each Input>(T, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/unkeyedencodingcontainer/encodepredicateexpression(_:variable:predicateconfiguration:)-3p9ec)
- [func encodePredicateExpressionIfPresent<T, each Input>(T?, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/unkeyedencodingcontainer/encodepredicateexpressionifpresent(_:variable:predicateconfiguration:)-438on)
- [func encodePredicateExpressionIfPresent<T, each Input>(T?, variable: repeat PredicateExpressions.Variable<each Input>, predicateConfiguration: PredicateCodableConfiguration) throws](/documentation/swift/unkeyedencodingcontainer/encodepredicateexpressionifpresent(_:variable:predicateconfiguration:)-75j8t)
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type) -> KeyedEncodingContainer<NestedKey>](/documentation/swift/unkeyedencodingcontainer/nestedcontainer(keyedby:))
- [func nestedUnkeyedContainer() -> any UnkeyedEncodingContainer](/documentation/swift/unkeyedencodingcontainer/nestedunkeyedcontainer())
- [func superEncoder() -> any Encoder](/documentation/swift/unkeyedencodingcontainer/superencoder())

#### Decoding Containers

- [KeyedDecodingContainer](/documentation/swift/keyeddecodingcontainer)

##### Initializers

- [init<Container>(Container)](/documentation/swift/keyeddecodingcontainer/init(_:))

##### Instance Properties

- [var allKeys: [KeyedDecodingContainer<K>.Key]](/documentation/swift/keyeddecodingcontainer/allkeys)
- [var codingPath: [any CodingKey]](/documentation/swift/keyeddecodingcontainer/codingpath)

##### Instance Methods

- [func contains(KeyedDecodingContainer<K>.Key) -> Bool](/documentation/swift/keyeddecodingcontainer/contains(_:))
- [func decode(Int32.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int32](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-1d33g)
- [func decode(Int8.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int8](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-1n3v)
- [func decode<T>(T.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> T](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-1u4zx)
- [func decode(UInt32.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt32](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-21ybk)
- [func decode(Float.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Float](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-3e257)
- [func decode(String.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> String](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-3egly)
- [func decode(Int128.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-3yw73)
- [func decode(UInt.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-4mzei)
- [func decode(Int64.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int64](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-5fh1x)
- [func decode(UInt64.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt64](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-5io1a)
- [func decode(Double.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Double](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-687gv)
- [func decode(UInt128.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-6d98c)
- [func decode(Int16.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int16](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-721nc)
- [func decode(Int.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-7vj8e)
- [func decode(UInt8.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt8](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-8foeb)
- [func decode<T, C>(CodableConfiguration<T?, C>.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> CodableConfiguration<T?, C>](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-8u7rt)
- [func decode(UInt16.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt16](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-9633o)
- [func decode(Bool.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Bool](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-9fa2u)
- [func decode<T>(T.Type, forKey: KeyedDecodingContainer<K>.Key, configuration: T.DecodingConfiguration) throws -> T](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:configuration:)-2rk0t)
- [func decode<T, C>(T.Type, forKey: KeyedDecodingContainer<K>.Key, configuration: C.Type) throws -> T](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:configuration:)-6t8ew)
- [func decodeIfPresent(UInt8.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-1iwt4)
- [func decodeIfPresent(Int8.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-1zmt1)
- [func decodeIfPresent(Int64.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-23pwi)
- [func decodeIfPresent(Int.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-2ax45)
- [func decodeIfPresent<T>(T.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> T?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-2hn6i)
- [func decodeIfPresent(UInt128.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-2thz1)
- [func decodeIfPresent(UInt64.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-2yvgn)
- [func decodeIfPresent(Float.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-3thus)
- [func decodeIfPresent(Int32.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-6zxms)
- [func decodeIfPresent(Bool.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-74ir4)
- [func decodeIfPresent(String.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> String?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-7ucyl)
- [func decodeIfPresent(Double.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-7x3cg)
- [func decodeIfPresent(UInt16.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-85fg3)
- [func decodeIfPresent(Int128.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-897x4)
- [func decodeIfPresent(UInt32.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-8tib2)
- [func decodeIfPresent(Int16.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-91iaz)
- [func decodeIfPresent(UInt.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-9fnqb)
- [func decodeIfPresent<T>(T.Type, forKey: KeyedDecodingContainer<K>.Key, configuration: T.DecodingConfiguration) throws -> T?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:configuration:)-469qf)
- [func decodeIfPresent<T, C>(T.Type, forKey: KeyedDecodingContainer<K>.Key, configuration: C.Type) throws -> T?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:configuration:)-5g1cl)
- [func decodeNil(forKey: KeyedDecodingContainer<K>.Key) throws -> Bool](/documentation/swift/keyeddecodingcontainer/decodenil(forkey:))
- [func decodePredicateExpression<each Input, Output>(forKey: KeyedDecodingContainer<K>.Key, input: repeat (each Input).Type, output: Output.Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Output>, variable: (repeat PredicateExpressions.Variable<each Input>))](/documentation/swift/keyeddecodingcontainer/decodepredicateexpression(forkey:input:output:predicateconfiguration:))
- [func decodePredicateExpression<each Input>(forKey: KeyedDecodingContainer<K>.Key, input: repeat (each Input).Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Bool>, variable: (repeat PredicateExpressions.Variable<each Input>))](/documentation/swift/keyeddecodingcontainer/decodepredicateexpression(forkey:input:predicateconfiguration:))
- [func decodePredicateExpressionIfPresent<each Input, Output>(forKey: KeyedDecodingContainer<K>.Key, input: repeat (each Input).Type, output: Output.Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Output>, variable: (repeat PredicateExpressions.Variable<each Input>))?](/documentation/swift/keyeddecodingcontainer/decodepredicateexpressionifpresent(forkey:input:output:predicateconfiguration:))
- [func decodePredicateExpressionIfPresent<each Input>(forKey: KeyedDecodingContainer<K>.Key, input: repeat (each Input).Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Bool>, variable: (repeat PredicateExpressions.Variable<each Input>))?](/documentation/swift/keyeddecodingcontainer/decodepredicateexpressionifpresent(forkey:input:predicateconfiguration:))
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type, forKey: KeyedDecodingContainer<K>.Key) throws -> KeyedDecodingContainer<NestedKey>](/documentation/swift/keyeddecodingcontainer/nestedcontainer(keyedby:forkey:))
- [func nestedUnkeyedContainer(forKey: KeyedDecodingContainer<K>.Key) throws -> any UnkeyedDecodingContainer](/documentation/swift/keyeddecodingcontainer/nestedunkeyedcontainer(forkey:))
- [func superDecoder() throws -> any Decoder](/documentation/swift/keyeddecodingcontainer/superdecoder())
- [func superDecoder(forKey: KeyedDecodingContainer<K>.Key) throws -> any Decoder](/documentation/swift/keyeddecodingcontainer/superdecoder(forkey:))

##### Type Aliases

- [KeyedDecodingContainer.Key](/documentation/swift/keyeddecodingcontainer/key)

##### Default Implementations

- [KeyedDecodingContainerProtocol Implementations](/documentation/swift/keyeddecodingcontainer/keyeddecodingcontainerprotocol-implementations)

###### Instance Methods

- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-6bqbj)
- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainer/decode(_:forkey:)-6xvk4)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-339qj)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-38d4y)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-3pauu)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-3zl8i)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-41lzh)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-44yee)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-4u87t)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-4xmf7)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-61cfc)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-7rtzq)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-7vy3k)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-85hpp)
- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-9fv11)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-9jeei)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-9tfza)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-9ujt)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainer/decodeifpresent(_:forkey:)-w7f)
- [SingleValueDecodingContainer](/documentation/swift/singlevaluedecodingcontainer)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/singlevaluedecodingcontainer/codingpath)

##### Instance Methods

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1pxe2)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int16.Type) throws -> Int16](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-23u3w)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-2l6ly)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(UInt64.Type) throws -> UInt64](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-2uokk)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int8.Type) throws -> Int8](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-2vnj6)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode<T>(T.Type) throws -> T](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-3ah76)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Bool.Type) throws -> Bool](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-3zbof)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int.Type) throws -> Int](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-4apkx)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(UInt.Type) throws -> UInt](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5azw7)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int64.Type) throws -> Int64](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6aknx)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(UInt8.Type) throws -> UInt8](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6wwvl)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Int32.Type) throws -> Int32](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-7qn1r)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(String.Type) throws -> String](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-8f2z9)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(UInt32.Type) throws -> UInt32](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-8rejh)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Double.Type) throws -> Double](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-9wdfz)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(UInt16.Type) throws -> UInt16](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-vrya)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decode(Float.Type) throws -> Float](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-ypkn)

###### SingleValueDecodingContainer Implementations

- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-1rz83)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5f6dc)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-5i4ec)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/singlevaluedecodingcontainer/decode(_:)-6vzg2)
- [func decodeNil() -> Bool](/documentation/swift/singlevaluedecodingcontainer/decodenil())
- [KeyedDecodingContainerProtocol](/documentation/swift/keyeddecodingcontainerprotocol)

##### Associated Types

- [Key](/documentation/swift/keyeddecodingcontainerprotocol/key)

##### Instance Properties

- [var allKeys: [Self.Key]](/documentation/swift/keyeddecodingcontainerprotocol/allkeys)
- [var codingPath: [any CodingKey]](/documentation/swift/keyeddecodingcontainerprotocol/codingpath)

##### Instance Methods

- [func contains(Self.Key) -> Bool](/documentation/swift/keyeddecodingcontainerprotocol/contains(_:))
- [func decode(UInt8.Type, forKey: Self.Key) throws -> UInt8](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-1pd5k)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-2sa7a)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(UInt32.Type, forKey: Self.Key) throws -> UInt32](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-3cyg)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(UInt.Type, forKey: Self.Key) throws -> UInt](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-3zluy)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Bool.Type, forKey: Self.Key) throws -> Bool](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-43hen)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-4d1ff)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int16.Type, forKey: Self.Key) throws -> Int16](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-4k53i)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int32.Type, forKey: Self.Key) throws -> Int32](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-5jtvg)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(UInt64.Type, forKey: Self.Key) throws -> UInt64](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-5kzmf)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int.Type, forKey: Self.Key) throws -> Int](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-62kn6)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int64.Type, forKey: Self.Key) throws -> Int64](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-873gm)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(String.Type, forKey: Self.Key) throws -> String](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-880hl)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(UInt16.Type, forKey: Self.Key) throws -> UInt16](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-8h5vd)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Int8.Type, forKey: Self.Key) throws -> Int8](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-decq)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Float.Type, forKey: Self.Key) throws -> Float](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-kecy)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode(Double.Type, forKey: Self.Key) throws -> Double](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-p613)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decode<T>(T.Type, forKey: Self.Key) throws -> T](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-xuqk)

###### KeyedDecodingContainerProtocol Implementations

- [func decode(Int128.Type, forKey: Self.Key) throws -> Int128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-7za3v)
- [func decode(UInt128.Type, forKey: Self.Key) throws -> UInt128](/documentation/swift/keyeddecodingcontainerprotocol/decode(_:forkey:)-u839)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-17w89)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1qynx)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1saky)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-375xf)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-39kc6)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-3pes5)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5bqjw)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5k5md)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5ymbd)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6n52q)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6vzzs)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-7a1da)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-7jjj2)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-7opy8)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-7p1j1)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8qp1h)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-lc54)

###### KeyedDecodingContainerProtocol Implementations

- [func decodeIfPresent(UInt16.Type, forKey: Self.Key) throws -> UInt16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-189q8)
- [func decodeIfPresent(UInt64.Type, forKey: Self.Key) throws -> UInt64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-1i7qt)
- [func decodeIfPresent(Int64.Type, forKey: Self.Key) throws -> Int64?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2g0dg)
- [func decodeIfPresent<T>(T.Type, forKey: Self.Key) throws -> T?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-2o9mb)
- [func decodeIfPresent(UInt8.Type, forKey: Self.Key) throws -> UInt8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-4j3g5)
- [func decodeIfPresent(Int8.Type, forKey: Self.Key) throws -> Int8?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-5vg9)
- [func decodeIfPresent(Int16.Type, forKey: Self.Key) throws -> Int16?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-613fl)
- [func decodeIfPresent(String.Type, forKey: Self.Key) throws -> String?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6d6xo)
- [func decodeIfPresent(Bool.Type, forKey: Self.Key) throws -> Bool?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6lga8)
- [func decodeIfPresent(UInt128.Type, forKey: Self.Key) throws -> UInt128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-6ze9z)
- [func decodeIfPresent(Int32.Type, forKey: Self.Key) throws -> Int32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8cej4)
- [func decodeIfPresent(Double.Type, forKey: Self.Key) throws -> Double?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8l1ao)
- [func decodeIfPresent(Int128.Type, forKey: Self.Key) throws -> Int128?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8ujl)
- [func decodeIfPresent(Float.Type, forKey: Self.Key) throws -> Float?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8w7i2)
- [func decodeIfPresent(UInt32.Type, forKey: Self.Key) throws -> UInt32?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-8wk2a)
- [func decodeIfPresent(Int.Type, forKey: Self.Key) throws -> Int?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-fyzb)
- [func decodeIfPresent(UInt.Type, forKey: Self.Key) throws -> UInt?](/documentation/swift/keyeddecodingcontainerprotocol/decodeifpresent(_:forkey:)-g4cp)
- [func decodeNil(forKey: Self.Key) throws -> Bool](/documentation/swift/keyeddecodingcontainerprotocol/decodenil(forkey:))
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type, forKey: Self.Key) throws -> KeyedDecodingContainer<NestedKey>](/documentation/swift/keyeddecodingcontainerprotocol/nestedcontainer(keyedby:forkey:))
- [func nestedUnkeyedContainer(forKey: Self.Key) throws -> any UnkeyedDecodingContainer](/documentation/swift/keyeddecodingcontainerprotocol/nestedunkeyedcontainer(forkey:))
- [func superDecoder() throws -> any Decoder](/documentation/swift/keyeddecodingcontainerprotocol/superdecoder())
- [func superDecoder(forKey: Self.Key) throws -> any Decoder](/documentation/swift/keyeddecodingcontainerprotocol/superdecoder(forkey:))
- [UnkeyedDecodingContainer](/documentation/swift/unkeyeddecodingcontainer)

##### Instance Properties

- [var codingPath: [any CodingKey]](/documentation/swift/unkeyeddecodingcontainer/codingpath)
- [var count: Int?](/documentation/swift/unkeyeddecodingcontainer/count)
- [var currentIndex: Int](/documentation/swift/unkeyeddecodingcontainer/currentindex)
- [var isAtEnd: Bool](/documentation/swift/unkeyeddecodingcontainer/isatend)

##### Instance Methods

- [func decode(UInt64.Type) throws -> UInt64](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-1jjjp)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Double.Type) throws -> Double](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-276l5)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode<T>(T.Type) throws -> T](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-2jd5t)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(UInt32.Type) throws -> UInt32](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-30psn)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(UInt16.Type) throws -> UInt16](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-499mt)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(String.Type) throws -> String](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4cm6k)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int32.Type) throws -> Int32](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-5eszo)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int16.Type) throws -> Int16](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-5kbz9)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-66zb4)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int64.Type) throws -> Int64](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6o9j1)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(UInt.Type) throws -> UInt](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-7gp3y)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Bool.Type) throws -> Bool](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-83ekt)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int.Type) throws -> Int](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-8g0io)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-96zc5)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Float.Type) throws -> Float](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-9gfvr)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(Int8.Type) throws -> Int8](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-gn40)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode(UInt8.Type) throws -> UInt8](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-nztw)

###### UnkeyedDecodingContainer Implementations

- [func decode(UInt128.Type) throws -> UInt128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-4c0se)
- [func decode(Int128.Type) throws -> Int128](/documentation/swift/unkeyeddecodingcontainer/decode(_:)-6k8gu)
- [func decode<T>(T.Type, configuration: T.DecodingConfiguration) throws -> T](/documentation/swift/unkeyeddecodingcontainer/decode(_:configuration:)-3q1ra)
- [func decode<T, C>(T.Type, configuration: C.Type) throws -> T](/documentation/swift/unkeyeddecodingcontainer/decode(_:configuration:)-72ctg)
- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1lbyq)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1oxo9)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-24deb)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-2n0nb)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4d6xc)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-599d9)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5t8p7)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-62i7k)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6aqhk)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6d53)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6j7g9)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6uoka)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-7dfq)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-80st4)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-86f1g)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-gxli)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-n5tj)

###### UnkeyedDecodingContainer Implementations

- [func decodeIfPresent(Float.Type) throws -> Float?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-11drn)
- [func decodeIfPresent(String.Type) throws -> String?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-1mzxv)
- [func decodeIfPresent(Int64.Type) throws -> Int64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-33p27)
- [func decodeIfPresent(UInt.Type) throws -> UInt?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3hokf)
- [func decodeIfPresent(Double.Type) throws -> Double?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-3tuys)
- [func decodeIfPresent(Int.Type) throws -> Int?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4b7tu)
- [func decodeIfPresent(UInt16.Type) throws -> UInt16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-4bqkd)
- [func decodeIfPresent(Int16.Type) throws -> Int16?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5mgpl)
- [func decodeIfPresent(Int8.Type) throws -> Int8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-5zug7)
- [func decodeIfPresent(UInt32.Type) throws -> UInt32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-64o4m)
- [func decodeIfPresent(UInt8.Type) throws -> UInt8?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6k5py)
- [func decodeIfPresent<T>(T.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-6snuc)
- [func decodeIfPresent(Bool.Type) throws -> Bool?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-87qsg)
- [func decodeIfPresent(Int32.Type) throws -> Int32?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8nfu7)
- [func decodeIfPresent(UInt128.Type) throws -> UInt128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-8we74)
- [func decodeIfPresent(UInt64.Type) throws -> UInt64?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-9tk6h)
- [func decodeIfPresent(Int128.Type) throws -> Int128?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:)-o708)
- [func decodeIfPresent<T, C>(T.Type, configuration: C.Type) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:configuration:)-3i2jl)
- [func decodeIfPresent<T>(T.Type, configuration: T.DecodingConfiguration) throws -> T?](/documentation/swift/unkeyeddecodingcontainer/decodeifpresent(_:configuration:)-7nafo)
- [func decodeNil() throws -> Bool](/documentation/swift/unkeyeddecodingcontainer/decodenil())
- [func decodePredicateExpression<each Input, Output>(input: repeat (each Input).Type, output: Output.Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Output>, variable: (repeat PredicateExpressions.Variable<each Input>))](/documentation/swift/unkeyeddecodingcontainer/decodepredicateexpression(input:output:predicateconfiguration:))
- [func decodePredicateExpression<each Input>(input: repeat (each Input).Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Bool>, variable: (repeat PredicateExpressions.Variable<each Input>))](/documentation/swift/unkeyeddecodingcontainer/decodepredicateexpression(input:predicateconfiguration:))
- [func decodePredicateExpressionIfPresent<each Input, Output>(input: repeat (each Input).Type, output: Output.Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Output>, variable: (repeat PredicateExpressions.Variable<each Input>))?](/documentation/swift/unkeyeddecodingcontainer/decodepredicateexpressionifpresent(input:output:predicateconfiguration:))
- [func decodePredicateExpressionIfPresent<each Input>(input: repeat (each Input).Type, predicateConfiguration: PredicateCodableConfiguration) throws -> (expression: any PredicateExpression<Bool>, variable: (repeat PredicateExpressions.Variable<each Input>))?](/documentation/swift/unkeyeddecodingcontainer/decodepredicateexpressionifpresent(input:predicateconfiguration:))
- [func nestedContainer<NestedKey>(keyedBy: NestedKey.Type) throws -> KeyedDecodingContainer<NestedKey>](/documentation/swift/unkeyeddecodingcontainer/nestedcontainer(keyedby:))
- [func nestedUnkeyedContainer() throws -> any UnkeyedDecodingContainer](/documentation/swift/unkeyeddecodingcontainer/nestedunkeyedcontainer())
- [func superDecoder() throws -> any Decoder](/documentation/swift/unkeyeddecodingcontainer/superdecoder())
- [Initialization with Literals](/documentation/swift/initialization-with-literals)

#### Collection Literals

- [ExpressibleByArrayLiteral](/documentation/swift/expressiblebyarrayliteral)

##### Associated Types

- [ArrayLiteralElement](/documentation/swift/expressiblebyarrayliteral/arrayliteralelement)

##### Initializers

- [init(arrayLiteral: Self.ArrayLiteralElement...)](/documentation/swift/expressiblebyarrayliteral/init(arrayliteral:))

###### ExpressibleByArrayLiteral Implementations

- [init(arrayLiteral: Self.Scalar...)](/documentation/swift/expressiblebyarrayliteral/init(arrayliteral:)-9x660)
- [init(arrayLiteral: Self.Element...)](/documentation/swift/expressiblebyarrayliteral/init(arrayliteral:)-q0d7)
- [ExpressibleByDictionaryLiteral](/documentation/swift/expressiblebydictionaryliteral)

##### Associated Types

- [Key](/documentation/swift/expressiblebydictionaryliteral/key)
- [Value](/documentation/swift/expressiblebydictionaryliteral/value)

##### Initializers

- [init(dictionaryLiteral: (Self.Key, Self.Value)...)](/documentation/swift/expressiblebydictionaryliteral/init(dictionaryliteral:))

#### Value Literals

- [ExpressibleByIntegerLiteral](/documentation/swift/expressiblebyintegerliteral)

##### Associated Types

- [IntegerLiteralType](/documentation/swift/expressiblebyintegerliteral/integerliteraltype)

##### Initializers

- [init(integerLiteral: Self.IntegerLiteralType)](/documentation/swift/expressiblebyintegerliteral/init(integerliteral:))

###### ExpressibleByIntegerLiteral Implementations

- [init(integerLiteral: Self)](/documentation/swift/expressiblebyintegerliteral/init(integerliteral:)-88n2x)
- [ExpressibleByFloatLiteral](/documentation/swift/expressiblebyfloatliteral)

##### Associated Types

- [FloatLiteralType](/documentation/swift/expressiblebyfloatliteral/floatliteraltype)

##### Initializers

- [init(floatLiteral: Self.FloatLiteralType)](/documentation/swift/expressiblebyfloatliteral/init(floatliteral:))
- [ExpressibleByBooleanLiteral](/documentation/swift/expressiblebybooleanliteral)

##### Associated Types

- [BooleanLiteralType](/documentation/swift/expressiblebybooleanliteral/booleanliteraltype)

##### Initializers

- [init(booleanLiteral: Self.BooleanLiteralType)](/documentation/swift/expressiblebybooleanliteral/init(booleanliteral:))
- [ExpressibleByNilLiteral](/documentation/swift/expressiblebynilliteral)

##### Initializers

- [init(nilLiteral: ())](/documentation/swift/expressiblebynilliteral/init(nilliteral:))
- [StaticBigInt](/documentation/swift/staticbigint)

##### Instance Properties

- [var bitWidth: Int](/documentation/swift/staticbigint/bitwidth)

##### Instance Methods

- [func signum() -> Int](/documentation/swift/staticbigint/signum())

##### Subscripts

- [subscript(Int) -> UInt](/documentation/swift/staticbigint/subscript(_:))

##### Type Aliases

- [StaticBigInt.IntegerLiteralType](/documentation/swift/staticbigint/integerliteraltype)

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/staticbigint/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/staticbigint/debugdescription)
- [CustomReflectable Implementations](/documentation/swift/staticbigint/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/staticbigint/custommirror)
- [ExpressibleByIntegerLiteral Implementations](/documentation/swift/staticbigint/expressiblebyintegerliteral-implementations)

###### Initializers

- [init(integerLiteral: Self)](/documentation/swift/staticbigint/init(integerliteral:))

#### String Literals

- [ExpressibleByStringLiteral](/documentation/swift/expressiblebystringliteral)

##### Associated Types

- [StringLiteralType](/documentation/swift/expressiblebystringliteral/stringliteraltype)

##### Initializers

- [init(stringLiteral: Self.StringLiteralType)](/documentation/swift/expressiblebystringliteral/init(stringliteral:))
- [ExpressibleByExtendedGraphemeClusterLiteral](/documentation/swift/expressiblebyextendedgraphemeclusterliteral)

##### Associated Types

- [ExtendedGraphemeClusterLiteralType](/documentation/swift/expressiblebyextendedgraphemeclusterliteral/extendedgraphemeclusterliteraltype)

##### Initializers

- [init(extendedGraphemeClusterLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/expressiblebyextendedgraphemeclusterliteral/init(extendedgraphemeclusterliteral:))

###### ExpressibleByExtendedGraphemeClusterLiteral Implementations

- [init(extendedGraphemeClusterLiteral: Self.StringLiteralType)](/documentation/swift/expressiblebyextendedgraphemeclusterliteral/init(extendedgraphemeclusterliteral:)-6bx13)
- [ExpressibleByUnicodeScalarLiteral](/documentation/swift/expressiblebyunicodescalarliteral)

##### Associated Types

- [UnicodeScalarLiteralType](/documentation/swift/expressiblebyunicodescalarliteral/unicodescalarliteraltype)

##### Initializers

- [init(unicodeScalarLiteral: Self.UnicodeScalarLiteralType)](/documentation/swift/expressiblebyunicodescalarliteral/init(unicodescalarliteral:))

###### ExpressibleByUnicodeScalarLiteral Implementations

- [init(unicodeScalarLiteral: Self.ExtendedGraphemeClusterLiteralType)](/documentation/swift/expressiblebyunicodescalarliteral/init(unicodescalarliteral:)-9khmq)
- [ExpressibleByStringInterpolation](/documentation/swift/expressiblebystringinterpolation)

##### Associated Types

- [StringInterpolation](/documentation/swift/expressiblebystringinterpolation/stringinterpolation)

##### Initializers

- [init(stringInterpolation: Self.StringInterpolation)](/documentation/swift/expressiblebystringinterpolation/init(stringinterpolation:))

###### ExpressibleByStringInterpolation Implementations

- [init(stringInterpolation: DefaultStringInterpolation)](/documentation/swift/expressiblebystringinterpolation/init(stringinterpolation:)-hhnp)
- [StringInterpolationProtocol](/documentation/swift/stringinterpolationprotocol)

##### Associated Types

- [StringLiteralType](/documentation/swift/stringinterpolationprotocol/stringliteraltype)

##### Initializers

- [init(literalCapacity: Int, interpolationCount: Int)](/documentation/swift/stringinterpolationprotocol/init(literalcapacity:interpolationcount:))

##### Instance Methods

- [func appendLiteral(Self.StringLiteralType)](/documentation/swift/stringinterpolationprotocol/appendliteral(_:))
- [DefaultStringInterpolation](/documentation/swift/defaultstringinterpolation)

##### Initializers

- [init(literalCapacity: Int, interpolationCount: Int)](/documentation/swift/defaultstringinterpolation/init(literalcapacity:interpolationcount:))

##### Instance Methods

- [func appendInterpolation<T>(T)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:)-2bzja)
- [func appendInterpolation<T>(T)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:)-468zr)
- [func appendInterpolation<T>(T)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:)-6kx4d)
- [func appendInterpolation<T>(T)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:)-8x6aw)
- [func appendInterpolation(any Any.Type)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:)-jfy9)
- [func appendInterpolation<T>(T?, default: @autoclosure () -> some StringProtocol)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:default:)-4b2j8)
- [func appendInterpolation<T>(T?, default: @autoclosure () -> some StringProtocol)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:default:)-64wk7)
- [func appendInterpolation<T>(T?, default: @autoclosure () -> some StringProtocol)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:default:)-8wdp1)
- [func appendInterpolation<T>(T?, default: @autoclosure () -> some StringProtocol)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:default:)-9dh5y)
- [func appendInterpolation<T>(T?, default: String)](/documentation/swift/defaultstringinterpolation/appendinterpolation(_:default:)-ue3g)
- [func appendLiteral(String)](/documentation/swift/defaultstringinterpolation/appendliteral(_:))

##### Type Aliases

- [DefaultStringInterpolation.StringLiteralType](/documentation/swift/defaultstringinterpolation/stringliteraltype)

##### Default Implementations

- [CustomStringConvertible Implementations](/documentation/swift/defaultstringinterpolation/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/defaultstringinterpolation/description)
- [TextOutputStream Implementations](/documentation/swift/defaultstringinterpolation/textoutputstream-implementations)

###### Instance Methods

- [func write(String)](/documentation/swift/defaultstringinterpolation/write(_:))

#### Default Types for Literals

- [Default Literal Types](/documentation/swift/default-literal-types)

##### Basic Values

- [BooleanLiteralType](/documentation/swift/booleanliteraltype)
- [IntegerLiteralType](/documentation/swift/integerliteraltype)
- [FloatLiteralType](/documentation/swift/floatliteraltype)

##### Strings and Text

- [StringLiteralType](/documentation/swift/stringliteraltype)
- [ExtendedGraphemeClusterType](/documentation/swift/extendedgraphemeclustertype)
- [UnicodeScalarType](/documentation/swift/unicodescalartype)

### Programming Tasks

- [Input and Output](/documentation/swift/input-and-output)

#### Text Output

- [func print(Any..., separator: String, terminator: String)](/documentation/swift/print(_:separator:terminator:))
- [func print<Target>(Any..., separator: String, terminator: String, to: inout Target)](/documentation/swift/print(_:separator:terminator:to:))

#### Command Line Input

- [CommandLine](/documentation/swift/commandline)

##### Accessing Arguments

- [static var arguments: [String]](/documentation/swift/commandline/arguments)

##### Accessing Raw Argument Data

- [static var argc: Int32](/documentation/swift/commandline/argc)
- [static var unsafeArgv: UnsafeMutablePointer<UnsafeMutablePointer<Int8>?>](/documentation/swift/commandline/unsafeargv)
- [func readLine(strippingNewline: Bool) -> String?](/documentation/swift/readline(strippingnewline:))

#### Streams

- [TextOutputStream](/documentation/swift/textoutputstream)

##### Instance Methods

- [func write(String)](/documentation/swift/textoutputstream/write(_:))
- [TextOutputStreamable](/documentation/swift/textoutputstreamable)

##### Instance Methods

- [func write<Target>(to: inout Target)](/documentation/swift/textoutputstreamable/write(to:))
- [Debugging and Reflection](/documentation/swift/debugging-and-reflection)

#### Printing and Dumping

- [func print(Any..., separator: String, terminator: String)](/documentation/swift/print(_:separator:terminator:))
- [func print<Target>(Any..., separator: String, terminator: String, to: inout Target)](/documentation/swift/print(_:separator:terminator:to:))
- [func debugPrint(Any..., separator: String, terminator: String)](/documentation/swift/debugprint(_:separator:terminator:))
- [func debugPrint<Target>(Any..., separator: String, terminator: String, to: inout Target)](/documentation/swift/debugprint(_:separator:terminator:to:))
- [func dump<T>(T, name: String?, indent: Int, maxDepth: Int, maxItems: Int) -> T](/documentation/swift/dump(_:name:indent:maxdepth:maxitems:))
- [func dump<T, TargetStream>(T, to: inout TargetStream, name: String?, indent: Int, maxDepth: Int, maxItems: Int) -> T](/documentation/swift/dump(_:to:name:indent:maxdepth:maxitems:))

#### Testing

- [func assert(@autoclosure () -> Bool, @autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/assert(_:_:file:line:))
- [func assertionFailure(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/assertionfailure(_:file:line:))
- [func precondition(@autoclosure () -> Bool, @autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/precondition(_:_:file:line:))
- [func preconditionFailure(@autoclosure () -> String, file: StaticString, line: UInt) -> Never](/documentation/swift/preconditionfailure(_:file:line:))

#### Exiting a Program

- [func fatalError(@autoclosure () -> String, file: StaticString, line: UInt) -> Never](/documentation/swift/fatalerror(_:file:line:))
- [Never](/documentation/swift/never)

##### Type Aliases

- [Never.MapContentValue](/documentation/swift/never/mapcontentvalue)
- [Never.Specification](/documentation/swift/never/specification)
- [Never.UnwrappedType](/documentation/swift/never/unwrappedtype)
- [Never.ValueType](/documentation/swift/never/valuetype)

##### Type Properties

- [static var defaultResolverSpecification: EmptyResolverSpecification<Never>](/documentation/swift/never/defaultresolverspecification)

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/never/atomicrepresentable-implementations)

###### Type Aliases

- [Never.AtomicRepresentation](/documentation/swift/never/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Never) -> Never](/documentation/swift/never/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Never) -> Never](/documentation/swift/never/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/never/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/never/'...(_:)-45ng)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/never/'...(_:)-8j8j6)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/never/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/never/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/never/'.._(_:_:))
- [static func < (Never, Never) -> Bool](/documentation/swift/never/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/never/_(_:_:)-26oxe)
- [static func <= (Self, Self) -> Bool](/documentation/swift/never/_=(_:_:)-8zp5u)
- [static func >= (Self, Self) -> Bool](/documentation/swift/never/_=(_:_:)-999en)
- [Decodable Implementations](/documentation/swift/never/decodable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/never/init(from:))
- [Encodable Implementations](/documentation/swift/never/encodable-implementations)

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/never/encode(to:))
- [Equatable Implementations](/documentation/swift/never/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/never/!=(_:_:))
- [static func == (Never, Never) -> Bool](/documentation/swift/never/==(_:_:))
- [Hashable Implementations](/documentation/swift/never/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/never/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/never/hash(into:))
- [Identifiable Implementations](/documentation/swift/never/identifiable-implementations)

###### Instance Properties

- [var id: Never](/documentation/swift/never/id-swift.property)

###### Type Aliases

- [Never.ID](/documentation/swift/never/id-swift.typealias)
- [TestScoping Implementations](/documentation/swift/never/testscoping-implementations)

###### Instance Methods

- [func provideScope(for: Test, testCase: Test.Case?, performing: () async throws -> Void) async throws](/documentation/swift/never/providescope(for:testcase:performing:))

#### Querying Runtime Values

- [Mirror](/documentation/swift/mirror)

##### Querying Descendants

- [func descendant(any MirrorPath, any MirrorPath...) -> Any?](/documentation/swift/mirror/descendant(_:_:))
- [MirrorPath](/documentation/swift/mirrorpath)

##### Initializers

- [init<Subject>(Subject, children: KeyValuePairs<String, Any>, displayStyle: Mirror.DisplayStyle?, ancestorRepresentation: Mirror.AncestorRepresentation)](/documentation/swift/mirror/init(_:children:displaystyle:ancestorrepresentation:)-34d91)
- [init<Subject, C>(Subject, children: C, displayStyle: Mirror.DisplayStyle?, ancestorRepresentation: Mirror.AncestorRepresentation)](/documentation/swift/mirror/init(_:children:displaystyle:ancestorrepresentation:)-4af97)
- [init<Subject, C>(Subject, unlabeledChildren: C, displayStyle: Mirror.DisplayStyle?, ancestorRepresentation: Mirror.AncestorRepresentation)](/documentation/swift/mirror/init(_:unlabeledchildren:displaystyle:ancestorrepresentation:))
- [init(reflecting: Any)](/documentation/swift/mirror/init(reflecting:))

##### Instance Properties

- [let children: Mirror.Children](/documentation/swift/mirror/children-swift.property)
- [let displayStyle: Mirror.DisplayStyle?](/documentation/swift/mirror/displaystyle-swift.property)
- [let subjectType: any Any.Type](/documentation/swift/mirror/subjecttype)
- [var superclassMirror: Mirror?](/documentation/swift/mirror/superclassmirror)

##### Type Aliases

- [Mirror.Child](/documentation/swift/mirror/child)
- [Mirror.Children](/documentation/swift/mirror/children-swift.typealias)

##### Enumerations

- [Mirror.AncestorRepresentation](/documentation/swift/mirror/ancestorrepresentation)

###### Enumeration Cases

- [case customized(() -> Mirror)](/documentation/swift/mirror/ancestorrepresentation/customized(_:))
- [case generated](/documentation/swift/mirror/ancestorrepresentation/generated)
- [case suppressed](/documentation/swift/mirror/ancestorrepresentation/suppressed)
- [Mirror.DisplayStyle](/documentation/swift/mirror/displaystyle-swift.enum)

###### Operators

- [static func == (Mirror.DisplayStyle, Mirror.DisplayStyle) -> Bool](/documentation/swift/mirror/displaystyle-swift.enum/==(_:_:))

###### Enumeration Cases

- [case `class`](/documentation/swift/mirror/displaystyle-swift.enum/class)
- [case collection](/documentation/swift/mirror/displaystyle-swift.enum/collection)
- [case dictionary](/documentation/swift/mirror/displaystyle-swift.enum/dictionary)
- [case `enum`](/documentation/swift/mirror/displaystyle-swift.enum/enum)
- [case foreignReference](/documentation/swift/mirror/displaystyle-swift.enum/foreignreference)
- [case optional](/documentation/swift/mirror/displaystyle-swift.enum/optional)
- [case set](/documentation/swift/mirror/displaystyle-swift.enum/set)
- [case `struct`](/documentation/swift/mirror/displaystyle-swift.enum/struct)
- [case tuple](/documentation/swift/mirror/displaystyle-swift.enum/tuple)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/mirror/displaystyle-swift.enum/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/mirror/displaystyle-swift.enum/hash(into:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/mirror/displaystyle-swift.enum/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/mirror/displaystyle-swift.enum/!=(_:_:))

##### Default Implementations

- [CustomReflectable Implementations](/documentation/swift/mirror/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/mirror/custommirror)
- [CustomStringConvertible Implementations](/documentation/swift/mirror/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/mirror/description)
- [ObjectIdentifier](/documentation/swift/objectidentifier)

##### Initializers

- [init(AnyObject)](/documentation/swift/objectidentifier/init(_:)-223xw)
- [init(any (~Copyable & ~Escapable).Type)](/documentation/swift/objectidentifier/init(_:)-52bz1)
- [init(any Any.Type)](/documentation/swift/objectidentifier/init(_:)-86u7l)

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/objectidentifier/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [ObjectIdentifier.AtomicOptionalRepresentation](/documentation/swift/objectidentifier/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming ObjectIdentifier.AtomicOptionalRepresentation) -> ObjectIdentifier?](/documentation/swift/objectidentifier/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming ObjectIdentifier?) -> ObjectIdentifier.AtomicOptionalRepresentation](/documentation/swift/objectidentifier/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/objectidentifier/atomicrepresentable-implementations)

###### Type Aliases

- [ObjectIdentifier.AtomicRepresentation](/documentation/swift/objectidentifier/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming ObjectIdentifier.AtomicRepresentation) -> ObjectIdentifier](/documentation/swift/objectidentifier/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming ObjectIdentifier) -> ObjectIdentifier.AtomicRepresentation](/documentation/swift/objectidentifier/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/objectidentifier/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/objectidentifier/'...(_:)-4mm50)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/objectidentifier/'...(_:)-6ct54)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/objectidentifier/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/objectidentifier/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/objectidentifier/'.._(_:_:))
- [static func < (ObjectIdentifier, ObjectIdentifier) -> Bool](/documentation/swift/objectidentifier/_(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/objectidentifier/_(_:_:)-24u5l)
- [static func <= (Self, Self) -> Bool](/documentation/swift/objectidentifier/_=(_:_:)-1ihi)
- [static func >= (Self, Self) -> Bool](/documentation/swift/objectidentifier/_=(_:_:)-8lyhu)
- [CustomDebugStringConvertible Implementations](/documentation/swift/objectidentifier/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/objectidentifier/debugdescription)
- [Equatable Implementations](/documentation/swift/objectidentifier/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/objectidentifier/!=(_:_:))
- [static func == (ObjectIdentifier, ObjectIdentifier) -> Bool](/documentation/swift/objectidentifier/==(_:_:))
- [Hashable Implementations](/documentation/swift/objectidentifier/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/objectidentifier/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/objectidentifier/hash(into:))
- [func type<T, Metatype>(of: borrowing T) -> Metatype](/documentation/swift/type(of:))

#### Customizing Your Type’s Reflection

- [CustomReflectable](/documentation/swift/customreflectable)

##### Instance Properties

- [var customMirror: Mirror](/documentation/swift/customreflectable/custommirror)
- [CustomLeafReflectable](/documentation/swift/customleafreflectable)
- [CustomPlaygroundDisplayConvertible](/documentation/swift/customplaygrounddisplayconvertible)

##### Instance Properties

- [var playgroundDescription: Any](/documentation/swift/customplaygrounddisplayconvertible/playgrounddescription)
- [PlaygroundQuickLook](/documentation/swift/playgroundquicklook)
- [macro DebugDescription()](/documentation/swift/debugdescription())
- [Macros](/documentation/swift/macros)

#### Essentials

- [Applying Macros](/documentation/swift/applying-macros)

#### Getting Source Location Information

- [macro file<T>() -> T](/documentation/swift/file())
- [macro fileID<T>() -> T](/documentation/swift/fileid())
- [macro filePath<T>() -> T](/documentation/swift/filepath())
- [macro function<T>() -> T](/documentation/swift/function())
- [macro line<T>() -> T](/documentation/swift/line())
- [macro column<T>() -> T](/documentation/swift/column())

#### Generating Compile-Time Diagnostics

- [macro warning(String)](/documentation/swift/warning(_:))
- [macro error(String)](/documentation/swift/error(_:))

#### Writing Custom Macros

- [macro externalMacro<T>(module: String, type: String) -> T](/documentation/swift/externalmacro(module:type:))

#### Accessing the Dynamic Shared Object Handle

- [macro dsohandle() -> UnsafeRawPointer](/documentation/swift/dsohandle())
- [Concurrency](/documentation/swift/concurrency)

#### Essentials

- [Code-along: Elevating an app with Swift concurrency](/documentation/swift/code-along-elevating-an-app-with-swift-concurrency)
- [Updating an app to use strict concurrency](/documentation/swift/updating-an-app-to-use-strict-concurrency)
- [Updating an App to Use Swift Concurrency](/documentation/swift/updating_an_app_to_use_swift_concurrency)

#### Tasks

- [Task](/documentation/swift/task)

##### Creating a Task

- [init(name: String?, priority: TaskPriority?, operation: sending () async -> Success)](/documentation/swift/task/init(name:priority:operation:)-2dll5)
- [init(name: String?, priority: TaskPriority?, operation: sending () async throws -> Success)](/documentation/swift/task/init(name:priority:operation:)-43wmk)
- [init(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Success)](/documentation/swift/task/init(name:executorpreference:priority:operation:)-59bfi)
- [init(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Success)](/documentation/swift/task/init(name:executorpreference:priority:operation:)-81pay)
- [static var currentPriority: TaskPriority](/documentation/swift/task/currentpriority)
- [static var basePriority: TaskPriority?](/documentation/swift/task/basepriority)
- [func withTaskPriorityEscalationHandler<T, E>(operation: nonisolated(nonsending) () async throws(E) -> T, onPriorityEscalated: (TaskPriority, TaskPriority) -> Void) async throws(E) -> T](/documentation/swift/withtaskpriorityescalationhandler(operation:onpriorityescalated:))

##### Creating a Detached Task

- [static func detached(name: String?, priority: TaskPriority?, operation: sending () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/task/detached(name:priority:operation:)-795w1)
- [static func detached(name: String?, priority: TaskPriority?, operation: sending () async -> Success) -> Task<Success, Never>](/documentation/swift/task/detached(name:priority:operation:)-9xki7)
- [static func detached(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/task/detached(name:executorpreference:priority:operation:)-6r16s)
- [static func detached(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Success) -> Task<Success, Never>](/documentation/swift/task/detached(name:executorpreference:priority:operation:)-75ffe)

##### Creating a Task that Starts Immediately

- [static func immediate(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> Success) -> Task<Success, Never>](/documentation/swift/task/immediate(name:priority:executorpreference:operation:)-88o80)
- [static func immediate(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/task/immediate(name:priority:executorpreference:operation:)-9bghc)
- [static func immediateDetached(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/task/immediatedetached(name:priority:executorpreference:operation:)-52ipd)
- [static func immediateDetached(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> Success) -> Task<Success, Never>](/documentation/swift/task/immediatedetached(name:priority:executorpreference:operation:)-7h41b)

##### Accessing Results

- [var value: Success](/documentation/swift/task/value-60t02)
- [var value: Success](/documentation/swift/task/value-40dtq)
- [var result: Result<Success, Failure>](/documentation/swift/task/result)

##### Accessing the Current Task’s Name

- [static var name: String?](/documentation/swift/task/name)

##### Canceling Tasks

- [CancellationError](/documentation/swift/cancellationerror)

###### Initializers

- [init()](/documentation/swift/cancellationerror/init())
- [func cancel()](/documentation/swift/task/cancel())
- [var isCancelled: Bool](/documentation/swift/task/iscancelled-swift.property)
- [static var isCancelled: Bool](/documentation/swift/task/iscancelled-swift.type.property)
- [static func checkCancellation() throws](/documentation/swift/task/checkcancellation())
- [func withTaskCancellationHandler<T>(handler: () -> Void, operation: () async throws -> T) async rethrows -> T](/documentation/swift/withtaskcancellationhandler(handler:operation:))
- [func withTaskCancellationHandler<T>(operation: () async throws -> T, onCancel: () -> Void, isolation: isolated (any Actor)?) async rethrows -> T](/documentation/swift/withtaskcancellationhandler(operation:oncancel:isolation:))

##### Suspending Execution

- [static func yield() async](/documentation/swift/task/yield())
- [static func sleep(nanoseconds: UInt64) async throws](/documentation/swift/task/sleep(nanoseconds:))
- [static func sleep<C>(for: C.Instant.Duration, tolerance: C.Instant.Duration?, clock: C) async throws](/documentation/swift/task/sleep(for:tolerance:clock:))
- [static func sleep<C>(until: C.Instant, tolerance: C.Instant.Duration?, clock: C) async throws](/documentation/swift/task/sleep(until:tolerance:clock:))

##### Escalating Tasks

- [func escalatePriority(to: TaskPriority)](/documentation/swift/task/escalatepriority(to:))

##### Comparing Tasks

- [static func == (Task<Success, Failure>, Task<Success, Failure>) -> Bool](/documentation/swift/task/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/task/!=(_:_:))
- [var hashValue: Int](/documentation/swift/task/hashvalue)
- [func hash(into: inout Hasher)](/documentation/swift/task/hash(into:))

##### Deprecated

- [Task.Group](/documentation/swift/task/group)
- [Task.Handle](/documentation/swift/task/handle)
- [Task.Priority](/documentation/swift/task/priority)
- [static func CancellationError() -> CancellationError](/documentation/swift/task/cancellationerror())
- [func getResult() async -> Result<Success, Failure>](/documentation/swift/task/getresult())
- [func get() async throws -> Success](/documentation/swift/task/get()-4i2gt)
- [func get() async -> Success](/documentation/swift/task/get()-4ohks)
- [static func sleep(UInt64) async](/documentation/swift/task/sleep(_:))
- [static func suspend() async](/documentation/swift/task/suspend())
- [static func runDetached(priority: TaskPriority?, operation: () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/task/rundetached(priority:operation:)-88zf5)
- [static func runDetached(priority: TaskPriority?, operation: () async -> Success) -> Task<Success, Never>](/documentation/swift/task/rundetached(priority:operation:)-8s8lh)
- [static func withCancellationHandler<T>(handler: () -> Void, operation: () async throws -> T) async rethrows -> T](/documentation/swift/task/withcancellationhandler(handler:operation:))
- [static func withGroup<TaskResult, BodyResult>(resultType: TaskResult.Type, returning: BodyResult.Type, body: (inout Task<Success, Failure>.Group<TaskResult>) async throws -> BodyResult) async rethrows -> BodyResult](/documentation/swift/task/withgroup(resulttype:returning:body:))

##### Default Implementations

- [Equatable Implementations](/documentation/swift/task/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/task/!=(_:_:))
- [static func == (Task<Success, Failure>, Task<Success, Failure>) -> Bool](/documentation/swift/task/==(_:_:))
- [Hashable Implementations](/documentation/swift/task/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/task/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/task/hash(into:))
- [TaskGroup](/documentation/swift/taskgroup)

##### Adding Tasks to a Task Group

- [func addTask(priority: TaskPriority?, operation: sending () async -> ChildTaskResult)](/documentation/swift/taskgroup/addtask(priority:operation:))
- [func addTask(name: String?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult)](/documentation/swift/taskgroup/addtask(name:priority:operation:))
- [func addTask(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult)](/documentation/swift/taskgroup/addtask(executorpreference:priority:operation:))
- [func addTask(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult)](/documentation/swift/taskgroup/addtask(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/addtaskunlesscancelled(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/addtaskunlesscancelled(executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, priority: TaskPriority?, operation: sending () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/addtaskunlesscancelled(name:priority:operation:))
- [func addTaskUnlessCancelled(priority: TaskPriority?, operation: sending () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/addtaskunlesscancelled(priority:operation:))
- [func addImmediateTask(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> ChildTaskResult)](/documentation/swift/taskgroup/addimmediatetask(name:priority:executorpreference:operation:))
- [func addImmediateTaskUnlessCancelled(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/addimmediatetaskunlesscancelled(name:priority:executorpreference:operation:))

##### Accessing Individual Results

- [func next() async -> ChildTaskResult?](/documentation/swift/taskgroup/next())
- [func next(isolation: isolated (any Actor)?) async -> ChildTaskResult?](/documentation/swift/taskgroup/next(isolation:))
- [var isEmpty: Bool](/documentation/swift/taskgroup/isempty)
- [func waitForAll(isolation: isolated (any Actor)?) async](/documentation/swift/taskgroup/waitforall(isolation:))

##### Accessing an Asynchronous Sequence of Results

- [func makeAsyncIterator() -> TaskGroup<ChildTaskResult>.Iterator](/documentation/swift/taskgroup/makeasynciterator())
- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/taskgroup/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/taskgroup/compactmap(_:)-944od)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/taskgroup/compactmap(_:)-7mgj1)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/taskgroup/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/taskgroup/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/taskgroup/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/taskgroup/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/taskgroup/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/taskgroup/flatmap(_:)-vhi3)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/taskgroup/map(_:)-58nsr)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/taskgroup/map(_:)-4a4kq)
- [func max() async rethrows -> Self.Element?](/documentation/swift/taskgroup/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/taskgroup/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/taskgroup/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/taskgroup/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/taskgroup/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/taskgroup/reduce(into:_:))

##### Canceling Tasks

- [var isCancelled: Bool](/documentation/swift/taskgroup/iscancelled)
- [func cancelAll()](/documentation/swift/taskgroup/cancelall())

##### Supporting Types

- [TaskGroup.Element](/documentation/swift/taskgroup/element)
- [TaskGroup.Iterator](/documentation/swift/taskgroup/iterator)

###### Instance Methods

- [func cancel()](/documentation/swift/taskgroup/iterator/cancel())
- [func next() async -> TaskGroup<ChildTaskResult>.Iterator.Element?](/documentation/swift/taskgroup/iterator/next())
- [func next(isolation: isolated (any Actor)?) async -> TaskGroup<ChildTaskResult>.Iterator.Element?](/documentation/swift/taskgroup/iterator/next(isolation:))

###### Type Aliases

- [TaskGroup.Iterator.Element](/documentation/swift/taskgroup/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/taskgroup/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/taskgroup/iterator/next()-2yir7)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/taskgroup/iterator/next(isolation:)-7ynwt)
- [TaskGroup.AsyncIterator](/documentation/swift/taskgroup/asynciterator)

##### Deprecated

- [func add(priority: TaskPriority?, operation: () async -> ChildTaskResult) async -> Bool](/documentation/swift/taskgroup/add(priority:operation:))
- [func async(priority: TaskPriority?, operation: () async -> ChildTaskResult)](/documentation/swift/taskgroup/async(priority:operation:))
- [func asyncUnlessCancelled(priority: TaskPriority?, operation: () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/asyncunlesscancelled(priority:operation:))
- [func spawn(priority: TaskPriority?, operation: () async -> ChildTaskResult)](/documentation/swift/taskgroup/spawn(priority:operation:))
- [func spawnUnlessCancelled(priority: TaskPriority?, operation: () async -> ChildTaskResult) -> Bool](/documentation/swift/taskgroup/spawnunlesscancelled(priority:operation:))

##### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/taskgroup/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/taskgroup/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/taskgroup/compactmap(_:)-7mgj1)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/taskgroup/compactmap(_:)-944od)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/taskgroup/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/taskgroup/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/taskgroup/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/taskgroup/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/taskgroup/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/taskgroup/flatmap(_:)-319dv)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/taskgroup/flatmap(_:)-8vec4)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/taskgroup/flatmap(_:)-dwte)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/taskgroup/flatmap(_:)-vhi3)
- [func makeAsyncIterator() -> TaskGroup<ChildTaskResult>.Iterator](/documentation/swift/taskgroup/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/taskgroup/map(_:)-4a4kq)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/taskgroup/map(_:)-58nsr)
- [func max() async rethrows -> Self.Element?](/documentation/swift/taskgroup/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/taskgroup/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/taskgroup/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/taskgroup/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/taskgroup/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/taskgroup/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/taskgroup/reduce(into:_:))

###### Type Aliases

- [TaskGroup.AsyncIterator](/documentation/swift/taskgroup/asynciterator)
- [TaskGroup.Element](/documentation/swift/taskgroup/element)
- [func withTaskGroup<ChildTaskResult, GroupResult>(of: ChildTaskResult.Type, returning: GroupResult.Type, isolation: isolated (any Actor)?, body: (inout TaskGroup<ChildTaskResult>) async -> GroupResult) async -> GroupResult](/documentation/swift/withtaskgroup(of:returning:isolation:body:))
- [ThrowingTaskGroup](/documentation/swift/throwingtaskgroup)

##### Adding Tasks to a Throwing Task Group

- [func addTask(priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/addtask(priority:operation:))
- [func addTask(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/addtask(executorpreference:priority:operation:))
- [func addTask(name: String?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/addtask(name:priority:operation:))
- [func addTask(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/addtask(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/addtaskunlesscancelled(priority:operation:))
- [func addTaskUnlessCancelled(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/addtaskunlesscancelled(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/addtaskunlesscancelled(executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, priority: TaskPriority?, operation: sending () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/addtaskunlesscancelled(name:priority:operation:))
- [func addImmediateTask(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/addimmediatetask(name:priority:executorpreference:operation:))
- [func addImmediateTaskUnlessCancelled(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/addimmediatetaskunlesscancelled(name:priority:executorpreference:operation:))

##### Accessing Individual Results

- [func next() async throws -> ChildTaskResult?](/documentation/swift/throwingtaskgroup/next())
- [func nextResult(isolation: isolated (any Actor)?) async -> Result<ChildTaskResult, Failure>?](/documentation/swift/throwingtaskgroup/nextresult(isolation:))
- [func next(isolation: isolated (any Actor)?) async throws -> ChildTaskResult?](/documentation/swift/throwingtaskgroup/next(isolation:))
- [var isEmpty: Bool](/documentation/swift/throwingtaskgroup/isempty)
- [func waitForAll(isolation: isolated (any Actor)?) async throws](/documentation/swift/throwingtaskgroup/waitforall(isolation:))

##### Accessing an Asynchronous Sequence of Results

- [func makeAsyncIterator() -> ThrowingTaskGroup<ChildTaskResult, Failure>.Iterator](/documentation/swift/throwingtaskgroup/makeasynciterator())
- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/throwingtaskgroup/compactmap(_:)-944nh)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/throwingtaskgroup/compactmap(_:)-7mgi5)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/throwingtaskgroup/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/throwingtaskgroup/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/throwingtaskgroup/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/first(where:))
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/throwingtaskgroup/map(_:)-58nrv)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/throwingtaskgroup/map(_:)-4a4ju)
- [func max() async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/throwingtaskgroup/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/throwingtaskgroup/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/throwingtaskgroup/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/throwingtaskgroup/reduce(into:_:))

##### Canceling Tasks

- [var isCancelled: Bool](/documentation/swift/throwingtaskgroup/iscancelled)
- [func cancelAll()](/documentation/swift/throwingtaskgroup/cancelall())

##### Supporting Types

- [ThrowingTaskGroup.Element](/documentation/swift/throwingtaskgroup/element)
- [ThrowingTaskGroup.Iterator](/documentation/swift/throwingtaskgroup/iterator)

###### Instance Methods

- [func cancel()](/documentation/swift/throwingtaskgroup/iterator/cancel())
- [func next() async throws -> ThrowingTaskGroup<ChildTaskResult, Failure>.Iterator.Element?](/documentation/swift/throwingtaskgroup/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(Failure) -> ThrowingTaskGroup<ChildTaskResult, Failure>.Iterator.Element?](/documentation/swift/throwingtaskgroup/iterator/next(isolation:))

###### Type Aliases

- [ThrowingTaskGroup.Iterator.Element](/documentation/swift/throwingtaskgroup/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/throwingtaskgroup/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/throwingtaskgroup/iterator/next()-99987)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/throwingtaskgroup/iterator/next(isolation:)-7gzyx)
- [ThrowingTaskGroup.AsyncIterator](/documentation/swift/throwingtaskgroup/asynciterator)

##### Deprecated

- [func add(priority: TaskPriority?, operation: () async throws -> ChildTaskResult) async -> Bool](/documentation/swift/throwingtaskgroup/add(priority:operation:))
- [func async(priority: TaskPriority?, operation: () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/async(priority:operation:))
- [func asyncUnlessCancelled(priority: TaskPriority?, operation: () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/asyncunlesscancelled(priority:operation:))
- [func spawn(priority: TaskPriority?, operation: () async throws -> ChildTaskResult)](/documentation/swift/throwingtaskgroup/spawn(priority:operation:))
- [func spawnUnlessCancelled(priority: TaskPriority?, operation: () async throws -> ChildTaskResult) -> Bool](/documentation/swift/throwingtaskgroup/spawnunlesscancelled(priority:operation:))

##### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/throwingtaskgroup/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/throwingtaskgroup/compactmap(_:)-7mgi5)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/throwingtaskgroup/compactmap(_:)-944nh)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/throwingtaskgroup/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/throwingtaskgroup/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/throwingtaskgroup/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/throwingtaskgroup/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/throwingtaskgroup/flatmap(_:)-319er)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/throwingtaskgroup/flatmap(_:)-8ved0)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/throwingtaskgroup/flatmap(_:)-dwsi)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/throwingtaskgroup/flatmap(_:)-vhiz)
- [func makeAsyncIterator() -> ThrowingTaskGroup<ChildTaskResult, Failure>.Iterator](/documentation/swift/throwingtaskgroup/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/throwingtaskgroup/map(_:)-4a4ju)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/throwingtaskgroup/map(_:)-58nrv)
- [func max() async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/throwingtaskgroup/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/throwingtaskgroup/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/throwingtaskgroup/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/throwingtaskgroup/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/throwingtaskgroup/reduce(into:_:))

###### Type Aliases

- [ThrowingTaskGroup.AsyncIterator](/documentation/swift/throwingtaskgroup/asynciterator)
- [ThrowingTaskGroup.Element](/documentation/swift/throwingtaskgroup/element)
- [func withThrowingTaskGroup<ChildTaskResult, GroupResult>(of: ChildTaskResult.Type, returning: GroupResult.Type, isolation: isolated (any Actor)?, body: (inout ThrowingTaskGroup<ChildTaskResult, any Error>) async throws -> GroupResult) async rethrows -> GroupResult](/documentation/swift/withthrowingtaskgroup(of:returning:isolation:body:))
- [TaskPriority](/documentation/swift/taskpriority)

##### Operators

- [static func != (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/!=(_:_:))

##### Initializers

- [init?(JobPriority)](/documentation/swift/taskpriority/init(_:))
- [init(rawValue: UInt8)](/documentation/swift/taskpriority/init(rawvalue:))

##### Instance Properties

- [var rawValue: UInt8](/documentation/swift/taskpriority/rawvalue-swift.property)

##### Type Aliases

- [TaskPriority.RawValue](/documentation/swift/taskpriority/rawvalue-swift.typealias)

##### Type Properties

- [static let background: TaskPriority](/documentation/swift/taskpriority/background)
- [static let `default`: TaskPriority](/documentation/swift/taskpriority/default)
- [static let high: TaskPriority](/documentation/swift/taskpriority/high)
- [static let low: TaskPriority](/documentation/swift/taskpriority/low)
- [static var medium: TaskPriority](/documentation/swift/taskpriority/medium)
- [static var unspecified: TaskPriority](/documentation/swift/taskpriority/unspecified)
- [static let userInitiated: TaskPriority](/documentation/swift/taskpriority/userinitiated)
- [static var userInteractive: TaskPriority](/documentation/swift/taskpriority/userinteractive)
- [static let utility: TaskPriority](/documentation/swift/taskpriority/utility)

##### Default Implementations

- [Comparable Implementations](/documentation/swift/taskpriority/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/taskpriority/'...(_:)-49lx1)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/taskpriority/'...(_:)-79mxl)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/taskpriority/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/taskpriority/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/taskpriority/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/taskpriority/_(_:_:)-14u28)
- [static func < (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/_(_:_:)-1lk58)
- [static func > (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/_(_:_:)-9yifb)
- [static func <= (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/_=(_:_:)-17ymu)
- [static func >= (Self, Self) -> Bool](/documentation/swift/taskpriority/_=(_:_:)-3pf1e)
- [static func <= (Self, Self) -> Bool](/documentation/swift/taskpriority/_=(_:_:)-6xec7)
- [static func >= (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/_=(_:_:)-7pich)
- [CustomStringConvertible Implementations](/documentation/swift/taskpriority/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/taskpriority/description)
- [Equatable Implementations](/documentation/swift/taskpriority/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/taskpriority/!=(_:_:)-60fd)
- [static func == (TaskPriority, TaskPriority) -> Bool](/documentation/swift/taskpriority/==(_:_:))
- [RawRepresentable Implementations](/documentation/swift/taskpriority/rawrepresentable-implementations)

###### Initializers

- [init(from: any Decoder) throws](/documentation/swift/taskpriority/init(from:))

###### Instance Methods

- [func encode(to: any Encoder) throws](/documentation/swift/taskpriority/encode(to:))
- [DiscardingTaskGroup](/documentation/swift/discardingtaskgroup)

##### Instance Properties

- [var isCancelled: Bool](/documentation/swift/discardingtaskgroup/iscancelled)
- [var isEmpty: Bool](/documentation/swift/discardingtaskgroup/isempty)

##### Instance Methods

- [func addImmediateTask(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> Void)](/documentation/swift/discardingtaskgroup/addimmediatetask(name:priority:executorpreference:operation:))
- [func addImmediateTaskUnlessCancelled(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async -> Void) -> Bool](/documentation/swift/discardingtaskgroup/addimmediatetaskunlesscancelled(name:priority:executorpreference:operation:))
- [func addTask(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Void)](/documentation/swift/discardingtaskgroup/addtask(executorpreference:priority:operation:))
- [func addTask(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Void)](/documentation/swift/discardingtaskgroup/addtask(name:executorpreference:priority:operation:))
- [func addTask(name: String?, priority: TaskPriority?, operation: sending () async -> Void)](/documentation/swift/discardingtaskgroup/addtask(name:priority:operation:))
- [func addTask(priority: TaskPriority?, operation: sending () async -> Void)](/documentation/swift/discardingtaskgroup/addtask(priority:operation:))
- [func addTaskUnlessCancelled(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Void) -> Bool](/documentation/swift/discardingtaskgroup/addtaskunlesscancelled(executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async -> Void) -> Bool](/documentation/swift/discardingtaskgroup/addtaskunlesscancelled(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, priority: TaskPriority?, operation: sending () async -> Void) -> Bool](/documentation/swift/discardingtaskgroup/addtaskunlesscancelled(name:priority:operation:))
- [func addTaskUnlessCancelled(priority: TaskPriority?, operation: sending () async -> Void) -> Bool](/documentation/swift/discardingtaskgroup/addtaskunlesscancelled(priority:operation:))
- [func cancelAll()](/documentation/swift/discardingtaskgroup/cancelall())
- [func withDiscardingTaskGroup<GroupResult>(returning: GroupResult.Type, isolation: isolated (any Actor)?, body: (inout DiscardingTaskGroup) async -> GroupResult) async -> GroupResult](/documentation/swift/withdiscardingtaskgroup(returning:isolation:body:))
- [ThrowingDiscardingTaskGroup](/documentation/swift/throwingdiscardingtaskgroup)

##### Instance Properties

- [var isCancelled: Bool](/documentation/swift/throwingdiscardingtaskgroup/iscancelled)
- [var isEmpty: Bool](/documentation/swift/throwingdiscardingtaskgroup/isempty)

##### Instance Methods

- [func addImmediateTask(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> Void)](/documentation/swift/throwingdiscardingtaskgroup/addimmediatetask(name:priority:executorpreference:operation:))
- [func addImmediateTaskUnlessCancelled(name: String?, priority: TaskPriority?, executorPreference: consuming (any TaskExecutor)?, operation: sending () async throws -> Void) -> Bool](/documentation/swift/throwingdiscardingtaskgroup/addimmediatetaskunlesscancelled(name:priority:executorpreference:operation:))
- [func addTask(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Void)](/documentation/swift/throwingdiscardingtaskgroup/addtask(executorpreference:priority:operation:))
- [func addTask(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Void)](/documentation/swift/throwingdiscardingtaskgroup/addtask(name:executorpreference:priority:operation:))
- [func addTask(name: String?, priority: TaskPriority?, operation: sending () async throws -> Void)](/documentation/swift/throwingdiscardingtaskgroup/addtask(name:priority:operation:))
- [func addTask(priority: TaskPriority?, operation: sending () async throws -> Void)](/documentation/swift/throwingdiscardingtaskgroup/addtask(priority:operation:))
- [func addTaskUnlessCancelled(executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Void) -> Bool](/documentation/swift/throwingdiscardingtaskgroup/addtaskunlesscancelled(executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, executorPreference: (any TaskExecutor)?, priority: TaskPriority?, operation: sending () async throws -> Void) -> Bool](/documentation/swift/throwingdiscardingtaskgroup/addtaskunlesscancelled(name:executorpreference:priority:operation:))
- [func addTaskUnlessCancelled(name: String?, priority: TaskPriority?, operation: sending () async throws -> Void) -> Bool](/documentation/swift/throwingdiscardingtaskgroup/addtaskunlesscancelled(name:priority:operation:))
- [func addTaskUnlessCancelled(priority: TaskPriority?, operation: sending () async throws -> Void) -> Bool](/documentation/swift/throwingdiscardingtaskgroup/addtaskunlesscancelled(priority:operation:))
- [func cancelAll()](/documentation/swift/throwingdiscardingtaskgroup/cancelall())
- [func withThrowingDiscardingTaskGroup<GroupResult>(returning: GroupResult.Type, isolation: isolated (any Actor)?, body: (inout ThrowingDiscardingTaskGroup<any Error>) async throws -> GroupResult) async throws -> GroupResult](/documentation/swift/withthrowingdiscardingtaskgroup(returning:isolation:body:))
- [UnsafeCurrentTask](/documentation/swift/unsafecurrenttask)

##### Getting an Unsafe Reference to the Current Task

- [func withUnsafeCurrentTask<T>(body: (UnsafeCurrentTask?) throws -> T) rethrows -> T](/documentation/swift/withunsafecurrenttask(body:)-6gvhl)
- [func withUnsafeCurrentTask<T>(body: (UnsafeCurrentTask?) async throws -> T) async rethrows -> T](/documentation/swift/withunsafecurrenttask(body:)-2cbzn)

##### Instance Properties

- [var basePriority: TaskPriority](/documentation/swift/unsafecurrenttask/basepriority)
- [var isCancelled: Bool](/documentation/swift/unsafecurrenttask/iscancelled)
- [var priority: TaskPriority](/documentation/swift/unsafecurrenttask/priority)
- [var unownedTaskExecutor: UnownedTaskExecutor?](/documentation/swift/unsafecurrenttask/unownedtaskexecutor)

##### Instance Methods

- [func cancel()](/documentation/swift/unsafecurrenttask/cancel())
- [func escalatePriority(to: TaskPriority)](/documentation/swift/unsafecurrenttask/escalatepriority(to:))

##### Default Implementations

- [Equatable Implementations](/documentation/swift/unsafecurrenttask/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unsafecurrenttask/!=(_:_:))
- [static func == (UnsafeCurrentTask, UnsafeCurrentTask) -> Bool](/documentation/swift/unsafecurrenttask/==(_:_:))
- [Hashable Implementations](/documentation/swift/unsafecurrenttask/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unsafecurrenttask/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unsafecurrenttask/hash(into:))

#### Asynchronous Sequences

- [AsyncSequence](/documentation/swift/asyncsequence)

##### Creating an Iterator

- [func makeAsyncIterator() -> Self.AsyncIterator](/documentation/swift/asyncsequence/makeasynciterator())
- [AsyncIterator](/documentation/swift/asyncsequence/asynciterator)
- [AsyncIteratorProtocol](/documentation/swift/asynciteratorprotocol)

###### Declaring Iterator Topography

- [Element](/documentation/swift/asynciteratorprotocol/element)

###### Producing Iterator Values

- [func next() async throws -> Self.Element?](/documentation/swift/asynciteratorprotocol/next())

###### AsyncIteratorProtocol Implementations

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asynciteratorprotocol/next()-4a3d9)

###### Associated Types

- [Failure](/documentation/swift/asynciteratorprotocol/failure)

###### Instance Methods

- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asynciteratorprotocol/next(isolation:))

###### AsyncIteratorProtocol Implementations

- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asynciteratorprotocol/next(isolation:)-6htqd)
- [Element](/documentation/swift/asyncsequence/element)

##### Finding Elements

- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncsequence/contains(where:))
- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncsequence/allsatisfy(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncsequence/first(where:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncsequence/min(by:))
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncsequence/max(by:))

##### Selecting Elements

- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncsequence/prefix(_:))
- [AsyncPrefixSequence](/documentation/swift/asyncprefixsequence)

###### Structures

- [AsyncPrefixSequence.Iterator](/documentation/swift/asyncprefixsequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Base.Element?](/documentation/swift/asyncprefixsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncPrefixSequence<Base>.Failure) -> Base.Element?](/documentation/swift/asyncprefixsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncPrefixSequence.Iterator.Element](/documentation/swift/asyncprefixsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncprefixsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncprefixsequence/iterator/next()-4oocd)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncprefixsequence/iterator/next(isolation:)-96z8m)

###### Type Aliases

- [AsyncPrefixSequence.Failure](/documentation/swift/asyncprefixsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncprefixsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncprefixsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncprefixsequence/compactmap(_:)-7mqjp)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncprefixsequence/compactmap(_:)-8mr7y)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncprefixsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncprefixsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncprefixsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncprefixsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncprefixsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixsequence/flatmap(_:)-1bs0d)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixsequence/flatmap(_:)-2i6pa)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixsequence/flatmap(_:)-9he54)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixsequence/flatmap(_:)-9pb6k)
- [func makeAsyncIterator() -> AsyncPrefixSequence<Base>.Iterator](/documentation/swift/asyncprefixsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncprefixsequence/map(_:)-4lvqv)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncprefixsequence/map(_:)-5kpov)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncprefixsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncprefixsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncprefixsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncprefixsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncprefixsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncprefixsequence/reduce(into:_:))

###### Type Aliases

- [AsyncPrefixSequence.AsyncIterator](/documentation/swift/asyncprefixsequence/asynciterator)
- [AsyncPrefixSequence.Element](/documentation/swift/asyncprefixsequence/element)
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncsequence/prefix(while:)-2xy95)
- [AsyncPrefixWhileSequence](/documentation/swift/asyncprefixwhilesequence)

###### Structures

- [AsyncPrefixWhileSequence.Iterator](/documentation/swift/asyncprefixwhilesequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Base.Element?](/documentation/swift/asyncprefixwhilesequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncPrefixWhileSequence<Base>.Failure) -> Base.Element?](/documentation/swift/asyncprefixwhilesequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncPrefixWhileSequence.Iterator.Element](/documentation/swift/asyncprefixwhilesequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncprefixwhilesequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/iterator/next()-72tqd)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/iterator/next(isolation:)-4dc20)

###### Type Aliases

- [AsyncPrefixWhileSequence.Failure](/documentation/swift/asyncprefixwhilesequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncprefixwhilesequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncprefixwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncprefixwhilesequence/compactmap(_:)-1in33)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncprefixwhilesequence/compactmap(_:)-1wsos)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncprefixwhilesequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncprefixwhilesequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncprefixwhilesequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncprefixwhilesequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncprefixwhilesequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixwhilesequence/flatmap(_:)-3eezo)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixwhilesequence/flatmap(_:)-8hi9x)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixwhilesequence/flatmap(_:)-8nr2n)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncprefixwhilesequence/flatmap(_:)-n0iz)
- [func makeAsyncIterator() -> AsyncPrefixWhileSequence<Base>.Iterator](/documentation/swift/asyncprefixwhilesequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncprefixwhilesequence/map(_:)-46zuh)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncprefixwhilesequence/map(_:)-8is9u)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncprefixwhilesequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncprefixwhilesequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncprefixwhilesequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncprefixwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncprefixwhilesequence/reduce(into:_:))

###### Type Aliases

- [AsyncPrefixWhileSequence.AsyncIterator](/documentation/swift/asyncprefixwhilesequence/asynciterator)
- [AsyncPrefixWhileSequence.Element](/documentation/swift/asyncprefixwhilesequence/element)
- [func prefix(while: (Self.Element) async throws -> Bool) rethrows -> AsyncThrowingPrefixWhileSequence<Self>](/documentation/swift/asyncsequence/prefix(while:)-6yp5n)
- [AsyncThrowingPrefixWhileSequence](/documentation/swift/asyncthrowingprefixwhilesequence)

###### Structures

- [AsyncThrowingPrefixWhileSequence.Iterator](/documentation/swift/asyncthrowingprefixwhilesequence/iterator)

###### Instance Methods

- [func next() async throws -> Base.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> Base.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingPrefixWhileSequence.Iterator.Element](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/next()-8ijyt)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/iterator/next(isolation:)-4t5g)

###### Type Aliases

- [AsyncThrowingPrefixWhileSequence.Failure](/documentation/swift/asyncthrowingprefixwhilesequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingprefixwhilesequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingprefixwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/compactmap(_:)-31ugu)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/compactmap(_:)-9ygtu)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingprefixwhilesequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingprefixwhilesequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingprefixwhilesequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingprefixwhilesequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingprefixwhilesequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/flatmap(_:)-3cfsb)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/flatmap(_:)-3cold)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/flatmap(_:)-3i346)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingprefixwhilesequence/flatmap(_:)-6zto4)
- [func makeAsyncIterator() -> AsyncThrowingPrefixWhileSequence<Base>.Iterator](/documentation/swift/asyncthrowingprefixwhilesequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingprefixwhilesequence/map(_:)-60mi5)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingprefixwhilesequence/map(_:)-9610l)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingprefixwhilesequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingprefixwhilesequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingprefixwhilesequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingprefixwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingprefixwhilesequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingPrefixWhileSequence.AsyncIterator](/documentation/swift/asyncthrowingprefixwhilesequence/asynciterator)
- [AsyncThrowingPrefixWhileSequence.Element](/documentation/swift/asyncthrowingprefixwhilesequence/element)

##### Excluding Elements

- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncsequence/dropfirst(_:))
- [AsyncDropFirstSequence](/documentation/swift/asyncdropfirstsequence)

###### Structures

- [AsyncDropFirstSequence.Iterator](/documentation/swift/asyncdropfirstsequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Base.Element?](/documentation/swift/asyncdropfirstsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncDropFirstSequence<Base>.Failure) -> Base.Element?](/documentation/swift/asyncdropfirstsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncDropFirstSequence.Iterator.Element](/documentation/swift/asyncdropfirstsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncdropfirstsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncdropfirstsequence/iterator/next()-9cp7j)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncdropfirstsequence/iterator/next(isolation:)-46dp7)

###### Instance Methods

- [func dropFirst(Int) -> AsyncDropFirstSequence<Base>](/documentation/swift/asyncdropfirstsequence/dropfirst(_:))

###### Type Aliases

- [AsyncDropFirstSequence.Failure](/documentation/swift/asyncdropfirstsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncdropfirstsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncdropfirstsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncdropfirstsequence/compactmap(_:)-874pn)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncdropfirstsequence/compactmap(_:)-9jfg4)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncdropfirstsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncdropfirstsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncdropfirstsequence/drop(while:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncdropfirstsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropfirstsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropfirstsequence/flatmap(_:)-3aiq0)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropfirstsequence/flatmap(_:)-3k0kz)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropfirstsequence/flatmap(_:)-7bcb8)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropfirstsequence/flatmap(_:)-8x7ty)
- [func makeAsyncIterator() -> AsyncDropFirstSequence<Base>.Iterator](/documentation/swift/asyncdropfirstsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncdropfirstsequence/map(_:)-7g3xh)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncdropfirstsequence/map(_:)-8nbqn)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncdropfirstsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropfirstsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncdropfirstsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropfirstsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncdropfirstsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncdropfirstsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncdropfirstsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncdropfirstsequence/reduce(into:_:))

###### Type Aliases

- [AsyncDropFirstSequence.AsyncIterator](/documentation/swift/asyncdropfirstsequence/asynciterator)
- [AsyncDropFirstSequence.Element](/documentation/swift/asyncdropfirstsequence/element)
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncsequence/drop(while:)-9sp3b)
- [AsyncDropWhileSequence](/documentation/swift/asyncdropwhilesequence)

###### Structures

- [AsyncDropWhileSequence.Iterator](/documentation/swift/asyncdropwhilesequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Base.Element?](/documentation/swift/asyncdropwhilesequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncDropWhileSequence<Base>.Failure) -> Base.Element?](/documentation/swift/asyncdropwhilesequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncDropWhileSequence.Iterator.Element](/documentation/swift/asyncdropwhilesequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncdropwhilesequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncdropwhilesequence/iterator/next()-6nmld)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncdropwhilesequence/iterator/next(isolation:)-6b5gu)

###### Type Aliases

- [AsyncDropWhileSequence.Failure](/documentation/swift/asyncdropwhilesequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncdropwhilesequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncdropwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncdropwhilesequence/compactmap(_:)-1c7j6)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncdropwhilesequence/compactmap(_:)-2brmn)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncdropwhilesequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncdropwhilesequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncdropwhilesequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncdropwhilesequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncdropwhilesequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropwhilesequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropwhilesequence/flatmap(_:)-3btqf)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropwhilesequence/flatmap(_:)-7jz5y)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropwhilesequence/flatmap(_:)-8txej)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncdropwhilesequence/flatmap(_:)-9k3hd)
- [func makeAsyncIterator() -> AsyncDropWhileSequence<Base>.Iterator](/documentation/swift/asyncdropwhilesequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncdropwhilesequence/map(_:)-4ntdo)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncdropwhilesequence/map(_:)-785ao)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncdropwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropwhilesequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncdropwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncdropwhilesequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncdropwhilesequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncdropwhilesequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncdropwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncdropwhilesequence/reduce(into:_:))

###### Type Aliases

- [AsyncDropWhileSequence.AsyncIterator](/documentation/swift/asyncdropwhilesequence/asynciterator)
- [AsyncDropWhileSequence.Element](/documentation/swift/asyncdropwhilesequence/element)
- [func drop(while: (Self.Element) async throws -> Bool) -> AsyncThrowingDropWhileSequence<Self>](/documentation/swift/asyncsequence/drop(while:)-67kgo)
- [AsyncThrowingDropWhileSequence](/documentation/swift/asyncthrowingdropwhilesequence)

###### Structures

- [AsyncThrowingDropWhileSequence.Iterator](/documentation/swift/asyncthrowingdropwhilesequence/iterator)

###### Instance Methods

- [func next() async throws -> Base.Element?](/documentation/swift/asyncthrowingdropwhilesequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> Base.Element?](/documentation/swift/asyncthrowingdropwhilesequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingDropWhileSequence.Iterator.Element](/documentation/swift/asyncthrowingdropwhilesequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingdropwhilesequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/iterator/next()-3odrt)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/iterator/next(isolation:)-323s)

###### Type Aliases

- [AsyncThrowingDropWhileSequence.Failure](/documentation/swift/asyncthrowingdropwhilesequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingdropwhilesequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingdropwhilesequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/compactmap(_:)-11hbc)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/compactmap(_:)-1pl3p)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingdropwhilesequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingdropwhilesequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingdropwhilesequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingdropwhilesequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingdropwhilesequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/flatmap(_:)-1kre6)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/flatmap(_:)-3m83p)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/flatmap(_:)-5gwyv)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingdropwhilesequence/flatmap(_:)-86tec)
- [func makeAsyncIterator() -> AsyncThrowingDropWhileSequence<Base>.Iterator](/documentation/swift/asyncthrowingdropwhilesequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingdropwhilesequence/map(_:)-2zjn)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingdropwhilesequence/map(_:)-8i9r9)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingdropwhilesequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingdropwhilesequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingdropwhilesequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingdropwhilesequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingdropwhilesequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingDropWhileSequence.AsyncIterator](/documentation/swift/asyncthrowingdropwhilesequence/asynciterator)
- [AsyncThrowingDropWhileSequence.Element](/documentation/swift/asyncthrowingdropwhilesequence/element)
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncsequence/filter(_:)-435af)
- [AsyncFilterSequence](/documentation/swift/asyncfiltersequence)

###### Structures

- [AsyncFilterSequence.Iterator](/documentation/swift/asyncfiltersequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Base.Element?](/documentation/swift/asyncfiltersequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncFilterSequence<Base>.Failure) -> Base.Element?](/documentation/swift/asyncfiltersequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncFilterSequence.Iterator.Element](/documentation/swift/asyncfiltersequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncfiltersequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncfiltersequence/iterator/next()-32s0r)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncfiltersequence/iterator/next(isolation:)-7czxv)

###### Type Aliases

- [AsyncFilterSequence.Failure](/documentation/swift/asyncfiltersequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncfiltersequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncfiltersequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncfiltersequence/compactmap(_:)-1ux9n)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncfiltersequence/compactmap(_:)-670wo)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncfiltersequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncfiltersequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncfiltersequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncfiltersequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncfiltersequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncfiltersequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncfiltersequence/flatmap(_:)-5h1r5)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncfiltersequence/flatmap(_:)-7q9h4)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncfiltersequence/flatmap(_:)-8hfy4)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncfiltersequence/flatmap(_:)-kp0l)
- [func makeAsyncIterator() -> AsyncFilterSequence<Base>.Iterator](/documentation/swift/asyncfiltersequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncfiltersequence/map(_:)-9wvb)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncfiltersequence/map(_:)-ljd0)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncfiltersequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncfiltersequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncfiltersequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncfiltersequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncfiltersequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncfiltersequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncfiltersequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncfiltersequence/reduce(into:_:))

###### Type Aliases

- [AsyncFilterSequence.AsyncIterator](/documentation/swift/asyncfiltersequence/asynciterator)
- [AsyncFilterSequence.Element](/documentation/swift/asyncfiltersequence/element)
- [func filter((Self.Element) async throws -> Bool) -> AsyncThrowingFilterSequence<Self>](/documentation/swift/asyncsequence/filter(_:)-2cc0l)
- [AsyncThrowingFilterSequence](/documentation/swift/asyncthrowingfiltersequence)

###### Structures

- [AsyncThrowingFilterSequence.Iterator](/documentation/swift/asyncthrowingfiltersequence/iterator)

###### Instance Methods

- [func next() async throws -> Base.Element?](/documentation/swift/asyncthrowingfiltersequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> Base.Element?](/documentation/swift/asyncthrowingfiltersequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingFilterSequence.Iterator.Element](/documentation/swift/asyncthrowingfiltersequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingfiltersequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/iterator/next()-5cr1d)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/iterator/next(isolation:)-4w94d)

###### Type Aliases

- [AsyncThrowingFilterSequence.Failure](/documentation/swift/asyncthrowingfiltersequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingfiltersequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingfiltersequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingfiltersequence/compactmap(_:)-6sxlx)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingfiltersequence/compactmap(_:)-7anrq)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingfiltersequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingfiltersequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingfiltersequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingfiltersequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingfiltersequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingfiltersequence/flatmap(_:)-4l7g6)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingfiltersequence/flatmap(_:)-646yb)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingfiltersequence/flatmap(_:)-jrk7)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingfiltersequence/flatmap(_:)-lxav)
- [func makeAsyncIterator() -> AsyncThrowingFilterSequence<Base>.Iterator](/documentation/swift/asyncthrowingfiltersequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingfiltersequence/map(_:)-56b34)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingfiltersequence/map(_:)-6flae)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingfiltersequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingfiltersequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingfiltersequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingfiltersequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingfiltersequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingFilterSequence.AsyncIterator](/documentation/swift/asyncthrowingfiltersequence/asynciterator)
- [AsyncThrowingFilterSequence.Element](/documentation/swift/asyncthrowingfiltersequence/element)

##### Transforming a Sequence

- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncsequence/map(_:)-1q1k3)
- [AsyncMapSequence](/documentation/swift/asyncmapsequence)

###### Structures

- [AsyncMapSequence.Iterator](/documentation/swift/asyncmapsequence/iterator)

###### Instance Methods

- [func next() async rethrows -> Transformed?](/documentation/swift/asyncmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncMapSequence<Base, Transformed>.Failure) -> Transformed?](/documentation/swift/asyncmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncMapSequence.Iterator.Element](/documentation/swift/asyncmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncmapsequence/iterator/next()-38mq7)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncmapsequence/iterator/next(isolation:)-5gvj0)

###### Type Aliases

- [AsyncMapSequence.Failure](/documentation/swift/asyncmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncmapsequence/compactmap(_:)-4o22y)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncmapsequence/compactmap(_:)-uilo)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncmapsequence/flatmap(_:)-5qysc)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncmapsequence/flatmap(_:)-6a783)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncmapsequence/flatmap(_:)-7ou68)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncmapsequence/flatmap(_:)-8b4cj)
- [func makeAsyncIterator() -> AsyncMapSequence<Base, Transformed>.Iterator](/documentation/swift/asyncmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncmapsequence/map(_:)-70w52)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncmapsequence/map(_:)-upx4)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncMapSequence.AsyncIterator](/documentation/swift/asyncmapsequence/asynciterator)
- [AsyncMapSequence.Element](/documentation/swift/asyncmapsequence/element)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncsequence/map(_:)-70wgb)
- [AsyncThrowingMapSequence](/documentation/swift/asyncthrowingmapsequence)

###### Structures

- [AsyncThrowingMapSequence.Iterator](/documentation/swift/asyncthrowingmapsequence/iterator)

###### Instance Methods

- [func next() async throws -> Transformed?](/documentation/swift/asyncthrowingmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> Transformed?](/documentation/swift/asyncthrowingmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingMapSequence.Iterator.Element](/documentation/swift/asyncthrowingmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/iterator/next()-7a2r8)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/iterator/next(isolation:)-82aes)

###### Type Aliases

- [AsyncThrowingMapSequence.Failure](/documentation/swift/asyncthrowingmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingmapsequence/compactmap(_:)-1rx1n)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingmapsequence/compactmap(_:)-91i6y)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingmapsequence/flatmap(_:)-1wg0y)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingmapsequence/flatmap(_:)-3jfma)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingmapsequence/flatmap(_:)-53stf)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingmapsequence/flatmap(_:)-9qxu8)
- [func makeAsyncIterator() -> AsyncThrowingMapSequence<Base, Transformed>.Iterator](/documentation/swift/asyncthrowingmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingmapsequence/map(_:)-845vf)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingmapsequence/map(_:)-9s7sb)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingMapSequence.AsyncIterator](/documentation/swift/asyncthrowingmapsequence/asynciterator)
- [AsyncThrowingMapSequence.Element](/documentation/swift/asyncthrowingmapsequence/element)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncsequence/compactmap(_:)-gfdq)
- [AsyncCompactMapSequence](/documentation/swift/asynccompactmapsequence)

###### Structures

- [AsyncCompactMapSequence.Iterator](/documentation/swift/asynccompactmapsequence/iterator)

###### Instance Methods

- [func next() async rethrows -> ElementOfResult?](/documentation/swift/asynccompactmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncCompactMapSequence<Base, ElementOfResult>.Failure) -> ElementOfResult?](/documentation/swift/asynccompactmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncCompactMapSequence.Iterator.Element](/documentation/swift/asynccompactmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asynccompactmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asynccompactmapsequence/iterator/next()-6kurh)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asynccompactmapsequence/iterator/next(isolation:)-3izjf)

###### Type Aliases

- [AsyncCompactMapSequence.Failure](/documentation/swift/asynccompactmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asynccompactmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asynccompactmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asynccompactmapsequence/compactmap(_:)-2zfm7)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asynccompactmapsequence/compactmap(_:)-9t1q8)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asynccompactmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asynccompactmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asynccompactmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asynccompactmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asynccompactmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asynccompactmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asynccompactmapsequence/flatmap(_:)-4d56a)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asynccompactmapsequence/flatmap(_:)-7yxkz)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asynccompactmapsequence/flatmap(_:)-9qp1p)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asynccompactmapsequence/flatmap(_:)-zzcb)
- [func makeAsyncIterator() -> AsyncCompactMapSequence<Base, ElementOfResult>.Iterator](/documentation/swift/asynccompactmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asynccompactmapsequence/map(_:)-21iha)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asynccompactmapsequence/map(_:)-8rz0x)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asynccompactmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asynccompactmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asynccompactmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asynccompactmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asynccompactmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asynccompactmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asynccompactmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asynccompactmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncCompactMapSequence.AsyncIterator](/documentation/swift/asynccompactmapsequence/asynciterator)
- [AsyncCompactMapSequence.Element](/documentation/swift/asynccompactmapsequence/element)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncsequence/compactmap(_:)-1f8zn)
- [AsyncThrowingCompactMapSequence](/documentation/swift/asyncthrowingcompactmapsequence)

###### Structures

- [AsyncThrowingCompactMapSequence.Iterator](/documentation/swift/asyncthrowingcompactmapsequence/iterator)

###### Instance Methods

- [func next() async throws -> ElementOfResult?](/documentation/swift/asyncthrowingcompactmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> ElementOfResult?](/documentation/swift/asyncthrowingcompactmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingCompactMapSequence.Iterator.Element](/documentation/swift/asyncthrowingcompactmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingcompactmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/iterator/next()-1g8b3)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/iterator/next(isolation:)-5p1be)

###### Type Aliases

- [AsyncThrowingCompactMapSequence.Failure](/documentation/swift/asyncthrowingcompactmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingcompactmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingcompactmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/compactmap(_:)-1ecis)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/compactmap(_:)-48ay0)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingcompactmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingcompactmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingcompactmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingcompactmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingcompactmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/flatmap(_:)-1xasg)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/flatmap(_:)-2z57q)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/flatmap(_:)-3px1q)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingcompactmapsequence/flatmap(_:)-9kji)
- [func makeAsyncIterator() -> AsyncThrowingCompactMapSequence<Base, ElementOfResult>.Iterator](/documentation/swift/asyncthrowingcompactmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingcompactmapsequence/map(_:)-3dlzg)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingcompactmapsequence/map(_:)-98iwe)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingcompactmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingcompactmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingcompactmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingcompactmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingcompactmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingCompactMapSequence.AsyncIterator](/documentation/swift/asyncthrowingcompactmapsequence/asynciterator)
- [AsyncThrowingCompactMapSequence.Element](/documentation/swift/asyncthrowingcompactmapsequence/element)
- [AsyncFlatMapSequence](/documentation/swift/asyncflatmapsequence)

###### Structures

- [AsyncFlatMapSequence.Iterator](/documentation/swift/asyncflatmapsequence/iterator)

###### Instance Methods

- [func next() async rethrows -> SegmentOfResult.Element?](/documentation/swift/asyncflatmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws(AsyncFlatMapSequence<Base, SegmentOfResult>.Failure) -> SegmentOfResult.Element?](/documentation/swift/asyncflatmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncFlatMapSequence.Iterator.Element](/documentation/swift/asyncflatmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncflatmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncflatmapsequence/iterator/next()-gdo7)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncflatmapsequence/iterator/next(isolation:)-2t08d)

###### Type Aliases

- [AsyncFlatMapSequence.Failure](/documentation/swift/asyncflatmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncflatmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncflatmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncflatmapsequence/compactmap(_:)-2yntz)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncflatmapsequence/compactmap(_:)-4j12y)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncflatmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncflatmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncflatmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncflatmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncflatmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncflatmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncflatmapsequence/flatmap(_:)-2m43v)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncflatmapsequence/flatmap(_:)-541qn)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncflatmapsequence/flatmap(_:)-67uer)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncflatmapsequence/flatmap(_:)-7wopu)
- [func makeAsyncIterator() -> AsyncFlatMapSequence<Base, SegmentOfResult>.Iterator](/documentation/swift/asyncflatmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncflatmapsequence/map(_:)-5ncr2)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncflatmapsequence/map(_:)-wssh)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncflatmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncflatmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncflatmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncflatmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncflatmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncflatmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncflatmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncflatmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncFlatMapSequence.AsyncIterator](/documentation/swift/asyncflatmapsequence/asynciterator)
- [AsyncFlatMapSequence.Element](/documentation/swift/asyncflatmapsequence/element)
- [AsyncThrowingFlatMapSequence](/documentation/swift/asyncthrowingflatmapsequence)

###### Structures

- [AsyncThrowingFlatMapSequence.Iterator](/documentation/swift/asyncthrowingflatmapsequence/iterator)

###### Instance Methods

- [func next() async throws -> SegmentOfResult.Element?](/documentation/swift/asyncthrowingflatmapsequence/iterator/next())
- [func next(isolation: isolated (any Actor)?) async throws -> SegmentOfResult.Element?](/documentation/swift/asyncthrowingflatmapsequence/iterator/next(isolation:))

###### Type Aliases

- [AsyncThrowingFlatMapSequence.Iterator.Element](/documentation/swift/asyncthrowingflatmapsequence/iterator/element)

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingflatmapsequence/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/iterator/next()-9sxa4)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/iterator/next(isolation:)-1y6ga)

###### Type Aliases

- [AsyncThrowingFlatMapSequence.Failure](/documentation/swift/asyncthrowingflatmapsequence/failure)

###### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingflatmapsequence/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingflatmapsequence/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingflatmapsequence/compactmap(_:)-4299z)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingflatmapsequence/compactmap(_:)-8k2p7)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingflatmapsequence/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingflatmapsequence/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingflatmapsequence/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingflatmapsequence/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingflatmapsequence/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingflatmapsequence/flatmap(_:)-305n4)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingflatmapsequence/flatmap(_:)-39bbv)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingflatmapsequence/flatmap(_:)-6oqyf)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingflatmapsequence/flatmap(_:)-917rm)
- [func makeAsyncIterator() -> AsyncThrowingFlatMapSequence<Base, SegmentOfResult>.Iterator](/documentation/swift/asyncthrowingflatmapsequence/makeasynciterator())
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingflatmapsequence/map(_:)-81b46)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingflatmapsequence/map(_:)-p3ci)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingflatmapsequence/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingflatmapsequence/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingflatmapsequence/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingflatmapsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingflatmapsequence/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingFlatMapSequence.AsyncIterator](/documentation/swift/asyncthrowingflatmapsequence/asynciterator)
- [AsyncThrowingFlatMapSequence.Element](/documentation/swift/asyncthrowingflatmapsequence/element)
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncsequence/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncsequence/reduce(into:_:))

##### Adapting Textual Sequences

- [var characters: AsyncCharacterSequence<Self>](/documentation/swift/asyncsequence/characters)
- [AsyncCharacterSequence](/documentation/foundation/asynccharactersequence)
- [var unicodeScalars: AsyncUnicodeScalarSequence<Self>](/documentation/swift/asyncsequence/unicodescalars)
- [AsyncUnicodeScalarSequence](/documentation/foundation/asyncunicodescalarsequence)
- [var lines: AsyncLineSequence<Self>](/documentation/swift/asyncsequence/lines)
- [AsyncLineSequence](/documentation/foundation/asynclinesequence)

##### Associated Types

- [Failure](/documentation/swift/asyncsequence/failure)

##### Instance Methods

- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncsequence/flatmap(_:)-4bl9a)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncsequence/flatmap(_:)-54rrt)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncsequence/flatmap(_:)-5j8ra)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncsequence/flatmap(_:)-5rn1j)
- [AsyncStream](/documentation/swift/asyncstream)

##### Creating a Continuation-Based Stream

- [init(Element.Type, bufferingPolicy: AsyncStream<Element>.Continuation.BufferingPolicy, (AsyncStream<Element>.Continuation) -> Void)](/documentation/swift/asyncstream/init(_:bufferingpolicy:_:))
- [AsyncStream.Continuation.BufferingPolicy](/documentation/swift/asyncstream/continuation/bufferingpolicy)

###### Buffering Policies

- [case unbounded](/documentation/swift/asyncstream/continuation/bufferingpolicy/unbounded)
- [case bufferingOldest(Int)](/documentation/swift/asyncstream/continuation/bufferingpolicy/bufferingoldest(_:))
- [case bufferingNewest(Int)](/documentation/swift/asyncstream/continuation/bufferingpolicy/bufferingnewest(_:))
- [AsyncStream.Continuation](/documentation/swift/asyncstream/continuation)

###### Producing Elements

- [func yield(sending Element) -> AsyncStream<Element>.Continuation.YieldResult](/documentation/swift/asyncstream/continuation/yield(_:))
- [func yield(with: sending Result<Element, Never>) -> AsyncStream<Element>.Continuation.YieldResult](/documentation/swift/asyncstream/continuation/yield(with:))
- [func yield() -> AsyncStream<Element>.Continuation.YieldResult](/documentation/swift/asyncstream/continuation/yield())
- [AsyncStream.Continuation.YieldResult](/documentation/swift/asyncstream/continuation/yieldresult)

###### Yield Results

- [case enqueued(remaining: Int)](/documentation/swift/asyncstream/continuation/yieldresult/enqueued(remaining:))
- [case dropped(Element)](/documentation/swift/asyncstream/continuation/yieldresult/dropped(_:))
- [case terminated](/documentation/swift/asyncstream/continuation/yieldresult/terminated)

###### Finishing the Stream

- [func finish()](/documentation/swift/asyncstream/continuation/finish())

###### Handling Termination

- [var onTermination: ((AsyncStream<Element>.Continuation.Termination) -> Void)?](/documentation/swift/asyncstream/continuation/ontermination)
- [AsyncStream.Continuation.Termination](/documentation/swift/asyncstream/continuation/termination)

###### Termination States

- [case finished](/documentation/swift/asyncstream/continuation/termination/finished)
- [case cancelled](/documentation/swift/asyncstream/continuation/termination/cancelled)

###### Hashing

- [var hashValue: Int](/documentation/swift/asyncstream/continuation/termination/hashvalue)
- [func hash(into: inout Hasher)](/documentation/swift/asyncstream/continuation/termination/hash(into:))

###### Comparing Termination Values

- [static func == (AsyncStream<Element>.Continuation.Termination, AsyncStream<Element>.Continuation.Termination) -> Bool](/documentation/swift/asyncstream/continuation/termination/==(_:_:))
- [static func != (Self, Self) -> Bool](/documentation/swift/asyncstream/continuation/termination/!=(_:_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/asyncstream/continuation/termination/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/asyncstream/continuation/termination/!=(_:_:))

###### Enumerations

- [AsyncStream.Continuation.BufferingPolicy](/documentation/swift/asyncstream/continuation/bufferingpolicy)

###### Buffering Policies

- [case unbounded](/documentation/swift/asyncstream/continuation/bufferingpolicy/unbounded)
- [case bufferingOldest(Int)](/documentation/swift/asyncstream/continuation/bufferingpolicy/bufferingoldest(_:))
- [case bufferingNewest(Int)](/documentation/swift/asyncstream/continuation/bufferingpolicy/bufferingnewest(_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/asyncstream/continuation/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/asyncstream/continuation/!=(_:_:))
- [static func == (AsyncStream<Element>.Continuation, AsyncStream<Element>.Continuation) -> Bool](/documentation/swift/asyncstream/continuation/==(_:_:))
- [Hashable Implementations](/documentation/swift/asyncstream/continuation/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/asyncstream/continuation/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/asyncstream/continuation/hash(into:))

##### Creating a Stream from an Asynchronous Function

- [init(unfolding: () async -> Element?, onCancel: (() -> Void)?)](/documentation/swift/asyncstream/init(unfolding:oncancel:))

##### Finding Elements

- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncstream/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncstream/contains(where:))
- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncstream/allsatisfy(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/first(where:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncstream/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/min(by:))
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncstream/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/max(by:))

##### Selecting Elements

- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncstream/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncstream/prefix(while:))

##### Excluding Elements

- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncstream/dropfirst(_:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncstream/drop(while:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncstream/filter(_:))

##### Transforming a Sequence

- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncstream/map(_:)-58nsf)
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncstream/map(_:)-4a4la)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncstream/compactmap(_:)-7mgjd)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncstream/compactmap(_:)-944op)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncstream/flatmap(_:)-vhhr)
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncstream/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncstream/reduce(into:_:))

##### Creating an Iterator

- [func makeAsyncIterator() -> AsyncStream<Element>.Iterator](/documentation/swift/asyncstream/makeasynciterator())
- [AsyncStream.Iterator](/documentation/swift/asyncstream/iterator)

###### Iterating over Elements

- [func next() async -> Element?](/documentation/swift/asyncstream/iterator/next())

###### Instance Methods

- [func next(isolation: isolated (any Actor)?) async -> Element?](/documentation/swift/asyncstream/iterator/next(isolation:))

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncstream/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncstream/iterator/next()-2smzy)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncstream/iterator/next(isolation:)-76wez)

##### Supporting Types

- [AsyncStream.AsyncIterator](/documentation/swift/asyncstream/asynciterator)

##### Type Methods

- [static func makeStream(of: Element.Type, bufferingPolicy: AsyncStream<Element>.Continuation.BufferingPolicy) -> (stream: AsyncStream<Element>, continuation: AsyncStream<Element>.Continuation)](/documentation/swift/asyncstream/makestream(of:bufferingpolicy:))

##### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncstream/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncstream/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncstream/compactmap(_:)-7mgjd)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncstream/compactmap(_:)-944op)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncstream/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncstream/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncstream/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncstream/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncstream/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncstream/flatmap(_:)-319ef)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncstream/flatmap(_:)-8vebk)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncstream/flatmap(_:)-dwty)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncstream/flatmap(_:)-vhhr)
- [func makeAsyncIterator() -> AsyncStream<Element>.Iterator](/documentation/swift/asyncstream/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncstream/map(_:)-4a4la)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncstream/map(_:)-58nsf)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncstream/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncstream/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncstream/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncstream/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncstream/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncstream/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncstream/reduce(into:_:))

###### Type Aliases

- [AsyncStream.AsyncIterator](/documentation/swift/asyncstream/asynciterator)
- [AsyncThrowingStream](/documentation/swift/asyncthrowingstream)

##### Creating a Continuation-Based Stream

- [init(Element.Type, bufferingPolicy: AsyncThrowingStream<Element, Failure>.Continuation.BufferingPolicy, (AsyncThrowingStream<Element, Failure>.Continuation) -> Void)](/documentation/swift/asyncthrowingstream/init(_:bufferingpolicy:_:))
- [AsyncThrowingStream.Continuation.BufferingPolicy](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy)

###### Buffering Policies

- [case unbounded](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/unbounded)
- [case bufferingOldest(Int)](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/bufferingoldest(_:))
- [case bufferingNewest(Int)](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/bufferingnewest(_:))
- [AsyncThrowingStream.Continuation](/documentation/swift/asyncthrowingstream/continuation)

###### Producing Elements

- [func yield(sending Element) -> AsyncThrowingStream<Element, Failure>.Continuation.YieldResult](/documentation/swift/asyncthrowingstream/continuation/yield(_:))
- [func yield(with: sending Result<Element, Failure>) -> AsyncThrowingStream<Element, Failure>.Continuation.YieldResult](/documentation/swift/asyncthrowingstream/continuation/yield(with:))
- [func yield() -> AsyncThrowingStream<Element, Failure>.Continuation.YieldResult](/documentation/swift/asyncthrowingstream/continuation/yield())
- [AsyncThrowingStream.Continuation.YieldResult](/documentation/swift/asyncthrowingstream/continuation/yieldresult)

###### Yield Results

- [case enqueued(remaining: Int)](/documentation/swift/asyncthrowingstream/continuation/yieldresult/enqueued(remaining:))
- [case dropped(Element)](/documentation/swift/asyncthrowingstream/continuation/yieldresult/dropped(_:))
- [case terminated](/documentation/swift/asyncthrowingstream/continuation/yieldresult/terminated)

###### Finishing the Stream

- [func finish(throwing: Failure?)](/documentation/swift/asyncthrowingstream/continuation/finish(throwing:))

###### Handling Termination

- [var onTermination: ((AsyncThrowingStream<Element, Failure>.Continuation.Termination) -> Void)?](/documentation/swift/asyncthrowingstream/continuation/ontermination)
- [AsyncThrowingStream.Continuation.Termination](/documentation/swift/asyncthrowingstream/continuation/termination)

###### Termination States

- [case finished(Failure?)](/documentation/swift/asyncthrowingstream/continuation/termination/finished(_:))
- [case cancelled](/documentation/swift/asyncthrowingstream/continuation/termination/cancelled)

###### Enumerations

- [AsyncThrowingStream.Continuation.BufferingPolicy](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy)

###### Buffering Policies

- [case unbounded](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/unbounded)
- [case bufferingOldest(Int)](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/bufferingoldest(_:))
- [case bufferingNewest(Int)](/documentation/swift/asyncthrowingstream/continuation/bufferingpolicy/bufferingnewest(_:))

###### Default Implementations

- [Equatable Implementations](/documentation/swift/asyncthrowingstream/continuation/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/asyncthrowingstream/continuation/!=(_:_:))
- [static func == (AsyncThrowingStream<Element, Failure>.Continuation, AsyncThrowingStream<Element, Failure>.Continuation) -> Bool](/documentation/swift/asyncthrowingstream/continuation/==(_:_:))
- [Hashable Implementations](/documentation/swift/asyncthrowingstream/continuation/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/asyncthrowingstream/continuation/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/asyncthrowingstream/continuation/hash(into:))

##### Finding Elements

- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/contains(where:))
- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/allsatisfy(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/first(where:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/min(by:))
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/max(by:))

##### Selecting Elements

- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingstream/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingstream/prefix(while:))

##### Excluding Elements

- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingstream/dropfirst(_:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingstream/drop(while:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingstream/filter(_:))

##### Transforming a Sequence

- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingstream/map(_:)-4a4ke)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingstream/map(_:)-58nrj)
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingstream/compactmap(_:)-7mgih)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingstream/compactmap(_:)-944nt)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingstream/flatmap(_:)-vhin)
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingstream/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingstream/reduce(into:_:))

##### Creating an Iterator

- [func makeAsyncIterator() -> AsyncThrowingStream<Element, Failure>.Iterator](/documentation/swift/asyncthrowingstream/makeasynciterator())
- [AsyncThrowingStream.Iterator](/documentation/swift/asyncthrowingstream/iterator)

###### Iterating over Elements

- [func next() async throws -> Element?](/documentation/swift/asyncthrowingstream/iterator/next())

###### Instance Methods

- [func next(isolation: isolated (any Actor)?) async throws(Failure) -> Element?](/documentation/swift/asyncthrowingstream/iterator/next(isolation:))

###### Default Implementations

- [AsyncIteratorProtocol Implementations](/documentation/swift/asyncthrowingstream/iterator/asynciteratorprotocol-implementations)

###### Instance Methods

- [func next() async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingstream/iterator/next()-2s2hx)
- [func next(isolation: isolated (any Actor)?) async throws(Self.Failure) -> Self.Element?](/documentation/swift/asyncthrowingstream/iterator/next(isolation:)-3l7jg)

##### Supporting Types

- [AsyncThrowingStream.AsyncIterator](/documentation/swift/asyncthrowingstream/asynciterator)

##### Initializers

- [init(unfolding: () async throws -> Element?)](/documentation/swift/asyncthrowingstream/init(unfolding:))

##### Type Methods

- [static func makeStream(of: Element.Type, throwing: Failure.Type, bufferingPolicy: AsyncThrowingStream<Element, Failure>.Continuation.BufferingPolicy) -> (stream: AsyncThrowingStream<Element, Failure>, continuation: AsyncThrowingStream<Element, Failure>.Continuation)](/documentation/swift/asyncthrowingstream/makestream(of:throwing:bufferingpolicy:))

##### Default Implementations

- [AsyncSequence Implementations](/documentation/swift/asyncthrowingstream/asyncsequence-implementations)

###### Instance Methods

- [func allSatisfy((Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) async -> ElementOfResult?) -> AsyncCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingstream/compactmap(_:)-7mgih)
- [func compactMap<ElementOfResult>((Self.Element) async throws -> ElementOfResult?) -> AsyncThrowingCompactMapSequence<Self, ElementOfResult>](/documentation/swift/asyncthrowingstream/compactmap(_:)-944nt)
- [func contains(Self.Element) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/contains(_:))
- [func contains(where: (Self.Element) async throws -> Bool) async rethrows -> Bool](/documentation/swift/asyncthrowingstream/contains(where:))
- [func drop(while: (Self.Element) async -> Bool) -> AsyncDropWhileSequence<Self>](/documentation/swift/asyncthrowingstream/drop(while:))
- [func dropFirst(Int) -> AsyncDropFirstSequence<Self>](/documentation/swift/asyncthrowingstream/dropfirst(_:))
- [func filter((Self.Element) async -> Bool) -> AsyncFilterSequence<Self>](/documentation/swift/asyncthrowingstream/filter(_:))
- [func first(where: (Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingstream/flatmap(_:)-319fb)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingstream/flatmap(_:)-8vecg)
- [func flatMap<SegmentOfResult>((Self.Element) async -> SegmentOfResult) -> AsyncFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingstream/flatmap(_:)-dwt2)
- [func flatMap<SegmentOfResult>((Self.Element) async throws -> SegmentOfResult) -> AsyncThrowingFlatMapSequence<Self, SegmentOfResult>](/documentation/swift/asyncthrowingstream/flatmap(_:)-vhin)
- [func makeAsyncIterator() -> AsyncThrowingStream<Element, Failure>.Iterator](/documentation/swift/asyncthrowingstream/makeasynciterator())
- [func map<Transformed>((Self.Element) async -> Transformed) -> AsyncMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingstream/map(_:)-4a4ke)
- [func map<Transformed>((Self.Element) async throws -> Transformed) -> AsyncThrowingMapSequence<Self, Transformed>](/documentation/swift/asyncthrowingstream/map(_:)-58nrj)
- [func max() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/max())
- [func max(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/max(by:))
- [func min() async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/min())
- [func min(by: (Self.Element, Self.Element) async throws -> Bool) async rethrows -> Self.Element?](/documentation/swift/asyncthrowingstream/min(by:))
- [func prefix(Int) -> AsyncPrefixSequence<Self>](/documentation/swift/asyncthrowingstream/prefix(_:))
- [func prefix(while: (Self.Element) async -> Bool) rethrows -> AsyncPrefixWhileSequence<Self>](/documentation/swift/asyncthrowingstream/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) async throws -> Result) async rethrows -> Result](/documentation/swift/asyncthrowingstream/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) async throws -> Void) async rethrows -> Result](/documentation/swift/asyncthrowingstream/reduce(into:_:))

###### Type Aliases

- [AsyncThrowingStream.AsyncIterator](/documentation/swift/asyncthrowingstream/asynciterator)

#### Continuations

- [CheckedContinuation](/documentation/swift/checkedcontinuation)

##### Initializers

- [init(continuation: UnsafeContinuation<T, E>, function: String)](/documentation/swift/checkedcontinuation/init(continuation:function:))

##### Instance Methods

- [func resume()](/documentation/swift/checkedcontinuation/resume())
- [func resume(returning: sending T)](/documentation/swift/checkedcontinuation/resume(returning:))
- [func resume(throwing: E)](/documentation/swift/checkedcontinuation/resume(throwing:))
- [func resume(with: sending Result<T, E>)](/documentation/swift/checkedcontinuation/resume(with:)-3gh60)
- [func resume<Er>(with: sending Result<T, Er>)](/documentation/swift/checkedcontinuation/resume(with:)-5n1a5)
- [func withCheckedContinuation<T>(isolation: isolated (any Actor)?, function: String, (CheckedContinuation<T, Never>) -> Void) async -> sending T](/documentation/swift/withcheckedcontinuation(isolation:function:_:))
- [func withCheckedThrowingContinuation<T>(isolation: isolated (any Actor)?, function: String, (CheckedContinuation<T, any Error>) -> Void) async throws -> sending T](/documentation/swift/withcheckedthrowingcontinuation(isolation:function:_:))
- [UnsafeContinuation](/documentation/swift/unsafecontinuation)

##### Instance Methods

- [func resume()](/documentation/swift/unsafecontinuation/resume())
- [func resume(returning: sending T)](/documentation/swift/unsafecontinuation/resume(returning:)-41kka)
- [func resume(returning: sending T)](/documentation/swift/unsafecontinuation/resume(returning:)-8rtni)
- [func resume(throwing: consuming E)](/documentation/swift/unsafecontinuation/resume(throwing:))
- [func resume(with: sending Result<T, E>)](/documentation/swift/unsafecontinuation/resume(with:)-4t59h)
- [func resume<Er>(with: sending Result<T, Er>)](/documentation/swift/unsafecontinuation/resume(with:)-7t959)
- [func withUnsafeContinuation<T>(isolation: isolated (any Actor)?, (UnsafeContinuation<T, Never>) -> Void) async -> sending T](/documentation/swift/withunsafecontinuation(isolation:_:))
- [UnsafeThrowingContinuation](/documentation/swift/unsafethrowingcontinuation)
- [func withUnsafeThrowingContinuation<T>(isolation: isolated (any Actor)?, (UnsafeContinuation<T, any Error>) -> Void) async throws -> sending T](/documentation/swift/withunsafethrowingcontinuation(isolation:_:))

#### Actors

- [Sendable](/documentation/swift/sendable)
- [Actor](/documentation/swift/actor)

##### Instance Properties

- [var unownedExecutor: UnownedSerialExecutor](/documentation/swift/actor/unownedexecutor)

##### Instance Methods

- [func assertIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/actor/assertisolated(_:file:line:))
- [func assumeIsolated<T>((isolated Self) throws -> T, file: StaticString, line: UInt) rethrows -> T](/documentation/swift/actor/assumeisolated(_:file:line:))
- [func preconditionIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/actor/preconditionisolated(_:file:line:))
- [func withSerialExecutor<T, E>(nonisolated(nonsending) (any SerialExecutor) async throws(E) -> T) async throws(E) -> T](/documentation/swift/actor/withserialexecutor(_:)-4ff11)
- [func withSerialExecutor<T, E>((any SerialExecutor) throws(E) -> T) throws(E) -> T](/documentation/swift/actor/withserialexecutor(_:)-4ucv5)
- [AnyActor](/documentation/swift/anyactor)
- [MainActor](/documentation/swift/mainactor)

##### Instance Properties

- [var unownedExecutor: UnownedSerialExecutor](/documentation/swift/mainactor/unownedexecutor)

##### Instance Methods

- [func enqueue(UnownedJob)](/documentation/swift/mainactor/enqueue(_:))

##### Type Aliases

- [MainActor.ActorType](/documentation/swift/mainactor/actortype)

##### Type Properties

- [static let shared: MainActor](/documentation/swift/mainactor/shared)
- [static var sharedUnownedExecutor: UnownedSerialExecutor](/documentation/swift/mainactor/sharedunownedexecutor)

##### Type Methods

- [static func assumeIsolated<T>(() throws -> T, file: StaticString, line: UInt) rethrows -> T](/documentation/swift/mainactor/assumeisolated(_:file:line:))
- [static func run<T>(resultType: T.Type, body: () throws -> T) async rethrows -> T](/documentation/swift/mainactor/run(resulttype:body:))

##### Default Implementations

- [Actor Implementations](/documentation/swift/mainactor/actor-implementations)

###### Instance Methods

- [func assertIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/mainactor/assertisolated(_:file:line:))
- [func assumeIsolated<T>((isolated Self) throws -> T, file: StaticString, line: UInt) rethrows -> T](/documentation/swift/mainactor/assumeisolated(_:file:line:)-swift.method)
- [func preconditionIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/mainactor/preconditionisolated(_:file:line:))
- [func withSerialExecutor<T, E>((any SerialExecutor) throws(E) -> T) throws(E) -> T](/documentation/swift/mainactor/withserialexecutor(_:)-79jll)
- [func withSerialExecutor<T, E>(nonisolated(nonsending) (any SerialExecutor) async throws(E) -> T) async throws(E) -> T](/documentation/swift/mainactor/withserialexecutor(_:)-epjy)
- [GlobalActor Implementations](/documentation/swift/mainactor/globalactor-implementations)

###### Type Properties

- [static var sharedUnownedExecutor: UnownedSerialExecutor](/documentation/swift/mainactor/sharedunownedexecutor-1x66v)
- [GlobalActor](/documentation/swift/globalactor)

##### Associated Types

- [ActorType](/documentation/swift/globalactor/actortype)

##### Type Properties

- [static var shared: Self.ActorType](/documentation/swift/globalactor/shared)
- [static var sharedUnownedExecutor: UnownedSerialExecutor](/documentation/swift/globalactor/sharedunownedexecutor)

###### GlobalActor Implementations

- [static var sharedUnownedExecutor: UnownedSerialExecutor](/documentation/swift/globalactor/sharedunownedexecutor-7vdm6)

##### Type Methods

- [static func assertIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/globalactor/assertisolated(_:file:line:))
- [static func preconditionIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/globalactor/preconditionisolated(_:file:line:))
- [SendableMetatype](/documentation/swift/sendablemetatype)
- [ConcurrentValue](/documentation/swift/concurrentvalue)
- [UnsafeSendable](/documentation/swift/unsafesendable)
- [UnsafeConcurrentValue](/documentation/swift/unsafeconcurrentvalue)
- [macro isolation<T>() -> T](/documentation/swift/isolation())
- [func extractIsolation<each Arg, Result>((repeat each Arg) async throws -> Result) -> (any Actor)?](/documentation/swift/extractisolation(_:))

#### Task-Local Storage

- [TaskLocal](/documentation/swift/tasklocal)

##### Initializers

- [init(wrappedValue: Value)](/documentation/swift/tasklocal/init(wrappedvalue:))

##### Instance Properties

- [var description: String](/documentation/swift/tasklocal/description)
- [var projectedValue: TaskLocal<Value>](/documentation/swift/tasklocal/projectedvalue)
- [var wrappedValue: Value](/documentation/swift/tasklocal/wrappedvalue)

##### Instance Methods

- [func get() -> Value](/documentation/swift/tasklocal/get())
- [func withValue<R>(Value, operation: () throws -> R, file: String, line: UInt) rethrows -> R](/documentation/swift/tasklocal/withvalue(_:operation:file:line:))
- [func withValue<R>(Value, operation: () async throws -> R, isolation: isolated (any Actor)?, file: String, line: UInt) async rethrows -> R](/documentation/swift/tasklocal/withvalue(_:operation:isolation:file:line:))
- [macro TaskLocal()](/documentation/swift/tasklocal())

#### Executors

- [Executor](/documentation/swift/executor)

##### Instance Methods

- [func enqueue(consuming Job)](/documentation/swift/executor/enqueue(_:)-2sc5t)

###### Executor Implementations

- [func enqueue(UnownedJob)](/documentation/swift/executor/enqueue(_:)-2nn1i)
- [func enqueue(consuming Job)](/documentation/swift/executor/enqueue(_:)-9agc7)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/executor/enqueue(_:)-qc6e)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/executor/enqueue(_:)-55qpq)

###### Executor Implementations

- [func enqueue(UnownedJob)](/documentation/swift/executor/enqueue(_:)-2nn1i)
- [func enqueue(consuming Job)](/documentation/swift/executor/enqueue(_:)-9agc7)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/executor/enqueue(_:)-qc6e)
- [func enqueue(UnownedJob)](/documentation/swift/executor/enqueue(_:)-b90u)

###### Executor Implementations

- [func enqueue(UnownedJob)](/documentation/swift/executor/enqueue(_:)-2nn1i)
- [func enqueue(consuming Job)](/documentation/swift/executor/enqueue(_:)-9agc7)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/executor/enqueue(_:)-qc6e)
- [ExecutorJob](/documentation/swift/executorjob)

##### Initializers

- [init(Job)](/documentation/swift/executorjob/init(_:)-2yixs)
- [init(UnownedJob)](/documentation/swift/executorjob/init(_:)-36632)

##### Instance Properties

- [var description: String](/documentation/swift/executorjob/description)
- [var priority: JobPriority](/documentation/swift/executorjob/priority)

##### Instance Methods

- [func runSynchronously(isolatedTo: UnownedSerialExecutor, taskExecutor: UnownedTaskExecutor)](/documentation/swift/executorjob/runsynchronously(isolatedto:taskexecutor:))
- [func runSynchronously(on: UnownedTaskExecutor)](/documentation/swift/executorjob/runsynchronously(on:)-6e565)
- [func runSynchronously(on: UnownedSerialExecutor)](/documentation/swift/executorjob/runsynchronously(on:)-9dhs1)
- [SerialExecutor](/documentation/swift/serialexecutor)

##### Instance Properties

- [var isMainExecutor: Bool](/documentation/swift/serialexecutor/ismainexecutor)

##### Instance Methods

- [func asUnownedSerialExecutor() -> UnownedSerialExecutor](/documentation/swift/serialexecutor/asunownedserialexecutor())

###### SerialExecutor Implementations

- [func asUnownedSerialExecutor() -> UnownedSerialExecutor](/documentation/swift/serialexecutor/asunownedserialexecutor()-1hjmn)
- [func assertIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/serialexecutor/assertisolated(_:file:line:))
- [func checkIsolated()](/documentation/swift/serialexecutor/checkisolated())

###### SerialExecutor Implementations

- [func checkIsolated()](/documentation/swift/serialexecutor/checkisolated()-76lg2)
- [func enqueue(UnownedJob)](/documentation/swift/serialexecutor/enqueue(_:)-229km)
- [func enqueue(consuming Job)](/documentation/swift/serialexecutor/enqueue(_:)-2xi5n)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/serialexecutor/enqueue(_:)-7sypu)
- [func isIsolatingCurrentContext() -> Bool?](/documentation/swift/serialexecutor/isisolatingcurrentcontext())

###### SerialExecutor Implementations

- [func isIsolatingCurrentContext() -> Bool?](/documentation/swift/serialexecutor/isisolatingcurrentcontext()-65ht9)
- [func isSameExclusiveExecutionContext(other: Self) -> Bool](/documentation/swift/serialexecutor/issameexclusiveexecutioncontext(other:))

###### SerialExecutor Implementations

- [func isSameExclusiveExecutionContext(other: Self) -> Bool](/documentation/swift/serialexecutor/issameexclusiveexecutioncontext(other:)-1dj7u)
- [func isSameExclusiveExecutionContext(other: Self) -> Bool](/documentation/swift/serialexecutor/issameexclusiveexecutioncontext(other:)-2dhzl)
- [func preconditionIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/swift/serialexecutor/preconditionisolated(_:file:line:))
- [TaskExecutor](/documentation/swift/taskexecutor)

##### Instance Methods

- [func asUnownedTaskExecutor() -> UnownedTaskExecutor](/documentation/swift/taskexecutor/asunownedtaskexecutor())

###### TaskExecutor Implementations

- [func asUnownedTaskExecutor() -> UnownedTaskExecutor](/documentation/swift/taskexecutor/asunownedtaskexecutor()-20uut)
- [func enqueue(consuming ExecutorJob)](/documentation/swift/taskexecutor/enqueue(_:)-30ge1)
- [func enqueue(consuming Job)](/documentation/swift/taskexecutor/enqueue(_:)-6vkr9)
- [func enqueue(UnownedJob)](/documentation/swift/taskexecutor/enqueue(_:)-91eir)
- [PartialAsyncTask](/documentation/swift/partialasynctask)
- [UnownedJob](/documentation/swift/unownedjob)

##### Initializers

- [init(ExecutorJob)](/documentation/swift/unownedjob/init(_:)-8ra8c)
- [init(Job)](/documentation/swift/unownedjob/init(_:)-9f1zn)

##### Instance Properties

- [var priority: JobPriority](/documentation/swift/unownedjob/priority)

##### Instance Methods

- [func runSynchronously(isolatedTo: UnownedSerialExecutor, taskExecutor: UnownedTaskExecutor)](/documentation/swift/unownedjob/runsynchronously(isolatedto:taskexecutor:))
- [func runSynchronously(on: UnownedTaskExecutor)](/documentation/swift/unownedjob/runsynchronously(on:)-4eaxu)
- [func runSynchronously(on: UnownedSerialExecutor)](/documentation/swift/unownedjob/runsynchronously(on:)-o1nb)

##### Default Implementations

- [CustomStringConvertible Implementations](/documentation/swift/unownedjob/customstringconvertible-implementations)

###### Instance Properties

- [var description: String](/documentation/swift/unownedjob/description)
- [JobPriority](/documentation/swift/jobpriority)

##### Operators

- [static func != (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/!=(_:_:))

##### Initializers

- [init(TaskPriority)](/documentation/swift/jobpriority/init(_:))
- [init(rawValue: JobPriority.RawValue)](/documentation/swift/jobpriority/init(rawvalue:))

##### Instance Properties

- [var rawValue: JobPriority.RawValue](/documentation/swift/jobpriority/rawvalue-swift.property)

##### Type Aliases

- [JobPriority.RawValue](/documentation/swift/jobpriority/rawvalue-swift.typealias)

##### Default Implementations

- [Comparable Implementations](/documentation/swift/jobpriority/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/jobpriority/'...(_:)-94kop)
- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/jobpriority/'...(_:)-9gkod)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/jobpriority/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/jobpriority/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/jobpriority/'.._(_:_:))
- [static func < (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/_(_:_:)-53h6k)
- [static func > (Self, Self) -> Bool](/documentation/swift/jobpriority/_(_:_:)-5pqow)
- [static func > (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/_(_:_:)-9ghlg)
- [static func >= (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/_=(_:_:)-3sizb)
- [static func <= (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/_=(_:_:)-5nd54)
- [static func <= (Self, Self) -> Bool](/documentation/swift/jobpriority/_=(_:_:)-6zxj9)
- [static func >= (Self, Self) -> Bool](/documentation/swift/jobpriority/_=(_:_:)-7csjf)
- [Equatable Implementations](/documentation/swift/jobpriority/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/jobpriority/!=(_:_:)-71r5r)
- [static func == (JobPriority, JobPriority) -> Bool](/documentation/swift/jobpriority/==(_:_:))
- [UnownedSerialExecutor](/documentation/swift/unownedserialexecutor)

##### Initializers

- [init(Builtin.Executor)](/documentation/swift/unownedserialexecutor/init(_:)-8mpaa)
- [init<E>(E)](/documentation/swift/unownedserialexecutor/init(_:)-9jcxo)
- [init<E>(complexEquality: E)](/documentation/swift/unownedserialexecutor/init(complexequality:))
- [init<E>(ordinary: E)](/documentation/swift/unownedserialexecutor/init(ordinary:))

##### Instance Methods

- [func asSerialExecutor() -> (any SerialExecutor)?](/documentation/swift/unownedserialexecutor/asserialexecutor())
- [UnownedTaskExecutor](/documentation/swift/unownedtaskexecutor)

##### Initializers

- [init(Builtin.Executor)](/documentation/swift/unownedtaskexecutor/init(_:)-55b8h)
- [init<E>(E)](/documentation/swift/unownedtaskexecutor/init(_:)-5pjm5)
- [init<E>(ordinary: E)](/documentation/swift/unownedtaskexecutor/init(ordinary:))

##### Instance Methods

- [func asTaskExecutor() -> (any TaskExecutor)?](/documentation/swift/unownedtaskexecutor/astaskexecutor())

##### Default Implementations

- [Equatable Implementations](/documentation/swift/unownedtaskexecutor/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unownedtaskexecutor/!=(_:_:))
- [static func == (UnownedTaskExecutor, UnownedTaskExecutor) -> Bool](/documentation/swift/unownedtaskexecutor/==(_:_:))
- [var globalConcurrentExecutor: any TaskExecutor](/documentation/swift/globalconcurrentexecutor)
- [func withTaskExecutorPreference<T, Failure>((any TaskExecutor)?, isolation: isolated (any Actor)?, operation: () async throws(Failure) -> T) async throws(Failure) -> T](/documentation/swift/withtaskexecutorpreference(_:isolation:operation:))

#### Deprecated

- [Job](/documentation/swift/job)

##### Initializers

- [init(UnownedJob)](/documentation/swift/job/init(_:)-6f0eq)
- [init(ExecutorJob)](/documentation/swift/job/init(_:)-6pzn2)

##### Instance Properties

- [var description: String](/documentation/swift/job/description)
- [var priority: JobPriority](/documentation/swift/job/priority)

##### Instance Methods

- [func runSynchronously(on: UnownedSerialExecutor)](/documentation/swift/job/runsynchronously(on:))
- [Key-Path Expressions](/documentation/swift/key-path-expressions)

#### Key Paths

- [KeyPath](/documentation/swift/keypath)
- [PartialKeyPath](/documentation/swift/partialkeypath)
- [AnyKeyPath](/documentation/swift/anykeypath)

##### Type Properties

- [static var rootType: any Any.Type](/documentation/swift/anykeypath/roottype)
- [static var valueType: any Any.Type](/documentation/swift/anykeypath/valuetype)

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/anykeypath/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/anykeypath/debugdescription)
- [Equatable Implementations](/documentation/swift/anykeypath/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/anykeypath/!=(_:_:))
- [static func == (AnyKeyPath, AnyKeyPath) -> Bool](/documentation/swift/anykeypath/==(_:_:))
- [Hashable Implementations](/documentation/swift/anykeypath/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/anykeypath/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/anykeypath/hash(into:))

#### Writable Key Paths

- [WritableKeyPath](/documentation/swift/writablekeypath)
- [ReferenceWritableKeyPath](/documentation/swift/referencewritablekeypath)
- [Manual Memory Management](/documentation/swift/manual-memory-management)

#### First Steps

- [Calling Functions With Pointer Parameters](/documentation/swift/calling-functions-with-pointer-parameters)

#### Safe Memory Access

- [Span](/documentation/swift/span)

##### Initializers

- [init()](/documentation/swift/span/init())

##### Instance Properties

- [var bytes: RawSpan](/documentation/swift/span/bytes)
- [var count: Int](/documentation/swift/span/count)
- [var indices: Range<Span<Element>.Index>](/documentation/swift/span/indices)
- [var isEmpty: Bool](/documentation/swift/span/isempty)

##### Instance Methods

- [func extracting(Range<Span<Element>.Index>) -> Span<Element>](/documentation/swift/span/extracting(_:)-1c6e6)
- [func extracting(some RangeExpression<Int>) -> Span<Element>](/documentation/swift/span/extracting(_:)-48neh)
- [func extracting((UnboundedRange_) -> ()) -> Span<Element>](/documentation/swift/span/extracting(_:)-57peb)
- [func extracting(droppingFirst: Int) -> Span<Element>](/documentation/swift/span/extracting(droppingfirst:))
- [func extracting(droppingLast: Int) -> Span<Element>](/documentation/swift/span/extracting(droppinglast:))
- [func extracting(first: Int) -> Span<Element>](/documentation/swift/span/extracting(first:))
- [func extracting(last: Int) -> Span<Element>](/documentation/swift/span/extracting(last:))
- [func extracting(unchecked: ClosedRange<Span<Element>.Index>) -> Span<Element>](/documentation/swift/span/extracting(unchecked:)-46y0h)
- [func extracting(unchecked: Range<Span<Element>.Index>) -> Span<Element>](/documentation/swift/span/extracting(unchecked:)-8hfj1)
- [func indices(of: borrowing Span<Element>) -> Range<Span<Element>.Index>?](/documentation/swift/span/indices(of:))
- [func isIdentical(to: Span<Element>) -> Bool](/documentation/swift/span/isidentical(to:))
- [func withUnsafeBufferPointer<E, Result>((UnsafeBufferPointer<Element>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/span/withunsafebufferpointer(_:))
- [func withUnsafeBytes<E, Result>((UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/span/withunsafebytes(_:))

##### Subscripts

- [subscript(Span<Element>.Index) -> Element](/documentation/swift/span/subscript(_:)-2g4jz)
- [subscript(Span<Element>.Index) -> Element](/documentation/swift/span/subscript(_:)-3r1qm)
- [subscript(unchecked _: Span<Element>.Index) -> Element](/documentation/swift/span/subscript(unchecked:)-2no6f)
- [subscript(unchecked _: Span<Element>.Index) -> Element](/documentation/swift/span/subscript(unchecked:)-6gur1)

##### Type Aliases

- [Span.Index](/documentation/swift/span/index)
- [RawSpan](/documentation/swift/rawspan)

##### Initializers

- [init()](/documentation/swift/rawspan/init())

##### Instance Properties

- [var byteCount: Int](/documentation/swift/rawspan/bytecount)
- [var byteOffsets: Range<Int>](/documentation/swift/rawspan/byteoffsets)
- [var isEmpty: Bool](/documentation/swift/rawspan/isempty)

##### Instance Methods

- [func byteOffsets(of: borrowing RawSpan) -> Range<Int>?](/documentation/swift/rawspan/byteoffsets(of:))
- [func extracting(Range<Int>) -> RawSpan](/documentation/swift/rawspan/extracting(_:)-2imhy)
- [func extracting((UnboundedRange_) -> ()) -> RawSpan](/documentation/swift/rawspan/extracting(_:)-3elv4)
- [func extracting(some RangeExpression<Int>) -> RawSpan](/documentation/swift/rawspan/extracting(_:)-8oy0e)
- [func extracting(droppingFirst: Int) -> RawSpan](/documentation/swift/rawspan/extracting(droppingfirst:))
- [func extracting(droppingLast: Int) -> RawSpan](/documentation/swift/rawspan/extracting(droppinglast:))
- [func extracting(first: Int) -> RawSpan](/documentation/swift/rawspan/extracting(first:))
- [func extracting(last: Int) -> RawSpan](/documentation/swift/rawspan/extracting(last:))
- [func extracting(unchecked: ClosedRange<Int>) -> RawSpan](/documentation/swift/rawspan/extracting(unchecked:)-2hjqs)
- [func extracting(unchecked: Range<Int>) -> RawSpan](/documentation/swift/rawspan/extracting(unchecked:)-527ri)
- [func isIdentical(to: RawSpan) -> Bool](/documentation/swift/rawspan/isidentical(to:))
- [func unsafeLoad<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/rawspan/unsafeload(frombyteoffset:as:))
- [func unsafeLoad<T>(fromUncheckedByteOffset: Int, as: T.Type) -> T](/documentation/swift/rawspan/unsafeload(fromuncheckedbyteoffset:as:))
- [func unsafeLoadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/rawspan/unsafeloadunaligned(frombyteoffset:as:))
- [func unsafeLoadUnaligned<T>(fromUncheckedByteOffset: Int, as: T.Type) -> T](/documentation/swift/rawspan/unsafeloadunaligned(fromuncheckedbyteoffset:as:))
- [func withUnsafeBytes<E, Result>((UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/rawspan/withunsafebytes(_:))
- [OutputSpan](/documentation/swift/outputspan)

##### Initializers

- [init()](/documentation/swift/outputspan/init())
- [init(buffer: UnsafeMutableBufferPointer<Element>, initializedCount: Int)](/documentation/swift/outputspan/init(buffer:initializedcount:)-3tbg3)
- [init(buffer: borrowing Slice<UnsafeMutableBufferPointer<Element>>, initializedCount: Int)](/documentation/swift/outputspan/init(buffer:initializedcount:)-vie3)

##### Instance Properties

- [let capacity: Int](/documentation/swift/outputspan/capacity)
- [var count: Int](/documentation/swift/outputspan/count)
- [var freeCapacity: Int](/documentation/swift/outputspan/freecapacity)
- [var indices: Range<OutputSpan<Element>.Index>](/documentation/swift/outputspan/indices)
- [var isEmpty: Bool](/documentation/swift/outputspan/isempty)
- [var isFull: Bool](/documentation/swift/outputspan/isfull)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/outputspan/mutablespan)
- [var span: Span<Element>](/documentation/swift/outputspan/span)

##### Instance Methods

- [func append(consuming Element)](/documentation/swift/outputspan/append(_:))
- [func append(repeating: Element, count: Int)](/documentation/swift/outputspan/append(repeating:count:))
- [func finalize(for: Slice<UnsafeMutableBufferPointer<Element>>) -> Int](/documentation/swift/outputspan/finalize(for:)-5utkq)
- [func finalize(for: UnsafeMutableBufferPointer<Element>) -> Int](/documentation/swift/outputspan/finalize(for:)-83pw0)
- [func removeAll()](/documentation/swift/outputspan/removeall())
- [func removeLast() -> Element](/documentation/swift/outputspan/removelast())
- [func removeLast(Int)](/documentation/swift/outputspan/removelast(_:))
- [func swapAt(OutputSpan<Element>.Index, OutputSpan<Element>.Index)](/documentation/swift/outputspan/swapat(_:_:))
- [func swapAt(unchecked: OutputSpan<Element>.Index, unchecked: OutputSpan<Element>.Index)](/documentation/swift/outputspan/swapat(unchecked:unchecked:))
- [func withUnsafeMutableBufferPointer<E, R>((UnsafeMutableBufferPointer<Element>, inout Int) throws(E) -> R) throws(E) -> R](/documentation/swift/outputspan/withunsafemutablebufferpointer(_:))

##### Subscripts

- [subscript(OutputSpan<Element>.Index) -> Element](/documentation/swift/outputspan/subscript(_:))
- [subscript(unchecked _: OutputSpan<Element>.Index) -> Element](/documentation/swift/outputspan/subscript(unchecked:))

##### Type Aliases

- [OutputSpan.Index](/documentation/swift/outputspan/index)
- [OutputRawSpan](/documentation/swift/outputrawspan)

##### Initializers

- [init()](/documentation/swift/outputrawspan/init())
- [init(buffer: UnsafeMutableRawBufferPointer, initializedCount: Int)](/documentation/swift/outputrawspan/init(buffer:initializedcount:)-1vcj6)
- [init(buffer: borrowing Slice<UnsafeMutableRawBufferPointer>, initializedCount: Int)](/documentation/swift/outputrawspan/init(buffer:initializedcount:)-5sduz)

##### Instance Properties

- [var byteCount: Int](/documentation/swift/outputrawspan/bytecount)
- [var bytes: RawSpan](/documentation/swift/outputrawspan/bytes)
- [let capacity: Int](/documentation/swift/outputrawspan/capacity)
- [var freeCapacity: Int](/documentation/swift/outputrawspan/freecapacity)
- [var isEmpty: Bool](/documentation/swift/outputrawspan/isempty)
- [var isFull: Bool](/documentation/swift/outputrawspan/isfull)
- [var mutableBytes: MutableRawSpan](/documentation/swift/outputrawspan/mutablebytes)

##### Instance Methods

- [func append(UInt8)](/documentation/swift/outputrawspan/append(_:))
- [func append<T>(T, as: T.Type)](/documentation/swift/outputrawspan/append(_:as:))
- [func append<T>(repeating: T, count: Int, as: T.Type)](/documentation/swift/outputrawspan/append(repeating:count:as:))
- [func finalize(for: Slice<UnsafeMutableRawBufferPointer>) -> Int](/documentation/swift/outputrawspan/finalize(for:)-4su35)
- [func finalize(for: UnsafeMutableRawBufferPointer) -> Int](/documentation/swift/outputrawspan/finalize(for:)-8oz61)
- [func removeAll()](/documentation/swift/outputrawspan/removeall())
- [func removeLast() -> UInt8](/documentation/swift/outputrawspan/removelast())
- [func removeLast(Int)](/documentation/swift/outputrawspan/removelast(_:))
- [func withUnsafeMutableBytes<E, R>((UnsafeMutableRawBufferPointer, inout Int) throws(E) -> R) throws(E) -> R](/documentation/swift/outputrawspan/withunsafemutablebytes(_:))
- [UTF8Span](/documentation/swift/utf8span)

##### Structures

- [UTF8Span.CharacterIterator](/documentation/swift/utf8span/characteriterator)

###### Initializers

- [init(UTF8Span)](/documentation/swift/utf8span/characteriterator/init(_:))

###### Instance Properties

- [let codeUnits: UTF8Span](/documentation/swift/utf8span/characteriterator/codeunits)
- [var currentCodeUnitOffset: Int](/documentation/swift/utf8span/characteriterator/currentcodeunitoffset)

###### Instance Methods

- [func next() -> Character?](/documentation/swift/utf8span/characteriterator/next())
- [func prefix() -> UTF8Span](/documentation/swift/utf8span/characteriterator/prefix())
- [func previous() -> Character?](/documentation/swift/utf8span/characteriterator/previous())
- [func reset(roundingBackwardsFrom: Int)](/documentation/swift/utf8span/characteriterator/reset(roundingbackwardsfrom:))
- [func reset(roundingForwardsFrom: Int)](/documentation/swift/utf8span/characteriterator/reset(roundingforwardsfrom:))
- [func reset(toUnchecked: Int)](/documentation/swift/utf8span/characteriterator/reset(tounchecked:))
- [func skipBack() -> Int](/documentation/swift/utf8span/characteriterator/skipback())
- [func skipBack(by: Int) -> Int](/documentation/swift/utf8span/characteriterator/skipback(by:))
- [func skipForward() -> Int](/documentation/swift/utf8span/characteriterator/skipforward())
- [func skipForward(by: Int) -> Int](/documentation/swift/utf8span/characteriterator/skipforward(by:))
- [func suffix() -> UTF8Span](/documentation/swift/utf8span/characteriterator/suffix())
- [UTF8Span.UnicodeScalarIterator](/documentation/swift/utf8span/unicodescalariterator)

###### Initializers

- [init(UTF8Span)](/documentation/swift/utf8span/unicodescalariterator/init(_:))

###### Instance Properties

- [let codeUnits: UTF8Span](/documentation/swift/utf8span/unicodescalariterator/codeunits)
- [var currentCodeUnitOffset: Int](/documentation/swift/utf8span/unicodescalariterator/currentcodeunitoffset)

###### Instance Methods

- [func next() -> Unicode.Scalar?](/documentation/swift/utf8span/unicodescalariterator/next())
- [func prefix() -> UTF8Span](/documentation/swift/utf8span/unicodescalariterator/prefix())
- [func previous() -> Unicode.Scalar?](/documentation/swift/utf8span/unicodescalariterator/previous())
- [func reset(roundingBackwardsFrom: Int)](/documentation/swift/utf8span/unicodescalariterator/reset(roundingbackwardsfrom:))
- [func reset(roundingForwardsFrom: Int)](/documentation/swift/utf8span/unicodescalariterator/reset(roundingforwardsfrom:))
- [func reset(toUnchecked: Int)](/documentation/swift/utf8span/unicodescalariterator/reset(tounchecked:))
- [func skipBack() -> Int](/documentation/swift/utf8span/unicodescalariterator/skipback())
- [func skipBack(by: Int) -> Int](/documentation/swift/utf8span/unicodescalariterator/skipback(by:))
- [func skipForward() -> Int](/documentation/swift/utf8span/unicodescalariterator/skipforward())
- [func skipForward(by: Int) -> Int](/documentation/swift/utf8span/unicodescalariterator/skipforward(by:))
- [func suffix() -> UTF8Span](/documentation/swift/utf8span/unicodescalariterator/suffix())

##### Initializers

- [init(unchecked: Span<UInt8>, isKnownASCII: Bool)](/documentation/swift/utf8span/init(unchecked:isknownascii:))
- [init(validating: consuming Span<UInt8>) throws(UTF8.ValidationError)](/documentation/swift/utf8span/init(validating:))

##### Instance Properties

- [var count: Int](/documentation/swift/utf8span/count)
- [var isEmpty: Bool](/documentation/swift/utf8span/isempty)
- [var isKnownASCII: Bool](/documentation/swift/utf8span/isknownascii)
- [var isKnownNFC: Bool](/documentation/swift/utf8span/isknownnfc)
- [var span: Span<UInt8>](/documentation/swift/utf8span/span)

##### Instance Methods

- [func bytesEqual(to: some Sequence<UInt8>) -> Bool](/documentation/swift/utf8span/bytesequal(to:))
- [func charactersEqual(to: some Sequence<Character>) -> Bool](/documentation/swift/utf8span/charactersequal(to:))
- [func checkForASCII() -> Bool](/documentation/swift/utf8span/checkforascii())
- [func checkForNFC(quickCheck: Bool) -> Bool](/documentation/swift/utf8span/checkfornfc(quickcheck:))
- [func isCanonicallyEquivalent(to: UTF8Span) -> Bool](/documentation/swift/utf8span/iscanonicallyequivalent(to:))
- [func isCanonicallyLessThan(UTF8Span) -> Bool](/documentation/swift/utf8span/iscanonicallylessthan(_:))
- [func makeCharacterIterator() -> UTF8Span.CharacterIterator](/documentation/swift/utf8span/makecharacteriterator())
- [func makeUnicodeScalarIterator() -> UTF8Span.UnicodeScalarIterator](/documentation/swift/utf8span/makeunicodescalariterator())
- [func unicodeScalarsEqual(to: some Sequence<Unicode.Scalar>) -> Bool](/documentation/swift/utf8span/unicodescalarsequal(to:))
- [MutableSpan](/documentation/swift/mutablespan)

##### Initializers

- [init()](/documentation/swift/mutablespan/init())

##### Instance Properties

- [var bytes: RawSpan](/documentation/swift/mutablespan/bytes)
- [var count: Int](/documentation/swift/mutablespan/count)
- [var indices: Range<MutableSpan<Element>.Index>](/documentation/swift/mutablespan/indices)
- [var isEmpty: Bool](/documentation/swift/mutablespan/isempty)
- [var mutableBytes: MutableRawSpan](/documentation/swift/mutablespan/mutablebytes)
- [var span: Span<Element>](/documentation/swift/mutablespan/span)

##### Instance Methods

- [func extracting(some RangeExpression<Int>) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(_:)-2g8w3)
- [func extracting((UnboundedRange_) -> ()) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(_:)-80srp)
- [func extracting(Range<MutableSpan<Element>.Index>) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(_:)-bphj)
- [func extracting(droppingFirst: Int) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(droppingfirst:))
- [func extracting(droppingLast: Int) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(droppinglast:))
- [func extracting(first: Int) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(first:))
- [func extracting(last: Int) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(last:))
- [func extracting(unchecked: Range<MutableSpan<Element>.Index>) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(unchecked:)-23qq)
- [func extracting(unchecked: ClosedRange<MutableSpan<Element>.Index>) -> MutableSpan<Element>](/documentation/swift/mutablespan/extracting(unchecked:)-4y8oj)
- [func swapAt(MutableSpan<Element>.Index, MutableSpan<Element>.Index)](/documentation/swift/mutablespan/swapat(_:_:))
- [func swapAt(unchecked: MutableSpan<Element>.Index, unchecked: MutableSpan<Element>.Index)](/documentation/swift/mutablespan/swapat(unchecked:unchecked:))
- [func update(repeating: consuming Element)](/documentation/swift/mutablespan/update(repeating:))
- [func withUnsafeBufferPointer<E, Result>((UnsafeBufferPointer<Element>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablespan/withunsafebufferpointer(_:))
- [func withUnsafeBytes<E, Result>((UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablespan/withunsafebytes(_:))
- [func withUnsafeMutableBufferPointer<E, Result>((UnsafeMutableBufferPointer<Element>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablespan/withunsafemutablebufferpointer(_:))
- [func withUnsafeMutableBytes<E, Result>((UnsafeMutableRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablespan/withunsafemutablebytes(_:))

##### Subscripts

- [subscript(MutableSpan<Element>.Index) -> Element](/documentation/swift/mutablespan/subscript(_:))
- [subscript(unchecked _: MutableSpan<Element>.Index) -> Element](/documentation/swift/mutablespan/subscript(unchecked:))

##### Type Aliases

- [MutableSpan.Index](/documentation/swift/mutablespan/index)
- [MutableRawSpan](/documentation/swift/mutablerawspan)

##### Initializers

- [init()](/documentation/swift/mutablerawspan/init())

##### Instance Properties

- [var byteCount: Int](/documentation/swift/mutablerawspan/bytecount)
- [var byteOffsets: Range<Int>](/documentation/swift/mutablerawspan/byteoffsets)
- [var bytes: RawSpan](/documentation/swift/mutablerawspan/bytes)
- [var isEmpty: Bool](/documentation/swift/mutablerawspan/isempty)

##### Instance Methods

- [func extracting(Range<Int>) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(_:)-18k75)
- [func extracting(some RangeExpression<Int>) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(_:)-6fpo6)
- [func extracting((UnboundedRange_) -> ()) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(_:)-7d5f1)
- [func extracting(droppingFirst: Int) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(droppingfirst:))
- [func extracting(droppingLast: Int) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(droppinglast:))
- [func extracting(first: Int) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(first:))
- [func extracting(last: Int) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(last:))
- [func extracting(unchecked: ClosedRange<Int>) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(unchecked:)-4b7xa)
- [func extracting(unchecked: Range<Int>) -> MutableRawSpan](/documentation/swift/mutablerawspan/extracting(unchecked:)-7oy38)
- [func storeBytes<T>(of: T, toByteOffset: Int, as: T.Type)](/documentation/swift/mutablerawspan/storebytes(of:tobyteoffset:as:))
- [func storeBytes<T>(of: T, toUncheckedByteOffset: Int, as: T.Type)](/documentation/swift/mutablerawspan/storebytes(of:touncheckedbyteoffset:as:))
- [func unsafeLoad<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/mutablerawspan/unsafeload(frombyteoffset:as:))
- [func unsafeLoad<T>(fromUncheckedByteOffset: Int, as: T.Type) -> T](/documentation/swift/mutablerawspan/unsafeload(fromuncheckedbyteoffset:as:))
- [func unsafeLoadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/mutablerawspan/unsafeloadunaligned(frombyteoffset:as:))
- [func unsafeLoadUnaligned<T>(fromUncheckedByteOffset: Int, as: T.Type) -> T](/documentation/swift/mutablerawspan/unsafeloadunaligned(fromuncheckedbyteoffset:as:))
- [func withUnsafeBytes<E, Result>((UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablerawspan/withunsafebytes(_:))
- [func withUnsafeMutableBytes<E, Result>((UnsafeMutableRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/mutablerawspan/withunsafemutablebytes(_:))

#### Typed Pointers

- [UnsafePointer](/documentation/swift/unsafepointer)

##### Instance Properties

- [var customPlaygroundQuickLook: PlaygroundQuickLook](/documentation/swift/unsafepointer/customplaygroundquicklook)
- [var pointee: Pointee](/documentation/swift/unsafepointer/pointee)

##### Instance Methods

- [func bytes() -> MIDIPacket.ByteCollection](/documentation/swift/unsafepointer/bytes())
- [func deallocate()](/documentation/swift/unsafepointer/deallocate())
- [func pointer<Property>(to: KeyPath<Pointee, Property>) -> UnsafePointer<Property>?](/documentation/swift/unsafepointer/pointer(to:))
- [func sequence() -> MIDIEventPacket.WordSequence](/documentation/swift/unsafepointer/sequence()-3ksef)
- [func sequence() -> MIDIPacket.ByteSequence](/documentation/swift/unsafepointer/sequence()-6p1ru)
- [func unsafeSequence() -> MIDIPacketList.UnsafeSequence](/documentation/swift/unsafepointer/unsafesequence()-215j3)
- [func unsafeSequence() -> MIDIEventList.UnsafeSequence](/documentation/swift/unsafepointer/unsafesequence()-2il7u)
- [func withMemoryRebound<T, E, Result>(to: T.Type, capacity: Int, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafepointer/withmemoryrebound(to:capacity:_:))
- [func words() -> MIDIEventPacket.WordCollection](/documentation/swift/unsafepointer/words())

##### Subscripts

- [subscript(Int) -> Pointee](/documentation/swift/unsafepointer/subscript(_:))

##### Type Aliases

- [UnsafePointer.Distance](/documentation/swift/unsafepointer/distance)

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/unsafepointer/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [UnsafePointer.AtomicOptionalRepresentation](/documentation/swift/unsafepointer/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming UnsafePointer<Pointee>.AtomicOptionalRepresentation) -> UnsafePointer<Pointee>?](/documentation/swift/unsafepointer/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming UnsafePointer<Pointee>?) -> UnsafePointer<Pointee>.AtomicOptionalRepresentation](/documentation/swift/unsafepointer/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/unsafepointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafePointer.AtomicRepresentation](/documentation/swift/unsafepointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafePointer<Pointee>.AtomicRepresentation) -> UnsafePointer<Pointee>](/documentation/swift/unsafepointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafePointer<Pointee>) -> UnsafePointer<Pointee>.AtomicRepresentation](/documentation/swift/unsafepointer/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/unsafepointer/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unsafepointer/'...(_:)-4mm4r)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unsafepointer/'...(_:)-6ct5j)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unsafepointer/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unsafepointer/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unsafepointer/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unsafepointer/_(_:_:)-24u5y)
- [static func < (Self, Self) -> Bool](/documentation/swift/unsafepointer/_(_:_:)-fe61)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unsafepointer/_=(_:_:)-1ih5)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unsafepointer/_=(_:_:)-8lyil)
- [CustomReflectable Implementations](/documentation/swift/unsafepointer/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/unsafepointer/custommirror)
- [Equatable Implementations](/documentation/swift/unsafepointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unsafepointer/!=(_:_:)-1bb06)
- [static func == (Self, Self) -> Bool](/documentation/swift/unsafepointer/==(_:_:)-4wft3)
- [Hashable Implementations](/documentation/swift/unsafepointer/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unsafepointer/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unsafepointer/hash(into:))
- [Strideable Implementations](/documentation/swift/unsafepointer/strideable-implementations)

###### Operators

- [static func + (Self, Self.Stride) -> Self](/documentation/swift/unsafepointer/+(_:_:)-5q1dp)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/unsafepointer/+(_:_:)-7xyjl)
- [static func += (inout Self, Self.Stride)](/documentation/swift/unsafepointer/+=(_:_:))
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/unsafepointer/-(_:_:)-2mzyc)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/unsafepointer/-(_:_:)-7vacg)
- [static func -= (inout Self, Self.Stride)](/documentation/swift/unsafepointer/-=(_:_:))

###### Type Aliases

- [UnsafePointer.Stride](/documentation/swift/unsafepointer/stride)
- [UnsafeMutablePointer](/documentation/swift/unsafemutablepointer)

##### Initializers

- [init?(UnsafeMutablePointer<Pointee>?)](/documentation/swift/unsafemutablepointer/init(_:)-38kdq)
- [init(UnsafeMutablePointer<Pointee>)](/documentation/swift/unsafemutablepointer/init(_:)-7msdk)
- [init?(mutating: UnsafePointer<Pointee>?)](/documentation/swift/unsafemutablepointer/init(mutating:)-23779)
- [init(mutating: UnsafePointer<Pointee>)](/documentation/swift/unsafemutablepointer/init(mutating:)-9gvv3)

##### Instance Properties

- [var customPlaygroundQuickLook: PlaygroundQuickLook](/documentation/swift/unsafemutablepointer/customplaygroundquicklook)
- [var pointee: Pointee](/documentation/swift/unsafemutablepointer/pointee)

##### Instance Methods

- [func assign(from: UnsafePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/assign(from:count:))
- [func assign(repeating: Pointee, count: Int)](/documentation/swift/unsafemutablepointer/assign(repeating:count:))
- [func deallocate()](/documentation/swift/unsafemutablepointer/deallocate())
- [func deallocate(capacity: Int)](/documentation/swift/unsafemutablepointer/deallocate(capacity:))
- [func deinitialize() -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablepointer/deinitialize())
- [func deinitialize(count: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablepointer/deinitialize(count:))
- [func initialize<C>(from: C)](/documentation/swift/unsafemutablepointer/initialize(from:))
- [func initialize(from: UnsafePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/initialize(from:count:))
- [func initialize(repeating: Pointee, count: Int)](/documentation/swift/unsafemutablepointer/initialize(repeating:count:))
- [func initialize(to: consuming Pointee)](/documentation/swift/unsafemutablepointer/initialize(to:))
- [func initialize(to: Pointee, count: Int)](/documentation/swift/unsafemutablepointer/initialize(to:count:))
- [func move() -> Pointee](/documentation/swift/unsafemutablepointer/move())
- [func moveAssign(from: UnsafeMutablePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/moveassign(from:count:))
- [func moveInitialize(from: UnsafeMutablePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/moveinitialize(from:count:))
- [func moveUpdate(from: UnsafeMutablePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/moveupdate(from:count:))
- [func pointer<Property>(to: KeyPath<Pointee, Property>) -> UnsafePointer<Property>?](/documentation/swift/unsafemutablepointer/pointer(to:)-8cyek)
- [func pointer<Property>(to: WritableKeyPath<Pointee, Property>) -> UnsafeMutablePointer<Property>?](/documentation/swift/unsafemutablepointer/pointer(to:)-8veyb)
- [func update(from: UnsafePointer<Pointee>, count: Int)](/documentation/swift/unsafemutablepointer/update(from:count:))
- [func update(repeating: Pointee, count: Int)](/documentation/swift/unsafemutablepointer/update(repeating:count:))
- [func withMemoryRebound<T, E, Result>(to: T.Type, capacity: Int, (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafemutablepointer/withmemoryrebound(to:capacity:_:))

##### Subscripts

- [subscript(Int) -> Pointee](/documentation/swift/unsafemutablepointer/subscript(_:))

##### Type Aliases

- [UnsafeMutablePointer.Distance](/documentation/swift/unsafemutablepointer/distance)

##### Type Methods

- [static func allocate(capacity: Int) -> UnsafeMutablePointer<Pointee>](/documentation/swift/unsafemutablepointer/allocate(capacity:))

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/unsafemutablepointer/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [UnsafeMutablePointer.AtomicOptionalRepresentation](/documentation/swift/unsafemutablepointer/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming UnsafeMutablePointer<Pointee>.AtomicOptionalRepresentation) -> UnsafeMutablePointer<Pointee>?](/documentation/swift/unsafemutablepointer/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming UnsafeMutablePointer<Pointee>?) -> UnsafeMutablePointer<Pointee>.AtomicOptionalRepresentation](/documentation/swift/unsafemutablepointer/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/unsafemutablepointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeMutablePointer.AtomicRepresentation](/documentation/swift/unsafemutablepointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeMutablePointer<Pointee>.AtomicRepresentation) -> UnsafeMutablePointer<Pointee>](/documentation/swift/unsafemutablepointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeMutablePointer<Pointee>) -> UnsafeMutablePointer<Pointee>.AtomicRepresentation](/documentation/swift/unsafemutablepointer/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/unsafemutablepointer/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unsafemutablepointer/'...(_:)-4mm5n)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unsafemutablepointer/'...(_:)-6ct6f)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unsafemutablepointer/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unsafemutablepointer/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unsafemutablepointer/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/_(_:_:)-24u52)
- [static func < (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/_(_:_:)-fe55)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/_=(_:_:)-1ii1)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/_=(_:_:)-8lyhp)
- [CustomReflectable Implementations](/documentation/swift/unsafemutablepointer/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/unsafemutablepointer/custommirror)
- [Equatable Implementations](/documentation/swift/unsafemutablepointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/!=(_:_:)-1baza)
- [static func == (Self, Self) -> Bool](/documentation/swift/unsafemutablepointer/==(_:_:)-4wftz)
- [Hashable Implementations](/documentation/swift/unsafemutablepointer/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/unsafemutablepointer/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unsafemutablepointer/hash(into:))
- [Strideable Implementations](/documentation/swift/unsafemutablepointer/strideable-implementations)

###### Operators

- [static func + (Self, Self.Stride) -> Self](/documentation/swift/unsafemutablepointer/+(_:_:)-5q1ct)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/unsafemutablepointer/+(_:_:)-7xyip)
- [static func += (inout Self, Self.Stride)](/documentation/swift/unsafemutablepointer/+=(_:_:))
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/unsafemutablepointer/-(_:_:)-2mzz8)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/unsafemutablepointer/-(_:_:)-7vabk)
- [static func -= (inout Self, Self.Stride)](/documentation/swift/unsafemutablepointer/-=(_:_:))

###### Type Aliases

- [UnsafeMutablePointer.Stride](/documentation/swift/unsafemutablepointer/stride)
- [UnsafeBufferPointer](/documentation/swift/unsafebufferpointer)

##### Initializers

- [init(MLMultiArray) throws](/documentation/swift/unsafebufferpointer/init(_:)-2fjdq)
- [init(UnsafeMutableBufferPointer<Element>)](/documentation/swift/unsafebufferpointer/init(_:)-36fvm)
- [init(AudioBuffer)](/documentation/swift/unsafebufferpointer/init(_:)-5ei4s)
- [init(rebasing: Slice<UnsafeMutableBufferPointer<Element>>)](/documentation/swift/unsafebufferpointer/init(rebasing:)-53eec)
- [init(rebasing: Slice<UnsafeBufferPointer<Element>>)](/documentation/swift/unsafebufferpointer/init(rebasing:)-56rdb)
- [init(start: UnsafePointer<Element>?, count: Int)](/documentation/swift/unsafebufferpointer/init(start:count:))

##### Instance Properties

- [var baseAddress: UnsafePointer<Element>?](/documentation/swift/unsafebufferpointer/baseaddress)
- [let count: Int](/documentation/swift/unsafebufferpointer/count)
- [var span: Span<Element>](/documentation/swift/unsafebufferpointer/span)

##### Instance Methods

- [func deallocate()](/documentation/swift/unsafebufferpointer/deallocate())
- [func extracting(some RangeExpression<Int>) -> UnsafeBufferPointer<Element>](/documentation/swift/unsafebufferpointer/extracting(_:)-47z4z)
- [func extracting((UnboundedRange_) -> ()) -> UnsafeBufferPointer<Element>](/documentation/swift/unsafebufferpointer/extracting(_:)-4bn8q)
- [func extracting(Range<Int>) -> UnsafeBufferPointer<Element>](/documentation/swift/unsafebufferpointer/extracting(_:)-nivx)
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafebufferpointer/withmemoryrebound(to:_:))

##### Subscripts

- [subscript(Int) -> Element](/documentation/swift/unsafebufferpointer/subscript(_:)-3sy16)

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/unsafebufferpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeBufferPointer.AtomicRepresentation](/documentation/swift/unsafebufferpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeBufferPointer<Element>.AtomicRepresentation) -> UnsafeBufferPointer<Element>](/documentation/swift/unsafebufferpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeBufferPointer<Element>) -> UnsafeBufferPointer<Element>.AtomicRepresentation](/documentation/swift/unsafebufferpointer/encodeatomicrepresentation(_:))
- [BidirectionalCollection Implementations](/documentation/swift/unsafebufferpointer/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unsafebufferpointer/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unsafebufferpointer/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unsafebufferpointer/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/droplast(_:)-7845q)
- [func formIndex(before: inout Int)](/documentation/swift/unsafebufferpointer/formindex(before:))
- [func index(before: Int) -> Int](/documentation/swift/unsafebufferpointer/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/unsafebufferpointer/joined(separator:)-5do07)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafebufferpointer/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafebufferpointer/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafebufferpointer/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unsafebufferpointer/reversed()-3wn4o)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/suffix(_:)-3w6qn)
- [Collection Implementations](/documentation/swift/unsafebufferpointer/collection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/unsafebufferpointer/endindex)
- [var first: Self.Element?](/documentation/swift/unsafebufferpointer/first)
- [var indices: Range<Int>](/documentation/swift/unsafebufferpointer/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/unsafebufferpointer/isempty)
- [var startIndex: Int](/documentation/swift/unsafebufferpointer/startindex)
- [var underestimatedCount: Int](/documentation/swift/unsafebufferpointer/underestimatedcount-4ggs2)

###### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/unsafebufferpointer/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafebufferpointer/drop(while:)-37wp5)
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/dropfirst(_:)-1rupy)
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/droplast(_:)-6rw21)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafebufferpointer/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafebufferpointer/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unsafebufferpointer/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unsafebufferpointer/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Int)](/documentation/swift/unsafebufferpointer/formindex(after:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/unsafebufferpointer/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/unsafebufferpointer/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/unsafebufferpointer/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unsafebufferpointer/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unsafebufferpointer/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unsafebufferpointer/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafebufferpointer/map(_:)-5p6pc)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/prefix(_:)-1n68g)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafebufferpointer/prefix(while:)-3ariq)
- [func randomElement() -> Self.Element?](/documentation/swift/unsafebufferpointer/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unsafebufferpointer/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsafebufferpointer/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unsafebufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:)-4pbpp)
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unsafebufferpointer/split(separator:maxsplits:omittingemptysubsequences:)-3dglg)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/suffix(_:)-qdda)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unsafebufferpointer/suffix(from:))

###### Subscripts

- [subscript(Range<Int>) -> Slice<UnsafeBufferPointer<Element>>](/documentation/swift/unsafebufferpointer/subscript(_:)-6ynnu)
- [subscript(Int) -> Element](/documentation/swift/unsafebufferpointer/subscript(_:)-9vykr)

###### Type Aliases

- [UnsafeBufferPointer.Index](/documentation/swift/unsafebufferpointer/index)
- [UnsafeBufferPointer.Indices](/documentation/swift/unsafebufferpointer/indices-swift.typealias)
- [UnsafeBufferPointer.SubSequence](/documentation/swift/unsafebufferpointer/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/unsafebufferpointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/unsafebufferpointer/debugdescription)
- [OperationParameter Implementations](/documentation/swift/unsafebufferpointer/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/unsafebufferpointer/graphbuildertensor(_:))
- [Sequence Implementations](/documentation/swift/unsafebufferpointer/sequence-implementations)

###### Structures

- [UnsafeBufferPointer.Iterator](/documentation/swift/unsafebufferpointer/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/unsafebufferpointer/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> Element?](/documentation/swift/unsafebufferpointer/iterator/next())

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unsafebufferpointer/lazy)
- [var underestimatedCount: Int](/documentation/swift/unsafebufferpointer/underestimatedcount-4t0go)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafebufferpointer/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafebufferpointer/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unsafebufferpointer/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafebufferpointer/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unsafebufferpointer/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/unsafebufferpointer/drop(while:)-7a7l4)
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/unsafebufferpointer/dropfirst(_:)-9f3ee)
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/unsafebufferpointer/droplast(_:)-8b3kj)
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafebufferpointer/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafebufferpointer/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unsafebufferpointer/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafebufferpointer/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafebufferpointer/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafebufferpointer/flatmap(_:)-6chur)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unsafebufferpointer/flatmap(_:)-i3m8)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unsafebufferpointer/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/unsafebufferpointer/joined())
- [func joined(separator: String) -> String](/documentation/swift/unsafebufferpointer/joined(separator:)-1ckny)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/unsafebufferpointer/joined(separator:)-7ubg0)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafebufferpointer/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafebufferpointer/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> UnsafeBufferPointer<Element>.Iterator](/documentation/swift/unsafebufferpointer/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafebufferpointer/map(_:)-9jnnu)
- [func max() -> Self.Element?](/documentation/swift/unsafebufferpointer/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafebufferpointer/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unsafebufferpointer/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafebufferpointer/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/unsafebufferpointer/prefix(_:)-9jcr4)
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafebufferpointer/prefix(while:)-3il7m)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unsafebufferpointer/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unsafebufferpointer/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/unsafebufferpointer/reversed()-24fls)
- [func shuffled() -> [Self.Element]](/documentation/swift/unsafebufferpointer/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unsafebufferpointer/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unsafebufferpointer/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafebufferpointer/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/unsafebufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:)-5m0k2)
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/unsafebufferpointer/split(separator:maxsplits:omittingemptysubsequences:)-9bdw7)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unsafebufferpointer/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafebufferpointer/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/unsafebufferpointer/suffix(_:)-1rpxh)
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafebufferpointer/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafebufferpointer/withcontiguousstorageifavailable(_:)-1ynrz)
- [UnsafeMutableBufferPointer](/documentation/swift/unsafemutablebufferpointer)

##### Initializers

- [init(AudioBuffer)](/documentation/swift/unsafemutablebufferpointer/init(_:)-6750l)
- [init(MLMultiArray) throws](/documentation/swift/unsafemutablebufferpointer/init(_:)-789ap)
- [init(mutating: UnsafeBufferPointer<Element>)](/documentation/swift/unsafemutablebufferpointer/init(mutating:))
- [init(rebasing: Slice<UnsafeMutableBufferPointer<Element>>)](/documentation/swift/unsafemutablebufferpointer/init(rebasing:))
- [init(start: UnsafeMutablePointer<Element>?, count: Int)](/documentation/swift/unsafemutablebufferpointer/init(start:count:))

##### Instance Properties

- [var baseAddress: UnsafeMutablePointer<Element>?](/documentation/swift/unsafemutablebufferpointer/baseaddress)
- [let count: Int](/documentation/swift/unsafemutablebufferpointer/count)
- [var mutableSpan: MutableSpan<Element>](/documentation/swift/unsafemutablebufferpointer/mutablespan)
- [var span: Span<Element>](/documentation/swift/unsafemutablebufferpointer/span)

##### Instance Methods

- [func assign(repeating: Element)](/documentation/swift/unsafemutablebufferpointer/assign(repeating:))
- [func deallocate()](/documentation/swift/unsafemutablebufferpointer/deallocate())
- [func deinitialize() -> UnsafeMutableRawBufferPointer](/documentation/swift/unsafemutablebufferpointer/deinitialize())
- [func deinitializeElement(at: UnsafeMutableBufferPointer<Element>.Index)](/documentation/swift/unsafemutablebufferpointer/deinitializeelement(at:))
- [func extracting(Range<Int>) -> UnsafeMutableBufferPointer<Element>](/documentation/swift/unsafemutablebufferpointer/extracting(_:)-4izct)
- [func extracting(some RangeExpression<Int>) -> UnsafeMutableBufferPointer<Element>](/documentation/swift/unsafemutablebufferpointer/extracting(_:)-51ps5)
- [func extracting((UnboundedRange_) -> ()) -> UnsafeMutableBufferPointer<Element>](/documentation/swift/unsafemutablebufferpointer/extracting(_:)-6xfww)
- [func initialize<S>(from: S) -> (unwritten: S.Iterator, index: UnsafeMutableBufferPointer<Element>.Index)](/documentation/swift/unsafemutablebufferpointer/initialize(from:))
- [func initialize(fromContentsOf: some Collection<Element>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/initialize(fromcontentsof:))
- [func initialize(repeating: Element)](/documentation/swift/unsafemutablebufferpointer/initialize(repeating:))
- [func initializeElement(at: UnsafeMutableBufferPointer<Element>.Index, to: consuming Element)](/documentation/swift/unsafemutablebufferpointer/initializeelement(at:to:))
- [func moveElement(from: UnsafeMutableBufferPointer<Element>.Index) -> Element](/documentation/swift/unsafemutablebufferpointer/moveelement(from:))
- [func moveInitialize(fromContentsOf: Slice<UnsafeMutableBufferPointer<Element>>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/moveinitialize(fromcontentsof:)-1ag7a)
- [func moveInitialize(fromContentsOf: UnsafeMutableBufferPointer<Element>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/moveinitialize(fromcontentsof:)-8aiwj)
- [func moveUpdate(fromContentsOf: Slice<UnsafeMutableBufferPointer<Element>>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/moveupdate(fromcontentsof:)-4bpe7)
- [func moveUpdate(fromContentsOf: UnsafeMutableBufferPointer<Element>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/moveupdate(fromcontentsof:)-522y2)
- [func update<S>(from: S) -> (unwritten: S.Iterator, index: UnsafeMutableBufferPointer<Element>.Index)](/documentation/swift/unsafemutablebufferpointer/update(from:))
- [func update(fromContentsOf: some Collection<Element>) -> UnsafeMutableBufferPointer<Element>.Index](/documentation/swift/unsafemutablebufferpointer/update(fromcontentsof:))
- [func update(repeating: Element)](/documentation/swift/unsafemutablebufferpointer/update(repeating:))
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeMutableBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafemutablebufferpointer/withmemoryrebound(to:_:))

##### Subscripts

- [subscript(Int) -> Element](/documentation/swift/unsafemutablebufferpointer/subscript(_:)-2vl82)

##### Type Methods

- [static func allocate(capacity: Int) -> UnsafeMutableBufferPointer<Element>](/documentation/swift/unsafemutablebufferpointer/allocate(capacity:))

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/unsafemutablebufferpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeMutableBufferPointer.AtomicRepresentation](/documentation/swift/unsafemutablebufferpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeMutableBufferPointer<Element>.AtomicRepresentation) -> UnsafeMutableBufferPointer<Element>](/documentation/swift/unsafemutablebufferpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeMutableBufferPointer<Element>) -> UnsafeMutableBufferPointer<Element>.AtomicRepresentation](/documentation/swift/unsafemutablebufferpointer/encodeatomicrepresentation(_:))
- [BidirectionalCollection Implementations](/documentation/swift/unsafemutablebufferpointer/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unsafemutablebufferpointer/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unsafemutablebufferpointer/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unsafemutablebufferpointer/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/droplast(_:)-7846m)
- [func formIndex(before: inout Int)](/documentation/swift/unsafemutablebufferpointer/formindex(before:))
- [func index(before: Int) -> Int](/documentation/swift/unsafemutablebufferpointer/index(before:))
- [func joined(separator: String) -> String](/documentation/swift/unsafemutablebufferpointer/joined(separator:)-5do13)
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablebufferpointer/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafemutablebufferpointer/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unsafemutablebufferpointer/reversed()-3wn5k)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/suffix(_:)-3w6rj)
- [Collection Implementations](/documentation/swift/unsafemutablebufferpointer/collection-implementations)

###### Instance Properties

- [var endIndex: Int](/documentation/swift/unsafemutablebufferpointer/endindex)
- [var first: Self.Element?](/documentation/swift/unsafemutablebufferpointer/first)
- [var indices: Range<Int>](/documentation/swift/unsafemutablebufferpointer/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/unsafemutablebufferpointer/isempty)
- [var startIndex: Int](/documentation/swift/unsafemutablebufferpointer/startindex)
- [var underestimatedCount: Int](/documentation/swift/unsafemutablebufferpointer/underestimatedcount-4ggr6)

###### Instance Methods

- [func distance(from: Int, to: Int) -> Int](/documentation/swift/unsafemutablebufferpointer/distance(from:to:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/drop(while:)-37wq1)
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/dropfirst(_:)-1ruqu)
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/droplast(_:)-6rw2x)
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablebufferpointer/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafemutablebufferpointer/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unsafemutablebufferpointer/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unsafemutablebufferpointer/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Int)](/documentation/swift/unsafemutablebufferpointer/formindex(after:))
- [func index(Int, offsetBy: Int) -> Int](/documentation/swift/unsafemutablebufferpointer/index(_:offsetby:))
- [func index(Int, offsetBy: Int, limitedBy: Int) -> Int?](/documentation/swift/unsafemutablebufferpointer/index(_:offsetby:limitedby:))
- [func index(after: Int) -> Int](/documentation/swift/unsafemutablebufferpointer/index(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablebufferpointer/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unsafemutablebufferpointer/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unsafemutablebufferpointer/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafemutablebufferpointer/map(_:)-5p6og)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/prefix(_:)-1n69c)
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/prefix(while:)-3arjm)
- [func randomElement() -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsafemutablebufferpointer/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unsafemutablebufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:)-4pbql)
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unsafemutablebufferpointer/split(separator:maxsplits:omittingemptysubsequences:)-3dgmc)
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/suffix(_:)-qdce)
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablebufferpointer/suffix(from:))

###### Subscripts

- [subscript(Range<Int>) -> Slice<UnsafeMutableBufferPointer<Element>>](/documentation/swift/unsafemutablebufferpointer/subscript(_:)-13u1d)
- [subscript(Int) -> Element](/documentation/swift/unsafemutablebufferpointer/subscript(_:)-9t9gq)

###### Type Aliases

- [UnsafeMutableBufferPointer.Index](/documentation/swift/unsafemutablebufferpointer/index)
- [UnsafeMutableBufferPointer.Indices](/documentation/swift/unsafemutablebufferpointer/indices-swift.typealias)
- [UnsafeMutableBufferPointer.SubSequence](/documentation/swift/unsafemutablebufferpointer/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/unsafemutablebufferpointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/unsafemutablebufferpointer/debugdescription)
- [MutableCollection Implementations](/documentation/swift/unsafemutablebufferpointer/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/unsafemutablebufferpointer/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/unsafemutablebufferpointer/partition(by:)-33su1)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/unsafemutablebufferpointer/partition(by:)-90pnv)
- [func reverse()](/documentation/swift/unsafemutablebufferpointer/reverse())
- [func shuffle()](/documentation/swift/unsafemutablebufferpointer/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/unsafemutablebufferpointer/shuffle(using:))
- [func sort()](/documentation/swift/unsafemutablebufferpointer/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/unsafemutablebufferpointer/sort(by:))
- [func swapAt(Int, Int)](/documentation/swift/unsafemutablebufferpointer/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablebufferpointer/withcontiguousmutablestorageifavailable(_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablebufferpointer/withcontiguousmutablestorageifavailable(_:)-73994)
- [OperationParameter Implementations](/documentation/swift/unsafemutablebufferpointer/operationparameter-implementations)

###### Instance Methods

- [func graphBuilderTensor(BNNSGraph.Builder) -> BNNSGraph.Builder.Tensor<Element>](/documentation/swift/unsafemutablebufferpointer/graphbuildertensor(_:))
- [Sequence Implementations](/documentation/swift/unsafemutablebufferpointer/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unsafemutablebufferpointer/lazy)
- [var underestimatedCount: Int](/documentation/swift/unsafemutablebufferpointer/underestimatedcount-4t0hk)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablebufferpointer/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafemutablebufferpointer/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unsafemutablebufferpointer/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablebufferpointer/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unsafemutablebufferpointer/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/unsafemutablebufferpointer/drop(while:)-7a7k8)
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/unsafemutablebufferpointer/dropfirst(_:)-9f3di)
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/droplast(_:)-8b3lf)
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafemutablebufferpointer/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablebufferpointer/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unsafemutablebufferpointer/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafemutablebufferpointer/flatmap(_:)-6chtv)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unsafemutablebufferpointer/flatmap(_:)-i3n4)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unsafemutablebufferpointer/foreach(_:))
- [func joined() -> FlattenSequence<Self>](/documentation/swift/unsafemutablebufferpointer/joined())
- [func joined(separator: String) -> String](/documentation/swift/unsafemutablebufferpointer/joined(separator:)-1ckou)
- [func joined<Separator>(separator: Separator) -> JoinedSequence<Self>](/documentation/swift/unsafemutablebufferpointer/joined(separator:)-7ubf4)
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafemutablebufferpointer/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablebufferpointer/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> UnsafeMutableBufferPointer<Element>.Iterator](/documentation/swift/unsafemutablebufferpointer/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafemutablebufferpointer/map(_:)-9jnoq)
- [func max() -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablebufferpointer/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/unsafemutablebufferpointer/prefix(_:)-9jcs0)
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/prefix(while:)-3il6q)
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unsafemutablebufferpointer/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unsafemutablebufferpointer/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/reversed()-24fmo)
- [func shuffled() -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/unsafemutablebufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:)-5m0ky)
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/unsafemutablebufferpointer/split(separator:maxsplits:omittingemptysubsequences:)-9bdx3)
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unsafemutablebufferpointer/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablebufferpointer/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/unsafemutablebufferpointer/suffix(_:)-1rpyd)
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablebufferpointer/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablebufferpointer/withcontiguousstorageifavailable(_:)-1ynsv)

###### Type Aliases

- [UnsafeMutableBufferPointer.Iterator](/documentation/swift/unsafemutablebufferpointer/iterator)

#### Raw Pointers

- [UnsafeRawPointer](/documentation/swift/unsaferawpointer)

##### Initializers

- [init<T>(AutoreleasingUnsafeMutablePointer<T>)](/documentation/swift/unsaferawpointer/init(_:)-1z2cc)
- [init?<T>(UnsafePointer<T>?)](/documentation/swift/unsaferawpointer/init(_:)-1z902)
- [init?<T>(AutoreleasingUnsafeMutablePointer<T>?)](/documentation/swift/unsaferawpointer/init(_:)-2kyf)
- [init?(UnsafeMutableRawPointer?)](/documentation/swift/unsaferawpointer/init(_:)-4dxzd)
- [init?<T>(UnsafeMutablePointer<T>?)](/documentation/swift/unsaferawpointer/init(_:)-76a4f)
- [init<T>(UnsafePointer<T>)](/documentation/swift/unsaferawpointer/init(_:)-84kry)
- [init(UnsafeMutableRawPointer)](/documentation/swift/unsaferawpointer/init(_:)-8tlvz)
- [init<T>(UnsafeMutablePointer<T>)](/documentation/swift/unsaferawpointer/init(_:)-9t67o)

##### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/unsaferawpointer/customplaygroundquicklook)
- [var hashValue: Int](/documentation/swift/unsaferawpointer/hashvalue)

##### Instance Methods

- [func alignedDown<T>(for: T.Type) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/aligneddown(for:))
- [func alignedDown(toMultipleOf: Int) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/aligneddown(tomultipleof:))
- [func alignedUp<T>(for: T.Type) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/alignedup(for:))
- [func alignedUp(toMultipleOf: Int) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/alignedup(tomultipleof:))
- [func assumingMemoryBound<T>(to: T.Type) -> UnsafePointer<T>](/documentation/swift/unsaferawpointer/assumingmemorybound(to:))
- [func bindMemory<T>(to: T.Type, capacity: Int) -> UnsafePointer<T>](/documentation/swift/unsaferawpointer/bindmemory(to:capacity:))
- [func deallocate()](/documentation/swift/unsaferawpointer/deallocate())
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawpointer/load(frombyteoffset:as:))
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawpointer/loadunaligned(frombyteoffset:as:)-5wi7f)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawpointer/loadunaligned(frombyteoffset:as:)-8a8c8)
- [func withMemoryRebound<T, E, Result>(to: T.Type, capacity: Int, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsaferawpointer/withmemoryrebound(to:capacity:_:))

##### Type Aliases

- [UnsafeRawPointer.Pointee](/documentation/swift/unsaferawpointer/pointee)

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/unsaferawpointer/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [UnsafeRawPointer.AtomicOptionalRepresentation](/documentation/swift/unsaferawpointer/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming UnsafeRawPointer.AtomicOptionalRepresentation) -> UnsafeRawPointer?](/documentation/swift/unsaferawpointer/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming UnsafeRawPointer?) -> UnsafeRawPointer.AtomicOptionalRepresentation](/documentation/swift/unsaferawpointer/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/unsaferawpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeRawPointer.AtomicRepresentation](/documentation/swift/unsaferawpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeRawPointer.AtomicRepresentation) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeRawPointer) -> UnsafeRawPointer.AtomicRepresentation](/documentation/swift/unsaferawpointer/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/unsaferawpointer/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unsaferawpointer/'...(_:)-4mm4t)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unsaferawpointer/'...(_:)-6ct5d)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unsaferawpointer/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unsaferawpointer/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unsaferawpointer/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/_(_:_:)-24u5s)
- [static func < (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/_(_:_:)-fe67)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/_=(_:_:)-1ihb)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/_=(_:_:)-8lyij)
- [CustomReflectable Implementations](/documentation/swift/unsaferawpointer/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/unsaferawpointer/custommirror)
- [Equatable Implementations](/documentation/swift/unsaferawpointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/!=(_:_:)-1bb00)
- [static func == (Self, Self) -> Bool](/documentation/swift/unsaferawpointer/==(_:_:)-4wfsx)
- [Hashable Implementations](/documentation/swift/unsaferawpointer/hashable-implementations)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unsaferawpointer/hash(into:))
- [Strideable Implementations](/documentation/swift/unsaferawpointer/strideable-implementations)

###### Operators

- [static func + (Self, Self.Stride) -> Self](/documentation/swift/unsaferawpointer/+(_:_:)-5q1dn)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/unsaferawpointer/+(_:_:)-7xyjr)
- [static func += (inout Self, Self.Stride)](/documentation/swift/unsaferawpointer/+=(_:_:))
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/unsaferawpointer/-(_:_:)-2mzya)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/unsaferawpointer/-(_:_:)-7vacm)
- [static func -= (inout Self, Self.Stride)](/documentation/swift/unsaferawpointer/-=(_:_:))

###### Instance Methods

- [func advanced(by: Int) -> UnsafeRawPointer](/documentation/swift/unsaferawpointer/advanced(by:))

###### Type Aliases

- [UnsafeRawPointer.Stride](/documentation/swift/unsaferawpointer/stride)
- [UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer)

##### Initializers

- [init<T>(AutoreleasingUnsafeMutablePointer<T>)](/documentation/swift/unsafemutablerawpointer/init(_:)-4sdp3)
- [init?<T>(UnsafeMutablePointer<T>?)](/documentation/swift/unsafemutablerawpointer/init(_:)-5r9za)
- [init<T>(UnsafeMutablePointer<T>)](/documentation/swift/unsafemutablerawpointer/init(_:)-7oubm)
- [init?<T>(AutoreleasingUnsafeMutablePointer<T>?)](/documentation/swift/unsafemutablerawpointer/init(_:)-7xubw)
- [init?(mutating: UnsafeRawPointer?)](/documentation/swift/unsafemutablerawpointer/init(mutating:)-3ws4f)
- [init(mutating: UnsafeRawPointer)](/documentation/swift/unsafemutablerawpointer/init(mutating:)-7kfot)

##### Instance Properties

- [var customPlaygroundQuickLook: _PlaygroundQuickLook](/documentation/swift/unsafemutablerawpointer/customplaygroundquicklook)
- [var hashValue: Int](/documentation/swift/unsafemutablerawpointer/hashvalue)

##### Instance Methods

- [func alignedDown<T>(for: T.Type) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/aligneddown(for:))
- [func alignedDown(toMultipleOf: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/aligneddown(tomultipleof:))
- [func alignedUp<T>(for: T.Type) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/alignedup(for:))
- [func alignedUp(toMultipleOf: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/alignedup(tomultipleof:))
- [func assumingMemoryBound<T>(to: T.Type) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/assumingmemorybound(to:))
- [func bindMemory<T>(to: T.Type, capacity: Int) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/bindmemory(to:capacity:))
- [func copyBytes(from: UnsafeRawPointer, count: Int)](/documentation/swift/unsafemutablerawpointer/copybytes(from:count:))
- [func copyMemory(from: UnsafeRawPointer, byteCount: Int)](/documentation/swift/unsafemutablerawpointer/copymemory(from:bytecount:))
- [func deallocate()](/documentation/swift/unsafemutablerawpointer/deallocate())
- [func deallocate(bytes: Int, alignedTo: Int)](/documentation/swift/unsafemutablerawpointer/deallocate(bytes:alignedto:))
- [func initializeMemory<T>(as: T.Type, at: Int, count: Int, to: T) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/initializememory(as:at:count:to:))
- [func initializeMemory<C>(as: C.Element.Type, from: C) -> UnsafeMutablePointer<C.Element>](/documentation/swift/unsafemutablerawpointer/initializememory(as:from:))
- [func initializeMemory<T>(as: T.Type, from: UnsafePointer<T>, count: Int) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/initializememory(as:from:count:))
- [func initializeMemory<T>(as: T.Type, repeating: T, count: Int) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/initializememory(as:repeating:count:))
- [func initializeMemory<T>(as: T.Type, to: consuming T) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/initializememory(as:to:))
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawpointer/load(frombyteoffset:as:))
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawpointer/loadunaligned(frombyteoffset:as:)-3rcfy)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawpointer/loadunaligned(frombyteoffset:as:)-4br03)
- [func moveInitializeMemory<T>(as: T.Type, from: UnsafeMutablePointer<T>, count: Int) -> UnsafeMutablePointer<T>](/documentation/swift/unsafemutablerawpointer/moveinitializememory(as:from:count:))
- [func storeBytes<T>(of: T, toByteOffset: Int, as: T.Type)](/documentation/swift/unsafemutablerawpointer/storebytes(of:tobyteoffset:as:)-3chnc)
- [func storeBytes<T>(of: T, toByteOffset: Int, as: T.Type)](/documentation/swift/unsafemutablerawpointer/storebytes(of:tobyteoffset:as:)-9mpot)
- [func withMemoryRebound<T, E, Result>(to: T.Type, capacity: Int, (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafemutablerawpointer/withmemoryrebound(to:capacity:_:))

##### Type Aliases

- [UnsafeMutableRawPointer.Pointee](/documentation/swift/unsafemutablerawpointer/pointee)

##### Type Methods

- [static func allocate(byteCount: Int, alignment: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/allocate(bytecount:alignment:))
- [static func allocate(bytes: Int, alignedTo: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/allocate(bytes:alignedto:))

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/unsafemutablerawpointer/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [UnsafeMutableRawPointer.AtomicOptionalRepresentation](/documentation/swift/unsafemutablerawpointer/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming UnsafeMutableRawPointer.AtomicOptionalRepresentation) -> UnsafeMutableRawPointer?](/documentation/swift/unsafemutablerawpointer/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming UnsafeMutableRawPointer?) -> UnsafeMutableRawPointer.AtomicOptionalRepresentation](/documentation/swift/unsafemutablerawpointer/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/unsafemutablerawpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeMutableRawPointer.AtomicRepresentation](/documentation/swift/unsafemutablerawpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeMutableRawPointer.AtomicRepresentation) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeMutableRawPointer) -> UnsafeMutableRawPointer.AtomicRepresentation](/documentation/swift/unsafemutablerawpointer/encodeatomicrepresentation(_:))
- [Comparable Implementations](/documentation/swift/unsafemutablerawpointer/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/unsafemutablerawpointer/'...(_:)-4mm5p)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/unsafemutablerawpointer/'...(_:)-6ct69)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/unsafemutablerawpointer/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/unsafemutablerawpointer/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/unsafemutablerawpointer/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/_(_:_:)-24u4w)
- [static func < (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/_(_:_:)-fe5b)
- [static func <= (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/_=(_:_:)-1ii7)
- [static func >= (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/_=(_:_:)-8lyhn)
- [CustomReflectable Implementations](/documentation/swift/unsafemutablerawpointer/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/unsafemutablerawpointer/custommirror)
- [Equatable Implementations](/documentation/swift/unsafemutablerawpointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/!=(_:_:)-1baz4)
- [static func == (Self, Self) -> Bool](/documentation/swift/unsafemutablerawpointer/==(_:_:)-4wftt)
- [Hashable Implementations](/documentation/swift/unsafemutablerawpointer/hashable-implementations)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/unsafemutablerawpointer/hash(into:))
- [Strideable Implementations](/documentation/swift/unsafemutablerawpointer/strideable-implementations)

###### Operators

- [static func + (Self, Self.Stride) -> Self](/documentation/swift/unsafemutablerawpointer/+(_:_:)-5q1cr)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/unsafemutablerawpointer/+(_:_:)-7xyiv)
- [static func += (inout Self, Self.Stride)](/documentation/swift/unsafemutablerawpointer/+=(_:_:))
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/unsafemutablerawpointer/-(_:_:)-2mzz6)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/unsafemutablerawpointer/-(_:_:)-7vabq)
- [static func -= (inout Self, Self.Stride)](/documentation/swift/unsafemutablerawpointer/-=(_:_:))

###### Instance Methods

- [func advanced(by: Int) -> UnsafeMutableRawPointer](/documentation/swift/unsafemutablerawpointer/advanced(by:))

###### Type Aliases

- [UnsafeMutableRawPointer.Stride](/documentation/swift/unsafemutablerawpointer/stride)
- [UnsafeRawBufferPointer](/documentation/swift/unsaferawbufferpointer)

##### Initializers

- [init(UnsafeRawBufferPointer)](/documentation/swift/unsaferawbufferpointer/init(_:)-24m35)
- [init(UnsafeMutableRawBufferPointer)](/documentation/swift/unsaferawbufferpointer/init(_:)-5ko6n)
- [init<T>(UnsafeBufferPointer<T>)](/documentation/swift/unsaferawbufferpointer/init(_:)-9uv4)
- [init<T>(UnsafeMutableBufferPointer<T>)](/documentation/swift/unsaferawbufferpointer/init(_:)-rrzw)
- [init(rebasing: Slice<UnsafeRawBufferPointer>)](/documentation/swift/unsaferawbufferpointer/init(rebasing:)-9mh4j)
- [init(rebasing: Slice<UnsafeMutableRawBufferPointer>)](/documentation/swift/unsaferawbufferpointer/init(rebasing:)-9sxid)
- [init(start: UnsafeRawPointer?, count: Int)](/documentation/swift/unsaferawbufferpointer/init(start:count:))

##### Instance Properties

- [var baseAddress: UnsafeRawPointer?](/documentation/swift/unsaferawbufferpointer/baseaddress)
- [var bytes: RawSpan](/documentation/swift/unsaferawbufferpointer/bytes)

##### Instance Methods

- [func assumingMemoryBound<T>(to: T.Type) -> UnsafeBufferPointer<T>](/documentation/swift/unsaferawbufferpointer/assumingmemorybound(to:))
- [func bindMemory<T>(to: T.Type) -> UnsafeBufferPointer<T>](/documentation/swift/unsaferawbufferpointer/bindmemory(to:))
- [func deallocate()](/documentation/swift/unsaferawbufferpointer/deallocate())
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawbufferpointer/load(frombyteoffset:as:))
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawbufferpointer/loadunaligned(frombyteoffset:as:)-2r9sy)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsaferawbufferpointer/loadunaligned(frombyteoffset:as:)-95fln)
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsaferawbufferpointer/withmemoryrebound(to:_:))

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/unsaferawbufferpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeRawBufferPointer.AtomicRepresentation](/documentation/swift/unsaferawbufferpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeRawBufferPointer.AtomicRepresentation) -> UnsafeRawBufferPointer](/documentation/swift/unsaferawbufferpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeRawBufferPointer) -> UnsafeRawBufferPointer.AtomicRepresentation](/documentation/swift/unsaferawbufferpointer/encodeatomicrepresentation(_:))
- [BidirectionalCollection Implementations](/documentation/swift/unsaferawbufferpointer/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unsaferawbufferpointer/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unsaferawbufferpointer/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unsaferawbufferpointer/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/unsaferawbufferpointer/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsaferawbufferpointer/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsaferawbufferpointer/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unsaferawbufferpointer/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/suffix(_:))
- [Collection Implementations](/documentation/swift/unsaferawbufferpointer/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/unsaferawbufferpointer/count)
- [var endIndex: UnsafeRawBufferPointer.Index](/documentation/swift/unsaferawbufferpointer/endindex)
- [var first: Self.Element?](/documentation/swift/unsaferawbufferpointer/first)
- [var indices: UnsafeRawBufferPointer.Indices](/documentation/swift/unsaferawbufferpointer/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/unsaferawbufferpointer/isempty)
- [var startIndex: UnsafeRawBufferPointer.Index](/documentation/swift/unsaferawbufferpointer/startindex)
- [var underestimatedCount: Int](/documentation/swift/unsaferawbufferpointer/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsaferawbufferpointer/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsaferawbufferpointer/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unsaferawbufferpointer/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unsaferawbufferpointer/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/unsaferawbufferpointer/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unsaferawbufferpointer/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unsaferawbufferpointer/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unsaferawbufferpointer/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsaferawbufferpointer/map(_:)-5p6ph)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/unsaferawbufferpointer/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unsaferawbufferpointer/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsaferawbufferpointer/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unsaferawbufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unsaferawbufferpointer/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/suffix(from:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/unsaferawbufferpointer/subscript(_:)-2nyad)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsaferawbufferpointer/subscript(_:)-392oj)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/subscript(_:)-4al9g)
- [subscript(Int) -> UnsafeRawBufferPointer.Element](/documentation/swift/unsaferawbufferpointer/subscript(_:)-4dk2n)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/unsaferawbufferpointer/subscript(_:)-4h7s7)
- [subscript(Range<Int>) -> UnsafeRawBufferPointer.SubSequence](/documentation/swift/unsaferawbufferpointer/subscript(_:)-58r3z)

###### Type Aliases

- [UnsafeRawBufferPointer.Index](/documentation/swift/unsaferawbufferpointer/index)
- [UnsafeRawBufferPointer.Indices](/documentation/swift/unsaferawbufferpointer/indices-swift.typealias)
- [UnsafeRawBufferPointer.SubSequence](/documentation/swift/unsaferawbufferpointer/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/unsaferawbufferpointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/unsaferawbufferpointer/debugdescription)
- [RandomAccessCollection Implementations](/documentation/swift/unsaferawbufferpointer/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/unsaferawbufferpointer/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/unsaferawbufferpointer/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/unsaferawbufferpointer/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/unsaferawbufferpointer/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/unsaferawbufferpointer/index(before:))
- [Sequence Implementations](/documentation/swift/unsaferawbufferpointer/sequence-implementations)

###### Structures

- [UnsafeRawBufferPointer.Iterator](/documentation/swift/unsaferawbufferpointer/iterator)

###### Default Implementations

- [IteratorProtocol Implementations](/documentation/swift/unsaferawbufferpointer/iterator/iteratorprotocol-implementations)

###### Instance Methods

- [func next() -> UInt8?](/documentation/swift/unsaferawbufferpointer/iterator/next())

###### Type Aliases

- [UnsafeRawBufferPointer.Iterator.Element](/documentation/swift/unsaferawbufferpointer/iterator/element)
- [Sequence Implementations](/documentation/swift/unsaferawbufferpointer/iterator/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unsaferawbufferpointer/iterator/lazy)
- [var underestimatedCount: Int](/documentation/swift/unsaferawbufferpointer/iterator/underestimatedcount)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsaferawbufferpointer/iterator/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unsaferawbufferpointer/iterator/count(where:))
- [func drop(while: (Self.Element) throws -> Bool) rethrows -> DropWhileSequence<Self>](/documentation/swift/unsaferawbufferpointer/iterator/drop(while:))
- [func dropFirst(Int) -> DropFirstSequence<Self>](/documentation/swift/unsaferawbufferpointer/iterator/dropfirst(_:))
- [func dropLast(Int) -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/droplast(_:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unsaferawbufferpointer/iterator/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/iterator/first(where:))
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unsaferawbufferpointer/iterator/flatmap(_:)-72pux)
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsaferawbufferpointer/iterator/flatmap(_:)-bk5q)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unsaferawbufferpointer/iterator/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> Self](/documentation/swift/unsaferawbufferpointer/iterator/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsaferawbufferpointer/iterator/map(_:))
- [func max() -> Self.Element?](/documentation/swift/unsaferawbufferpointer/iterator/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/iterator/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unsaferawbufferpointer/iterator/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/iterator/min(by:))
- [func prefix(Int) -> PrefixSequence<Self>](/documentation/swift/unsaferawbufferpointer/iterator/prefix(_:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/prefix(while:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unsaferawbufferpointer/iterator/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unsaferawbufferpointer/iterator/reduce(into:_:))
- [func reversed() -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/reversed())
- [func shuffled() -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/sorted(by:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [ArraySlice<Self.Element>]](/documentation/swift/unsaferawbufferpointer/iterator/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [ArraySlice<Self.Element>]](/documentation/swift/unsaferawbufferpointer/iterator/split(separator:maxsplits:omittingemptysubsequences:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/iterator/starts(with:by:))
- [func suffix(Int) -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/iterator/suffix(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsaferawbufferpointer/iterator/withcontiguousstorageifavailable(_:))

###### Type Aliases

- [UnsafeRawBufferPointer.Iterator.Iterator](/documentation/swift/unsaferawbufferpointer/iterator/iterator)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unsaferawbufferpointer/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsaferawbufferpointer/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unsaferawbufferpointer/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unsaferawbufferpointer/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsaferawbufferpointer/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unsaferawbufferpointer/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsaferawbufferpointer/flatmap(_:)-6chuu)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unsaferawbufferpointer/flatmap(_:)-i3md)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unsaferawbufferpointer/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsaferawbufferpointer/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> UnsafeRawBufferPointer.Iterator](/documentation/swift/unsaferawbufferpointer/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsaferawbufferpointer/map(_:)-9jnnz)
- [func max() -> Self.Element?](/documentation/swift/unsaferawbufferpointer/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unsaferawbufferpointer/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsaferawbufferpointer/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unsaferawbufferpointer/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unsaferawbufferpointer/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsaferawbufferpointer/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unsaferawbufferpointer/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsaferawbufferpointer/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<UnsafeRawBufferPointer.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsaferawbufferpointer/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsaferawbufferpointer/withcontiguousstorageifavailable(_:)-1ynru)

###### Type Aliases

- [UnsafeRawBufferPointer.Element](/documentation/swift/unsaferawbufferpointer/element)
- [UnsafeMutableRawBufferPointer](/documentation/swift/unsafemutablerawbufferpointer)

##### Initializers

- [init(UnsafeMutableRawBufferPointer)](/documentation/swift/unsafemutablerawbufferpointer/init(_:)-5kt34)
- [init<T>(UnsafeMutableBufferPointer<T>)](/documentation/swift/unsafemutablerawbufferpointer/init(_:)-9dmrh)
- [init(mutating: UnsafeRawBufferPointer)](/documentation/swift/unsafemutablerawbufferpointer/init(mutating:))
- [init(rebasing: Slice<UnsafeMutableRawBufferPointer>)](/documentation/swift/unsafemutablerawbufferpointer/init(rebasing:))
- [init(start: UnsafeMutableRawPointer?, count: Int)](/documentation/swift/unsafemutablerawbufferpointer/init(start:count:))

##### Instance Properties

- [var baseAddress: UnsafeMutableRawPointer?](/documentation/swift/unsafemutablerawbufferpointer/baseaddress)
- [var bytes: RawSpan](/documentation/swift/unsafemutablerawbufferpointer/bytes)
- [var mutableBytes: MutableRawSpan](/documentation/swift/unsafemutablerawbufferpointer/mutablebytes)

##### Instance Methods

- [func assumingMemoryBound<T>(to: T.Type) -> UnsafeMutableBufferPointer<T>](/documentation/swift/unsafemutablerawbufferpointer/assumingmemorybound(to:))
- [func bindMemory<T>(to: T.Type) -> UnsafeMutableBufferPointer<T>](/documentation/swift/unsafemutablerawbufferpointer/bindmemory(to:))
- [func copyBytes<C>(from: C)](/documentation/swift/unsafemutablerawbufferpointer/copybytes(from:)-6hg9u)
- [func copyBytes(from: UnsafeRawBufferPointer)](/documentation/swift/unsafemutablerawbufferpointer/copybytes(from:)-8y3nw)
- [func copyMemory(from: UnsafeRawBufferPointer)](/documentation/swift/unsafemutablerawbufferpointer/copymemory(from:))
- [func deallocate()](/documentation/swift/unsafemutablerawbufferpointer/deallocate())
- [func initializeMemory<S>(as: S.Element.Type, from: S) -> (unwritten: S.Iterator, initialized: UnsafeMutableBufferPointer<S.Element>)](/documentation/swift/unsafemutablerawbufferpointer/initializememory(as:from:))
- [func initializeMemory<C>(as: C.Element.Type, fromContentsOf: C) -> UnsafeMutableBufferPointer<C.Element>](/documentation/swift/unsafemutablerawbufferpointer/initializememory(as:fromcontentsof:))
- [func initializeMemory<T>(as: T.Type, repeating: T) -> UnsafeMutableBufferPointer<T>](/documentation/swift/unsafemutablerawbufferpointer/initializememory(as:repeating:))
- [func load<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawbufferpointer/load(frombyteoffset:as:))
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawbufferpointer/loadunaligned(frombyteoffset:as:)-7883k)
- [func loadUnaligned<T>(fromByteOffset: Int, as: T.Type) -> T](/documentation/swift/unsafemutablerawbufferpointer/loadunaligned(frombyteoffset:as:)-q4sv)
- [func moveInitializeMemory<T>(as: T.Type, fromContentsOf: UnsafeMutableBufferPointer<T>) -> UnsafeMutableBufferPointer<T>](/documentation/swift/unsafemutablerawbufferpointer/moveinitializememory(as:fromcontentsof:)-3gs5r)
- [func moveInitializeMemory<T>(as: T.Type, fromContentsOf: Slice<UnsafeMutableBufferPointer<T>>) -> UnsafeMutableBufferPointer<T>](/documentation/swift/unsafemutablerawbufferpointer/moveinitializememory(as:fromcontentsof:)-8gjm9)
- [func storeBytes<T>(of: T, toByteOffset: Int, as: T.Type)](/documentation/swift/unsafemutablerawbufferpointer/storebytes(of:tobyteoffset:as:))
- [func withMemoryRebound<T, E, Result>(to: T.Type, (UnsafeMutableBufferPointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/unsafemutablerawbufferpointer/withmemoryrebound(to:_:))

##### Type Methods

- [static func allocate(byteCount: Int, alignment: Int) -> UnsafeMutableRawBufferPointer](/documentation/swift/unsafemutablerawbufferpointer/allocate(bytecount:alignment:))
- [static func allocate(count: Int) -> UnsafeMutableRawBufferPointer](/documentation/swift/unsafemutablerawbufferpointer/allocate(count:))

##### Default Implementations

- [AtomicRepresentable Implementations](/documentation/swift/unsafemutablerawbufferpointer/atomicrepresentable-implementations)

###### Type Aliases

- [UnsafeMutableRawBufferPointer.AtomicRepresentation](/documentation/swift/unsafemutablerawbufferpointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming UnsafeMutableRawBufferPointer.AtomicRepresentation) -> UnsafeMutableRawBufferPointer](/documentation/swift/unsafemutablerawbufferpointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming UnsafeMutableRawBufferPointer) -> UnsafeMutableRawBufferPointer.AtomicRepresentation](/documentation/swift/unsafemutablerawbufferpointer/encodeatomicrepresentation(_:))
- [BidirectionalCollection Implementations](/documentation/swift/unsafemutablerawbufferpointer/bidirectionalcollection-implementations)

###### Instance Properties

- [var last: Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/last)

###### Instance Methods

- [func difference<C>(from: C) -> CollectionDifference<Self.Element>](/documentation/swift/unsafemutablerawbufferpointer/difference(from:))
- [func difference<C>(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference<Self.Element>](/documentation/swift/unsafemutablerawbufferpointer/difference(from:by:))
- [func dropLast(Int) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/droplast(_:))
- [func formIndex(before: inout Self.Index)](/documentation/swift/unsafemutablerawbufferpointer/formindex(before:))
- [func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/last(where:))
- [func lastIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/lastindex(of:))
- [func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/lastindex(where:))
- [func reversed() -> ReversedCollection<Self>](/documentation/swift/unsafemutablerawbufferpointer/reversed())
- [func suffix(Int) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/suffix(_:))
- [Collection Implementations](/documentation/swift/unsafemutablerawbufferpointer/collection-implementations)

###### Instance Properties

- [var count: Int](/documentation/swift/unsafemutablerawbufferpointer/count)
- [var endIndex: UnsafeMutableRawBufferPointer.Index](/documentation/swift/unsafemutablerawbufferpointer/endindex)
- [var first: Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/first)
- [var indices: UnsafeMutableRawBufferPointer.Indices](/documentation/swift/unsafemutablerawbufferpointer/indices-swift.property)
- [var isEmpty: Bool](/documentation/swift/unsafemutablerawbufferpointer/isempty)
- [var startIndex: UnsafeMutableRawBufferPointer.Index](/documentation/swift/unsafemutablerawbufferpointer/startindex)
- [var underestimatedCount: Int](/documentation/swift/unsafemutablerawbufferpointer/underestimatedcount)

###### Instance Methods

- [func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/drop(while:))
- [func dropFirst(Int) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/dropfirst(_:))
- [func firstIndex(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/firstindex(of:))
- [func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/firstindex(where:))
- [func formIndex(inout Self.Index, offsetBy: Int)](/documentation/swift/unsafemutablerawbufferpointer/formindex(_:offsetby:))
- [func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool](/documentation/swift/unsafemutablerawbufferpointer/formindex(_:offsetby:limitedby:))
- [func formIndex(after: inout Self.Index)](/documentation/swift/unsafemutablerawbufferpointer/formindex(after:))
- [func index(of: Self.Element) -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/index(of:))
- [func indices(of: Self.Element) -> RangeSet<Self.Index>](/documentation/swift/unsafemutablerawbufferpointer/indices(of:))
- [func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet<Self.Index>](/documentation/swift/unsafemutablerawbufferpointer/indices(where:))
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafemutablerawbufferpointer/map(_:)-5p6ol)
- [func prefix(Int) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/prefix(_:))
- [func prefix(through: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/prefix(through:))
- [func prefix(upTo: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/prefix(upto:))
- [func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/prefix(while:))
- [func randomElement() -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/randomelement())
- [func randomElement<T>(using: inout T) -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/randomelement(using:))
- [func removingSubranges(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsafemutablerawbufferpointer/removingsubranges(_:))
- [func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]](/documentation/swift/unsafemutablerawbufferpointer/split(maxsplits:omittingemptysubsequences:whereseparator:))
- [func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]](/documentation/swift/unsafemutablerawbufferpointer/split(separator:maxsplits:omittingemptysubsequences:))
- [func suffix(from: Self.Index) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/suffix(from:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-2nyb9)
- [subscript(RangeSet<Self.Index>) -> DiscontiguousSlice<Self>](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-392pf)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-4al8k)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-4h7rb)

###### Type Aliases

- [UnsafeMutableRawBufferPointer.Index](/documentation/swift/unsafemutablerawbufferpointer/index)
- [UnsafeMutableRawBufferPointer.Indices](/documentation/swift/unsafemutablerawbufferpointer/indices-swift.typealias)
- [UnsafeMutableRawBufferPointer.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subsequence)
- [CustomDebugStringConvertible Implementations](/documentation/swift/unsafemutablerawbufferpointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/unsafemutablerawbufferpointer/debugdescription)
- [MutableCollection Implementations](/documentation/swift/unsafemutablerawbufferpointer/mutablecollection-implementations)

###### Instance Methods

- [func moveSubranges(RangeSet<Self.Index>, to: Self.Index) -> Range<Self.Index>](/documentation/swift/unsafemutablerawbufferpointer/movesubranges(_:to:))
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/unsafemutablerawbufferpointer/partition(by:)-33su4)
- [func partition(by: (Self.Element) throws -> Bool) rethrows -> Self.Index](/documentation/swift/unsafemutablerawbufferpointer/partition(by:)-90pny)
- [func reverse()](/documentation/swift/unsafemutablerawbufferpointer/reverse())
- [func shuffle()](/documentation/swift/unsafemutablerawbufferpointer/shuffle())
- [func shuffle<T>(using: inout T)](/documentation/swift/unsafemutablerawbufferpointer/shuffle(using:))
- [func sort()](/documentation/swift/unsafemutablerawbufferpointer/sort())
- [func sort(by: (Self.Element, Self.Element) throws -> Bool) rethrows](/documentation/swift/unsafemutablerawbufferpointer/sort(by:))
- [func swapAt(Int, Int)](/documentation/swift/unsafemutablerawbufferpointer/swapat(_:_:))
- [func withContiguousMutableStorageIfAvailable<R>((inout UnsafeMutableBufferPointer<UnsafeMutableRawBufferPointer.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablerawbufferpointer/withcontiguousmutablestorageifavailable(_:))

###### Subscripts

- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-3g42)
- [subscript(Range<Self.Index>) -> Slice<Self>](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-3i1y)
- [subscript<R>(R) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-3kwnc)
- [subscript((UnboundedRange_) -> ()) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-3pmfu)
- [subscript(Range<Self.Index>) -> Self.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-9v9lo)
- [subscript(Int) -> UnsafeMutableRawBufferPointer.Element](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-u791)
- [subscript(Range<Int>) -> UnsafeMutableRawBufferPointer.SubSequence](/documentation/swift/unsafemutablerawbufferpointer/subscript(_:)-znv7)
- [RandomAccessCollection Implementations](/documentation/swift/unsafemutablerawbufferpointer/randomaccesscollection-implementations)

###### Instance Methods

- [func distance(from: Self.Index, to: Self.Index) -> Self.Index.Stride](/documentation/swift/unsafemutablerawbufferpointer/distance(from:to:))
- [func index(Self.Index, offsetBy: Self.Index.Stride) -> Self.Index](/documentation/swift/unsafemutablerawbufferpointer/index(_:offsetby:))
- [func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?](/documentation/swift/unsafemutablerawbufferpointer/index(_:offsetby:limitedby:))
- [func index(after: Self.Index) -> Self.Index](/documentation/swift/unsafemutablerawbufferpointer/index(after:))
- [func index(before: Self.Index) -> Self.Index](/documentation/swift/unsafemutablerawbufferpointer/index(before:))
- [Sequence Implementations](/documentation/swift/unsafemutablerawbufferpointer/sequence-implementations)

###### Instance Properties

- [var lazy: LazySequence<Self>](/documentation/swift/unsafemutablerawbufferpointer/lazy)

###### Instance Methods

- [func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablerawbufferpointer/allsatisfy(_:))
- [func compactMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafemutablerawbufferpointer/compactmap(_:))
- [func contains(Self.Element) -> Bool](/documentation/swift/unsafemutablerawbufferpointer/contains(_:))
- [func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablerawbufferpointer/contains(where:))
- [func count<E>(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int](/documentation/swift/unsafemutablerawbufferpointer/count(where:))
- [func elementsEqual<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafemutablerawbufferpointer/elementsequal(_:))
- [func elementsEqual<OtherSequence>(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablerawbufferpointer/elementsequal(_:by:))
- [func enumerated() -> EnumeratedSequence<Self>](/documentation/swift/unsafemutablerawbufferpointer/enumerated())
- [func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafemutablerawbufferpointer/filter(_:))
- [func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/first(where:))
- [func flatMap<ElementOfResult>((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]](/documentation/swift/unsafemutablerawbufferpointer/flatmap(_:)-6chty)
- [func flatMap<SegmentOfResult>((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]](/documentation/swift/unsafemutablerawbufferpointer/flatmap(_:)-i3n9)
- [func forEach((Self.Element) throws -> Void) rethrows](/documentation/swift/unsafemutablerawbufferpointer/foreach(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence) -> Bool](/documentation/swift/unsafemutablerawbufferpointer/lexicographicallyprecedes(_:))
- [func lexicographicallyPrecedes<OtherSequence>(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablerawbufferpointer/lexicographicallyprecedes(_:by:))
- [func makeIterator() -> UnsafeMutableRawBufferPointer.Iterator](/documentation/swift/unsafemutablerawbufferpointer/makeiterator())
- [func map<T, E>((Self.Element) throws(E) -> T) throws(E) -> [T]](/documentation/swift/unsafemutablerawbufferpointer/map(_:)-9jnov)
- [func max() -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/max())
- [func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/max(by:))
- [func min() -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/min())
- [func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?](/documentation/swift/unsafemutablerawbufferpointer/min(by:))
- [func reduce<Result>(Result, (Result, Self.Element) throws -> Result) rethrows -> Result](/documentation/swift/unsafemutablerawbufferpointer/reduce(_:_:))
- [func reduce<Result>(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result](/documentation/swift/unsafemutablerawbufferpointer/reduce(into:_:))
- [func shuffled() -> [Self.Element]](/documentation/swift/unsafemutablerawbufferpointer/shuffled())
- [func shuffled<T>(using: inout T) -> [Self.Element]](/documentation/swift/unsafemutablerawbufferpointer/shuffled(using:))
- [func sorted() -> [Self.Element]](/documentation/swift/unsafemutablerawbufferpointer/sorted())
- [func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]](/documentation/swift/unsafemutablerawbufferpointer/sorted(by:))
- [func starts<PossiblePrefix>(with: PossiblePrefix) -> Bool](/documentation/swift/unsafemutablerawbufferpointer/starts(with:))
- [func starts<PossiblePrefix>(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool](/documentation/swift/unsafemutablerawbufferpointer/starts(with:by:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<UnsafeMutableRawBufferPointer.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablerawbufferpointer/withcontiguousstorageifavailable(_:))
- [func withContiguousStorageIfAvailable<R>((UnsafeBufferPointer<Self.Element>) throws -> R) rethrows -> R?](/documentation/swift/unsafemutablerawbufferpointer/withcontiguousstorageifavailable(_:)-1ynsq)

###### Type Aliases

- [UnsafeMutableRawBufferPointer.Element](/documentation/swift/unsafemutablerawbufferpointer/element)
- [UnsafeMutableRawBufferPointer.Iterator](/documentation/swift/unsafemutablerawbufferpointer/iterator)

#### Memory Access

- [func withUnsafePointer<T, E, Result>(to: inout T, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafepointer(to:_:)-9fjn6)
- [func withUnsafePointer<T, E, Result>(to: borrowing T, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafepointer(to:_:)-35wrn)
- [func withUnsafeMutablePointer<T, E, Result>(to: inout T, (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafemutablepointer(to:_:))
- [func withUnsafeBytes<T, E, Result>(of: inout T, (UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafebytes(of:_:)-5zxtl)
- [func withUnsafeBytes<T, E, Result>(of: borrowing T, (UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafebytes(of:_:)-5gesg)
- [func withUnsafeMutableBytes<T, E, Result>(of: inout T, (UnsafeMutableRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafemutablebytes(of:_:))
- [func withUnsafeTemporaryAllocation<T, R, E>(of: T.Type, capacity: Int, (UnsafeMutableBufferPointer<T>) throws(E) -> R) throws(E) -> R](/documentation/swift/withunsafetemporaryallocation(of:capacity:_:))
- [func withUnsafeTemporaryAllocation<R, E>(byteCount: Int, alignment: Int, (UnsafeMutableRawBufferPointer) throws(E) -> R) throws(E) -> R](/documentation/swift/withunsafetemporaryallocation(bytecount:alignment:_:))
- [func swap<T>(inout T, inout T)](/documentation/swift/swap(_:_:))
- [func exchange<T>(inout T, with: consuming T) -> T](/documentation/swift/exchange(_:with:))

#### Memory Layout

- [MemoryLayout](/documentation/swift/memorylayout)

##### Accessing the Layout of a Type

- [static var size: Int](/documentation/swift/memorylayout/size)
- [static var alignment: Int](/documentation/swift/memorylayout/alignment)
- [static var stride: Int](/documentation/swift/memorylayout/stride)

##### Accessing the Layout of a Value

- [static func stride(ofValue: borrowing T) -> Int](/documentation/swift/memorylayout/stride(ofvalue:))
- [static func size(ofValue: borrowing T) -> Int](/documentation/swift/memorylayout/size(ofvalue:))
- [static func alignment(ofValue: borrowing T) -> Int](/documentation/swift/memorylayout/alignment(ofvalue:))

##### Querying Type Properties

- [static func offset(of: PartialKeyPath<T>) -> Int?](/documentation/swift/memorylayout/offset(of:))

#### Reference Counting

- [Unmanaged](/documentation/swift/unmanaged)

##### Instance Methods

- [func autorelease() -> Unmanaged<Instance>](/documentation/swift/unmanaged/autorelease())
- [func release()](/documentation/swift/unmanaged/release())
- [func retain() -> Unmanaged<Instance>](/documentation/swift/unmanaged/retain())
- [func takeRetainedValue() -> Instance](/documentation/swift/unmanaged/takeretainedvalue())
- [func takeUnretainedValue() -> Instance](/documentation/swift/unmanaged/takeunretainedvalue())
- [func toOpaque() -> UnsafeMutableRawPointer](/documentation/swift/unmanaged/toopaque())

##### Type Methods

- [static func fromOpaque(UnsafeRawPointer) -> Unmanaged<Instance>](/documentation/swift/unmanaged/fromopaque(_:))
- [static func passRetained(Instance) -> Unmanaged<Instance>](/documentation/swift/unmanaged/passretained(_:))
- [static func passUnretained(Instance) -> Unmanaged<Instance>](/documentation/swift/unmanaged/passunretained(_:))

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/unmanaged/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [Unmanaged.AtomicOptionalRepresentation](/documentation/swift/unmanaged/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming Unmanaged<Instance>.AtomicOptionalRepresentation) -> Unmanaged<Instance>?](/documentation/swift/unmanaged/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming Unmanaged<Instance>?) -> Unmanaged<Instance>.AtomicOptionalRepresentation](/documentation/swift/unmanaged/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/unmanaged/atomicrepresentable-implementations)

###### Type Aliases

- [Unmanaged.AtomicRepresentation](/documentation/swift/unmanaged/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming Unmanaged<Instance>.AtomicRepresentation) -> Unmanaged<Instance>](/documentation/swift/unmanaged/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Unmanaged<Instance>) -> Unmanaged<Instance>.AtomicRepresentation](/documentation/swift/unmanaged/encodeatomicrepresentation(_:))
- [func withExtendedLifetime<T, E, Result>(borrowing T, () throws(E) -> Result) throws(E) -> Result](/documentation/swift/withextendedlifetime(_:_:)-4mmpv)
- [func withExtendedLifetime<T, E, Result>(borrowing T, (borrowing T) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withextendedlifetime(_:_:)-59dz3)
- [func extendLifetime<T>(borrowing T)](/documentation/swift/extendlifetime(_:))
- [Type Casting and Existential Types](/documentation/swift/type-casting-and-existential-types)

#### Integer Value Casting

- [func numericCast<T, U>(T) -> U](/documentation/swift/numericcast(_:))

#### Closure Casting

- [func withoutActuallyEscaping<ClosureType, ResultType, Failure>(ClosureType, do: (ClosureType) throws(Failure) -> ResultType) throws(Failure) -> ResultType](/documentation/swift/withoutactuallyescaping(_:do:))

#### Instance Casting

- [func unsafeDowncast<T>(AnyObject, to: T.Type) -> T](/documentation/swift/unsafedowncast(_:to:))
- [func unsafeBitCast<T, U>(T, to: U.Type) -> U](/documentation/swift/unsafebitcast(_:to:))

#### Existential Types

- [AnyObject](/documentation/swift/anyobject)
- [AnyClass](/documentation/swift/anyclass)

#### Comparing Identity

- [func === (AnyObject?, AnyObject?) -> Bool](/documentation/swift/===(_:_:))
- [func !== (AnyObject?, AnyObject?) -> Bool](/documentation/swift/!==(_:_:))

#### Void Type

- [Void](/documentation/swift/void)
- [C Interoperability](/documentation/swift/c-interoperability)

#### C and Objective-C Pointers

- [OpaquePointer](/documentation/swift/opaquepointer)

##### Initializers

- [init(UnsafeRawPointer)](/documentation/swift/opaquepointer/init(_:)-3h8av)
- [init?(UnsafeMutableRawPointer?)](/documentation/swift/opaquepointer/init(_:)-4g6sp)
- [init<T>(UnsafePointer<T>)](/documentation/swift/opaquepointer/init(_:)-4u1ar)
- [init?(UnsafeRawPointer?)](/documentation/swift/opaquepointer/init(_:)-6gmth)
- [init<T>(UnsafeMutablePointer<T>)](/documentation/swift/opaquepointer/init(_:)-7oa0u)
- [init(UnsafeMutableRawPointer)](/documentation/swift/opaquepointer/init(_:)-7zxvo)
- [init?<T>(UnsafePointer<T>?)](/documentation/swift/opaquepointer/init(_:)-b58i)
- [init?<T>(UnsafeMutablePointer<T>?)](/documentation/swift/opaquepointer/init(_:)-xapj)
- [init?(bitPattern: Int)](/documentation/swift/opaquepointer/init(bitpattern:)-26uvs)
- [init?(bitPattern: UInt)](/documentation/swift/opaquepointer/init(bitpattern:)-7f8tm)

##### Instance Properties

- [var intendedSpatialExperience: any SpatialAudioExperience](/documentation/swift/opaquepointer/intendedspatialexperience)

##### Default Implementations

- [AtomicOptionalRepresentable Implementations](/documentation/swift/opaquepointer/atomicoptionalrepresentable-implementations)

###### Type Aliases

- [OpaquePointer.AtomicOptionalRepresentation](/documentation/swift/opaquepointer/atomicoptionalrepresentation)

###### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming OpaquePointer.AtomicOptionalRepresentation) -> OpaquePointer?](/documentation/swift/opaquepointer/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming OpaquePointer?) -> OpaquePointer.AtomicOptionalRepresentation](/documentation/swift/opaquepointer/encodeatomicoptionalrepresentation(_:))
- [AtomicRepresentable Implementations](/documentation/swift/opaquepointer/atomicrepresentable-implementations)

###### Type Aliases

- [OpaquePointer.AtomicRepresentation](/documentation/swift/opaquepointer/atomicrepresentation)

###### Type Methods

- [static func decodeAtomicRepresentation(consuming OpaquePointer.AtomicRepresentation) -> OpaquePointer](/documentation/swift/opaquepointer/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming OpaquePointer) -> OpaquePointer.AtomicRepresentation](/documentation/swift/opaquepointer/encodeatomicrepresentation(_:))
- [CustomDebugStringConvertible Implementations](/documentation/swift/opaquepointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/opaquepointer/debugdescription)
- [Equatable Implementations](/documentation/swift/opaquepointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/opaquepointer/!=(_:_:))
- [static func == (OpaquePointer, OpaquePointer) -> Bool](/documentation/swift/opaquepointer/==(_:_:))
- [Hashable Implementations](/documentation/swift/opaquepointer/hashable-implementations)

###### Instance Properties

- [var hashValue: Int](/documentation/swift/opaquepointer/hashvalue)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/opaquepointer/hash(into:))
- [AutoreleasingUnsafeMutablePointer](/documentation/swift/autoreleasingunsafemutablepointer)

##### Converting Pointers

- [init?<U>(UnsafeMutablePointer<U>?)](/documentation/swift/autoreleasingunsafemutablepointer/init(_:)-7rndr)
- [init<U>(UnsafeMutablePointer<U>)](/documentation/swift/autoreleasingunsafemutablepointer/init(_:)-4mrz1)

##### Accessing a Pointer’s Memory

- [var pointee: Pointee](/documentation/swift/autoreleasingunsafemutablepointer/pointee)
- [subscript(Int) -> Pointee](/documentation/swift/autoreleasingunsafemutablepointer/subscript(_:))

##### Comparing Pointers

- [static func == (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/==(_:_:)-4wfti)
- [static func != (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/!=(_:_:)-1bazr)

##### Instance Properties

- [var hashValue: Int](/documentation/swift/autoreleasingunsafemutablepointer/hashvalue)

##### Type Aliases

- [AutoreleasingUnsafeMutablePointer.Stride](/documentation/swift/autoreleasingunsafemutablepointer/stride)

##### Default Implementations

- [Comparable Implementations](/documentation/swift/autoreleasingunsafemutablepointer/comparable-implementations)

###### Operators

- [static func ... (Self) -> PartialRangeThrough<Self>](/documentation/swift/autoreleasingunsafemutablepointer/'...(_:)-4mm56)
- [static func ... (Self) -> PartialRangeFrom<Self>](/documentation/swift/autoreleasingunsafemutablepointer/'...(_:)-6ct52)
- [static func ... (Self, Self) -> ClosedRange<Self>](/documentation/swift/autoreleasingunsafemutablepointer/'...(_:_:))
- [static func ..< (Self) -> PartialRangeUpTo<Self>](/documentation/swift/autoreleasingunsafemutablepointer/'.._(_:))
- [static func ..< (Self, Self) -> Range<Self>](/documentation/swift/autoreleasingunsafemutablepointer/'.._(_:_:))
- [static func > (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/_(_:_:)-24u5j)
- [static func < (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/_(_:_:)-fe5k)
- [static func <= (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/_=(_:_:)-1ihk)
- [static func >= (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/_=(_:_:)-8lyi4)
- [CustomReflectable Implementations](/documentation/swift/autoreleasingunsafemutablepointer/customreflectable-implementations)

###### Instance Properties

- [var customMirror: Mirror](/documentation/swift/autoreleasingunsafemutablepointer/custommirror)
- [Equatable Implementations](/documentation/swift/autoreleasingunsafemutablepointer/equatable-implementations)

###### Operators

- [static func != (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/!=(_:_:)-1bazr)
- [static func == (Self, Self) -> Bool](/documentation/swift/autoreleasingunsafemutablepointer/==(_:_:)-4wfti)
- [Hashable Implementations](/documentation/swift/autoreleasingunsafemutablepointer/hashable-implementations)

###### Instance Methods

- [func hash(into: inout Hasher)](/documentation/swift/autoreleasingunsafemutablepointer/hash(into:))
- [Strideable Implementations](/documentation/swift/autoreleasingunsafemutablepointer/strideable-implementations)

###### Operators

- [static func + (Self, Self.Stride) -> Self](/documentation/swift/autoreleasingunsafemutablepointer/+(_:_:)-5q1d8)
- [static func + (Self.Stride, Self) -> Self](/documentation/swift/autoreleasingunsafemutablepointer/+(_:_:)-7xyk0)
- [static func += (inout Self, Self.Stride)](/documentation/swift/autoreleasingunsafemutablepointer/+=(_:_:))
- [static func - (Self, Self) -> Self.Stride](/documentation/swift/autoreleasingunsafemutablepointer/-(_:_:)-2mzyt)
- [static func - (Self, Self.Stride) -> Self](/documentation/swift/autoreleasingunsafemutablepointer/-(_:_:)-7vacx)
- [static func -= (inout Self, Self.Stride)](/documentation/swift/autoreleasingunsafemutablepointer/-=(_:_:))

#### C Variadic Functions

- [func withVaList<R>([any CVarArg], (CVaListPointer) -> R) -> R](/documentation/swift/withvalist(_:_:))
- [CVaListPointer](/documentation/swift/cvalistpointer)

##### Default Implementations

- [CustomDebugStringConvertible Implementations](/documentation/swift/cvalistpointer/customdebugstringconvertible-implementations)

###### Instance Properties

- [var debugDescription: String](/documentation/swift/cvalistpointer/debugdescription)
- [CVarArg](/documentation/swift/cvararg)
- [func getVaList([any CVarArg]) -> CVaListPointer](/documentation/swift/getvalist(_:))

#### Pointers to Values

- [func withUnsafePointer<T, E, Result>(to: inout T, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafepointer(to:_:)-9fjn6)
- [func withUnsafePointer<T, E, Result>(to: borrowing T, (UnsafePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafepointer(to:_:)-35wrn)
- [func withUnsafeMutablePointer<T, E, Result>(to: inout T, (UnsafeMutablePointer<T>) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafemutablepointer(to:_:))
- [func withUnsafeBytes<T, E, Result>(of: inout T, (UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafebytes(of:_:)-5zxtl)
- [func withUnsafeBytes<T, E, Result>(of: borrowing T, (UnsafeRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafebytes(of:_:)-5gesg)
- [func withUnsafeMutableBytes<T, E, Result>(of: inout T, (UnsafeMutableRawBufferPointer) throws(E) -> Result) throws(E) -> Result](/documentation/swift/withunsafemutablebytes(of:_:))

#### Aliases for Imported C Types

- [CBool](/documentation/swift/cbool)
- [CChar](/documentation/swift/cchar)
- [CChar8](/documentation/swift/cchar8)
- [CChar16](/documentation/swift/cchar16)
- [CChar32](/documentation/swift/cchar32)
- [CDouble](/documentation/swift/cdouble)
- [CLongDouble](/documentation/swift/clongdouble)
- [CFloat](/documentation/swift/cfloat)
- [CFloat16](/documentation/swift/cfloat16)
- [CInt](/documentation/swift/cint)
- [CLong](/documentation/swift/clong)
- [CLongLong](/documentation/swift/clonglong)
- [CShort](/documentation/swift/cshort)
- [CSignedChar](/documentation/swift/csignedchar)
- [CUnsignedChar](/documentation/swift/cunsignedchar)
- [CUnsignedInt](/documentation/swift/cunsignedint)
- [CUnsignedLong](/documentation/swift/cunsignedlong)
- [CUnsignedLongLong](/documentation/swift/cunsignedlonglong)
- [CUnsignedShort](/documentation/swift/cunsignedshort)
- [CWideChar](/documentation/swift/cwidechar)
- [Operator Declarations](/documentation/swift/operator-declarations)

### Deprecated

- [Deprecated](/documentation/swift/deprecated)

#### Deprecated Functions

- [func async<Success>(priority: TaskPriority?, operation: () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/async(priority:operation:)-2y0dc)
- [func async<Success>(priority: TaskPriority?, operation: () async -> Success) -> Task<Success, Never>](/documentation/swift/async(priority:operation:)-684z0)
- [func asyncDetached<Success>(priority: TaskPriority?, operation: () async -> Success) -> Task<Success, Never>](/documentation/swift/asyncdetached(priority:operation:)-6wbk6)
- [func asyncDetached<Success>(priority: TaskPriority?, operation: () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/asyncdetached(priority:operation:)-79mp7)
- [func asyncDetached<Success>(priority: TaskPriority?, operation: () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/asyncdetached(priority:operation:)-79mp7)
- [func detach<Success>(priority: TaskPriority?, operation: () async throws -> Success) -> Task<Success, any Error>](/documentation/swift/detach(priority:operation:)-2h9ty)
- [func detach<Success>(priority: TaskPriority?, operation: () async -> Success) -> Task<Success, Never>](/documentation/swift/detach(priority:operation:)-4948v)

#### Deprecated Type Aliases

- [ArrayLiteralConvertible](/documentation/swift/arrayliteralconvertible)
- [BidirectionalIndexable](/documentation/swift/bidirectionalindexable)
- [BidirectionalSlice](/documentation/swift/bidirectionalslice)
- [BooleanLiteralConvertible](/documentation/swift/booleanliteralconvertible)
- [ClosedRangeIndex](/documentation/swift/closedrangeindex)
- [CustomPlaygroundQuickLookable](/documentation/swift/customplaygroundquicklookable)
- [DefaultBidirectionalIndices](/documentation/swift/defaultbidirectionalindices)
- [DefaultRandomAccessIndices](/documentation/swift/defaultrandomaccessindices)
- [DictionaryIterator](/documentation/swift/dictionaryiterator)
- [DictionaryLiteralConvertible](/documentation/swift/dictionaryliteralconvertible)
- [EmptyIterator](/documentation/swift/emptyiterator)
- [ExtendedGraphemeClusterLiteralConvertible](/documentation/swift/extendedgraphemeclusterliteralconvertible)
- [FlattenBidirectionalCollectionIndex](/documentation/swift/flattenbidirectionalcollectionindex)
- [FlattenBidirectionalCollection](/documentation/swift/flattenbidirectionalcollection)
- [FlattenCollectionIndex](/documentation/swift/flattencollectionindex)
- [FloatLiteralConvertible](/documentation/swift/floatliteralconvertible)
- [IndexableBase](/documentation/swift/indexablebase)
- [Indexable](/documentation/swift/indexable)
- [IntegerLiteralConvertible](/documentation/swift/integerliteralconvertible)
- [IteratorOverOne](/documentation/swift/iteratoroverone)
- [JoinedIterator](/documentation/swift/joinediterator)
- [LazyBidirectionalCollection](/documentation/swift/lazybidirectionalcollection)
- [LazyDropWhileBidirectionalCollection](/documentation/swift/lazydropwhilebidirectionalcollection)
- [LazyDropWhileIndex](/documentation/swift/lazydropwhileindex)
- [LazyDropWhileIterator](/documentation/swift/lazydropwhileiterator)
- [LazyFilterBidirectionalCollection](/documentation/swift/lazyfilterbidirectionalcollection)
- [LazyFilterIndex](/documentation/swift/lazyfilterindex)
- [LazyFilterIterator](/documentation/swift/lazyfilteriterator)
- [LazyMapBidirectionalCollection](/documentation/swift/lazymapbidirectionalcollection)
- [LazyMapIterator](/documentation/swift/lazymapiterator)
- [LazyMapRandomAccessCollection](/documentation/swift/lazymaprandomaccesscollection)
- [LazyPrefixWhileBidirectionalCollection](/documentation/swift/lazyprefixwhilebidirectionalcollection)
- [LazyPrefixWhileIndex](/documentation/swift/lazyprefixwhileindex)
- [LazyPrefixWhileIterator](/documentation/swift/lazyprefixwhileiterator)
- [LazyRandomAccessCollection](/documentation/swift/lazyrandomaccesscollection)
- [MutableBidirectionalSlice](/documentation/swift/mutablebidirectionalslice)
- [MutableIndexable](/documentation/swift/mutableindexable)
- [MutableRandomAccessSlice](/documentation/swift/mutablerandomaccessslice)
- [MutableRangeReplaceableBidirectionalSlice](/documentation/swift/mutablerangereplaceablebidirectionalslice)
- [MutableRangeReplaceableRandomAccessSlice](/documentation/swift/mutablerangereplaceablerandomaccessslice)
- [MutableRangeReplaceableSlice](/documentation/swift/mutablerangereplaceableslice)
- [MutableSlice](/documentation/swift/mutableslice)
- [NilLiteralConvertible](/documentation/swift/nilliteralconvertible)
- [RandomAccessIndexable](/documentation/swift/randomaccessindexable)
- [RandomAccessSlice](/documentation/swift/randomaccessslice)
- [RangeReplaceableBidirectionalSlice](/documentation/swift/rangereplaceablebidirectionalslice)
- [RangeReplaceableIndexable](/documentation/swift/rangereplaceableindexable)
- [RangeReplaceableRandomAccessSlice](/documentation/swift/rangereplaceablerandomaccessslice)
- [RangeReplaceableSlice](/documentation/swift/rangereplaceableslice)
- [ReversedIndex](/documentation/swift/reversedindex)
- [ReversedRandomAccessCollection](/documentation/swift/reversedrandomaccesscollection)
- [StringInterpolationConvertible](/documentation/swift/stringinterpolationconvertible)
- [StringLiteralConvertible](/documentation/swift/stringliteralconvertible)
- [UnicodeScalarLiteralConvertible](/documentation/swift/unicodescalarliteralconvertible)
- [UnsafeBufferPointerIterator](/documentation/swift/unsafebufferpointeriterator)
- [UnsafeMutableRawBufferPointerIterator](/documentation/swift/unsafemutablerawbufferpointeriterator)
- [UnsafeRawBufferPointerIterator](/documentation/swift/unsaferawbufferpointeriterator)
- [Zip2Iterator](/documentation/swift/zip2iterator)

## Observation

- [Observation](/documentation/observation)

### Observable conformance

- [macro Observable()](/documentation/observation/observable())
- [Observable](/documentation/observation/observable)

### Change tracking

- [func withObservationTracking<T>(() -> T, onChange: @autoclosure () -> () -> Void) -> T](/documentation/observation/withobservationtracking(_:onchange:))
- [ObservationRegistrar](/documentation/observation/observationregistrar)

#### Creating an observation registrar

- [init()](/documentation/observation/observationregistrar/init())

#### Receiving change notifications

- [func willSet<Subject, Member>(Subject, keyPath: KeyPath<Subject, Member>)](/documentation/observation/observationregistrar/willset(_:keypath:))
- [func didSet<Subject, Member>(Subject, keyPath: KeyPath<Subject, Member>)](/documentation/observation/observationregistrar/didset(_:keypath:))

#### Identifying transactional access

- [func access<Subject, Member>(Subject, keyPath: KeyPath<Subject, Member>)](/documentation/observation/observationregistrar/access(_:keypath:))
- [func withMutation<Subject, Member, T>(of: Subject, keyPath: KeyPath<Subject, Member>, () throws -> T) rethrows -> T](/documentation/observation/observationregistrar/withmutation(of:keypath:_:))

### Observation in SwiftUI

- [Managing model data in your app](/documentation/swiftui/managing-model-data-in-your-app)
- [Migrating from the Observable Object protocol to the Observable macro](/documentation/swiftui/migrating-from-the-observable-object-protocol-to-the-observable-macro)

### Structures

- [Observations](/documentation/observation/observations)

#### Structures

- [Observations.Iterator](/documentation/observation/observations/iterator)

#### Initializers

- [init(() throws(Failure) -> Element)](/documentation/observation/observations/init(_:))

#### Type Methods

- [static func untilFinished(() throws(Failure) -> Observations<Element, Failure>.Iteration) -> Observations<Element, Failure>](/documentation/observation/observations/untilfinished(_:))

#### Enumerations

- [Observations.Iteration](/documentation/observation/observations/iteration)

##### Enumeration Cases

- [case finish](/documentation/observation/observations/iteration/finish)
- [case next(Element)](/documentation/observation/observations/iteration/next(_:))

### Macros

- [macro ObservationIgnored()](/documentation/observation/observationignored())
- [macro ObservationTracked()](/documentation/observation/observationtracked())

## Distributed Actors

- [Distributed](/documentation/distributed)

### Essentials

- [TicTacFish: Implementing a game using distributed actors](/documentation/swift/tictacfish_implementing_a_game_using_distributed_actors)

### Distributed Actors

- [DistributedActor](/documentation/distributed/distributedactor)

#### Associated Types

- [ActorSystem](/documentation/distributed/distributedactor/actorsystem-swift.associatedtype)
- [SerializationRequirement](/documentation/distributed/distributedactor/serializationrequirement)

#### Initializers

- [init(from: any Decoder) throws](/documentation/distributed/distributedactor/init(from:))

#### Instance Properties

- [var actorSystem: Self.ActorSystem](/documentation/distributed/distributedactor/actorsystem-swift.property)
- [var asLocalActor: any Actor](/documentation/distributed/distributedactor/aslocalactor)
- [var id: Self.ID](/documentation/distributed/distributedactor/id)
- [var unownedExecutor: UnownedSerialExecutor](/documentation/distributed/distributedactor/unownedexecutor)

#### Instance Methods

- [func assertIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/distributed/distributedactor/assertisolated(_:file:line:))
- [func assumeIsolated<T>((isolated Self) throws -> T, file: StaticString, line: UInt) rethrows -> T](/documentation/distributed/distributedactor/assumeisolated(_:file:line:))
- [func encode(to: any Encoder) throws](/documentation/distributed/distributedactor/encode(to:))
- [func preconditionIsolated(@autoclosure () -> String, file: StaticString, line: UInt)](/documentation/distributed/distributedactor/preconditionisolated(_:file:line:))
- [func whenLocal<T, E>((isolated Self) async throws(E) -> T) async throws(E) -> T?](/documentation/distributed/distributedactor/whenlocal(_:))

#### Type Methods

- [static func resolve(id: Self.ID, using: Self.ActorSystem) throws -> Self](/documentation/distributed/distributedactor/resolve(id:using:))
- [DistributedActorSystem](/documentation/distributed/distributedactorsystem)

#### Associated Types

- [ActorID](/documentation/distributed/distributedactorsystem/actorid)
- [InvocationDecoder](/documentation/distributed/distributedactorsystem/invocationdecoder)
- [InvocationEncoder](/documentation/distributed/distributedactorsystem/invocationencoder)
- [ResultHandler](/documentation/distributed/distributedactorsystem/resulthandler)
- [SerializationRequirement](/documentation/distributed/distributedactorsystem/serializationrequirement)

#### Instance Methods

- [func actorReady<Act>(Act)](/documentation/distributed/distributedactorsystem/actorready(_:))
- [func assignID<Act>(Act.Type) -> Self.ActorID](/documentation/distributed/distributedactorsystem/assignid(_:))
- [func executeDistributedTarget<Act>(on: Act, target: RemoteCallTarget, invocationDecoder: inout Self.InvocationDecoder, handler: Self.ResultHandler) async throws](/documentation/distributed/distributedactorsystem/executedistributedtarget(on:target:invocationdecoder:handler:))
- [func invokeHandlerOnReturn(handler: Self.ResultHandler, resultBuffer: UnsafeRawPointer, metatype: any Any.Type) async throws](/documentation/distributed/distributedactorsystem/invokehandleronreturn(handler:resultbuffer:metatype:))
- [func makeInvocationEncoder() -> Self.InvocationEncoder](/documentation/distributed/distributedactorsystem/makeinvocationencoder())
- [func remoteCall<Act, Err, Res>(on: Act, target: RemoteCallTarget, invocation: inout Self.InvocationEncoder, throwing: Err.Type, returning: Res.Type) async throws -> Res](/documentation/distributed/distributedactorsystem/remotecall(on:target:invocation:throwing:returning:))
- [func remoteCallVoid<Act, Err>(on: Act, target: RemoteCallTarget, invocation: inout Self.InvocationEncoder, throwing: Err.Type) async throws](/documentation/distributed/distributedactorsystem/remotecallvoid(on:target:invocation:throwing:))
- [func resignID(Self.ActorID)](/documentation/distributed/distributedactorsystem/resignid(_:))
- [func resolve<Act>(id: Self.ActorID, as: Act.Type) throws -> Act?](/documentation/distributed/distributedactorsystem/resolve(id:as:))
- [macro Resolvable()](/documentation/distributed/resolvable())
- [func buildDefaultDistributedRemoteActorExecutor<Act>(Act) -> UnownedSerialExecutor](/documentation/distributed/builddefaultdistributedremoteactorexecutor(_:))

### Remote Calls

- [RemoteCallTarget](/documentation/distributed/remotecalltarget)

#### Initializers

- [init(String)](/documentation/distributed/remotecalltarget/init(_:))

#### Instance Properties

- [var description: String](/documentation/distributed/remotecalltarget/description)
- [var identifier: String](/documentation/distributed/remotecalltarget/identifier)
- [RemoteCallArgument](/documentation/distributed/remotecallargument)

#### Initializers

- [init(label: String?, name: String, value: Value)](/documentation/distributed/remotecallargument/init(label:name:value:))

#### Instance Properties

- [var effectiveLabel: String](/documentation/distributed/remotecallargument/effectivelabel)
- [let label: String?](/documentation/distributed/remotecallargument/label)
- [let name: String](/documentation/distributed/remotecallargument/name)
- [let value: Value](/documentation/distributed/remotecallargument/value)
- [DistributedTargetInvocationEncoder](/documentation/distributed/distributedtargetinvocationencoder)

#### Associated Types

- [SerializationRequirement](/documentation/distributed/distributedtargetinvocationencoder/serializationrequirement)

#### Instance Methods

- [func doneRecording() throws](/documentation/distributed/distributedtargetinvocationencoder/donerecording())
- [func recordArgument<Value>(RemoteCallArgument<Value>) throws](/documentation/distributed/distributedtargetinvocationencoder/recordargument(_:))
- [func recordErrorType<E>(E.Type) throws](/documentation/distributed/distributedtargetinvocationencoder/recorderrortype(_:))
- [func recordGenericSubstitution<T>(T.Type) throws](/documentation/distributed/distributedtargetinvocationencoder/recordgenericsubstitution(_:))
- [func recordReturnType<R>(R.Type) throws](/documentation/distributed/distributedtargetinvocationencoder/recordreturntype(_:))
- [DistributedTargetInvocationDecoder](/documentation/distributed/distributedtargetinvocationdecoder)

#### Associated Types

- [SerializationRequirement](/documentation/distributed/distributedtargetinvocationdecoder/serializationrequirement)

#### Instance Methods

- [func decodeErrorType() throws -> (any Any.Type)?](/documentation/distributed/distributedtargetinvocationdecoder/decodeerrortype())
- [func decodeGenericSubstitutions() throws -> [any Any.Type]](/documentation/distributed/distributedtargetinvocationdecoder/decodegenericsubstitutions())
- [func decodeNextArgument<Argument>() throws -> Argument](/documentation/distributed/distributedtargetinvocationdecoder/decodenextargument())
- [func decodeReturnType() throws -> (any Any.Type)?](/documentation/distributed/distributedtargetinvocationdecoder/decodereturntype())
- [DistributedTargetInvocationResultHandler](/documentation/distributed/distributedtargetinvocationresulthandler)

#### Associated Types

- [SerializationRequirement](/documentation/distributed/distributedtargetinvocationresulthandler/serializationrequirement)

#### Instance Methods

- [func onReturn<Success>(value: Success) async throws](/documentation/distributed/distributedtargetinvocationresulthandler/onreturn(value:))
- [func onReturnVoid() async throws](/documentation/distributed/distributedtargetinvocationresulthandler/onreturnvoid())
- [func onThrow<Err>(error: Err) async throws](/documentation/distributed/distributedtargetinvocationresulthandler/onthrow(error:))

### Local Testing

- [LocalTestingDistributedActorSystem](/documentation/distributed/localtestingdistributedactorsystem)

#### Initializers

- [init()](/documentation/distributed/localtestingdistributedactorsystem/init())
- [LocalTestingActorID](/documentation/distributed/localtestingactorid)

#### Initializers

- [init(id: String)](/documentation/distributed/localtestingactorid/init(id:))
- [init(parse: String)](/documentation/distributed/localtestingactorid/init(parse:))

#### Instance Properties

- [var address: String](/documentation/distributed/localtestingactorid/address)
- [let id: String](/documentation/distributed/localtestingactorid/id)
- [LocalTestingActorAddress](/documentation/distributed/localtestingactoraddress)
- [LocalTestingInvocationEncoder](/documentation/distributed/localtestinginvocationencoder)
- [LocalTestingInvocationDecoder](/documentation/distributed/localtestinginvocationdecoder)
- [LocalTestingInvocationResultHandler](/documentation/distributed/localtestinginvocationresulthandler)

### Errors

- [DistributedActorCodingError](/documentation/distributed/distributedactorcodingerror)

#### Initializers

- [init(message: String)](/documentation/distributed/distributedactorcodingerror/init(message:))

#### Instance Properties

- [let message: String](/documentation/distributed/distributedactorcodingerror/message)

#### Type Methods

- [static func missingActorSystemUserInfo<Act>(Act.Type) -> DistributedActorCodingError](/documentation/distributed/distributedactorcodingerror/missingactorsystemuserinfo(_:))
- [DistributedActorSystemError](/documentation/distributed/distributedactorsystemerror)
- [ExecuteDistributedTargetError](/documentation/distributed/executedistributedtargeterror)

#### Initializers

- [init(message: String)](/documentation/distributed/executedistributedtargeterror/init(message:))
- [init(message: String, errorCode: ExecuteDistributedTargetError.ErrorCode)](/documentation/distributed/executedistributedtargeterror/init(message:errorcode:))

#### Instance Properties

- [let errorCode: ExecuteDistributedTargetError.ErrorCode](/documentation/distributed/executedistributedtargeterror/errorcode-swift.property)
- [let message: String](/documentation/distributed/executedistributedtargeterror/message)

#### Enumerations

- [ExecuteDistributedTargetError.ErrorCode](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum)

##### Enumeration Cases

- [case invalidGenericSubstitutions](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/invalidgenericsubstitutions)
- [case invalidParameterCount](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/invalidparametercount)
- [case missingGenericSubstitutions](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/missinggenericsubstitutions)
- [case other](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/other)
- [case targetAccessorNotFound](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/targetaccessornotfound)
- [case typeDeserializationFailure](/documentation/distributed/executedistributedtargeterror/errorcode-swift.enum/typedeserializationfailure)
- [LocalTestingDistributedActorSystemError](/documentation/distributed/localtestingdistributedactorsystemerror)

#### Initializers

- [init(message: String)](/documentation/distributed/localtestingdistributedactorsystemerror/init(message:))

#### Instance Properties

- [let message: String](/documentation/distributed/localtestingdistributedactorsystemerror/message)

## Regular Expression DSL

- [RegexBuilder](/documentation/regexbuilder)

### Components

- [CharacterClass](/documentation/regexbuilder/characterclass)

#### Instance Properties

- [var inverted: CharacterClass](/documentation/regexbuilder/characterclass/inverted)

#### Instance Methods

- [func intersection(CharacterClass) -> CharacterClass](/documentation/regexbuilder/characterclass/intersection(_:))
- [func subtracting(CharacterClass) -> CharacterClass](/documentation/regexbuilder/characterclass/subtracting(_:))
- [func symmetricDifference(CharacterClass) -> CharacterClass](/documentation/regexbuilder/characterclass/symmetricdifference(_:))
- [func union(CharacterClass) -> CharacterClass](/documentation/regexbuilder/characterclass/union(_:))

#### Type Methods

- [static func generalCategory(Unicode.GeneralCategory) -> CharacterClass](/documentation/regexbuilder/characterclass/generalcategory(_:))
- [Anchor](/documentation/regexbuilder/anchor)

#### Instance Properties

- [var inverted: Anchor](/documentation/regexbuilder/anchor/inverted)

#### Type Properties

- [static var endOfLine: Anchor](/documentation/regexbuilder/anchor/endofline)
- [static var endOfSubject: Anchor](/documentation/regexbuilder/anchor/endofsubject)
- [static var endOfSubjectBeforeNewline: Anchor](/documentation/regexbuilder/anchor/endofsubjectbeforenewline)
- [static var firstMatchingPositionInSubject: Anchor](/documentation/regexbuilder/anchor/firstmatchingpositioninsubject)
- [static var startOfLine: Anchor](/documentation/regexbuilder/anchor/startofline)
- [static var startOfSubject: Anchor](/documentation/regexbuilder/anchor/startofsubject)
- [static var textSegmentBoundary: Anchor](/documentation/regexbuilder/anchor/textsegmentboundary)
- [static var wordBoundary: Anchor](/documentation/regexbuilder/anchor/wordboundary)
- [Lookahead](/documentation/regexbuilder/lookahead)

#### Initializers

- [init<R>(() -> R)](/documentation/regexbuilder/lookahead/init(_:)-2yv8x)
- [init<R>(R)](/documentation/regexbuilder/lookahead/init(_:)-4s5w2)
- [NegativeLookahead](/documentation/regexbuilder/negativelookahead)

#### Initializers

- [init<R>(R)](/documentation/regexbuilder/negativelookahead/init(_:)-3fsnx)
- [init<R>(() -> R)](/documentation/regexbuilder/negativelookahead/init(_:)-4fh1d)
- [ChoiceOf](/documentation/regexbuilder/choiceof)

#### Initializers

- [init(() -> ChoiceOf<Output>)](/documentation/regexbuilder/choiceof/init(_:))

### Quantifiers

- [One](/documentation/regexbuilder/one)

#### Initializers

- [init(some RegexComponent<Output>)](/documentation/regexbuilder/one/init(_:))
- [Optionally](/documentation/regexbuilder/optionally)

#### Initializers

- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-12hxo)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-2jtrp)
- [init(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-2zdez)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-4230v)
- [init<W, C1, C2, C3>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-44oku)
- [init<W, C1, C2, C3, C4, C5>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-4kz5l)
- [init<W, C1, C2, C3>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-5azqh)
- [init<W, C1>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-6j92l)
- [init<W, C1, C2>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-6v0ti)
- [init<W, C1, C2>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-7f3n1)
- [init<W, C1, C2, C3, C4>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-7te1p)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-83pgy)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-84fcd)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-8j8dz)
- [init(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-8kdq8)
- [init<W, C1, C2, C3, C4>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-8l2ha)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-96725)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-9pgy7)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-9picp)
- [init<W, C1>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-9wu1h)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/optionally/init(_:_:)-bak6)
- [init<W, C1, C2, C3, C4, C5, C6>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/optionally/init(_:_:)-frqi)
- [ZeroOrMore](/documentation/regexbuilder/zeroormore)

#### Initializers

- [init<W, C1, C2, C3, C4>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-15cm9)
- [init<W, C1>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-1a2tp)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-1ac85)
- [init<W, C1, C2>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-1d98s)
- [init<W, C1, C2, C3, C4, C5, C6>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-1s6e5)
- [init<W, C1, C2, C3, C4>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-254sw)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-2aen2)
- [init<W, C1>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-2l3tj)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-39ch7)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-3npxt)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-3wvrs)
- [init(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-3xl6h)
- [init<W, C1, C2, C3, C4, C5>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-4lxf6)
- [init<W, C1, C2, C3>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-5xlw2)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-6hnso)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-7oux0)
- [init<W, C1, C2, C3>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-7tdrp)
- [init<W, C1, C2>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-8f9h4)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-8ovis)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/zeroormore/init(_:_:)-8tfqv)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-9tazs)
- [init(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/zeroormore/init(_:_:)-9uicg)
- [OneOrMore](/documentation/regexbuilder/oneormore)

#### Initializers

- [init<W, C1, C2, C3>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-17cwr)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-1bnur)
- [init<W, C1, C2>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-1fq85)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-21xfx)
- [init<W, C1, C2>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-2o52m)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-2odtm)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-32m10)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-3flos)
- [init<W, C1, C2, C3, C4, C5, C6>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-3tvh3)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-4qbv9)
- [init<W, C1, C2, C3, C4>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-5helk)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-68oxd)
- [init<W, C1, C2, C3, C4, C5>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-6fm8e)
- [init<W, C1>(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-6mkp4)
- [init<W, C1>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-6pzxz)
- [init(RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/oneormore/init(_:_:)-7o7ll)
- [init(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-82w2k)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-84ep2)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-9eoi5)
- [init<W, C1, C2, C3>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-9f4e8)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-9qi4l)
- [init<W, C1, C2, C3, C4>(some RegexComponent, RegexRepetitionBehavior?)](/documentation/regexbuilder/oneormore/init(_:_:)-yc32)
- [Repeat](/documentation/regexbuilder/repeat)

#### Initializers

- [init<W, C1, C2, C3, C4, C5, C6>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-1bcjh)
- [init<W, C1, C2, C3, C4, C5>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-1qgnj)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-24n0n)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-2ev8z)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-3ghwd)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-3mo6)
- [init<W, C1, C2, C3>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-545c4)
- [init<W, C1, C2, C3>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-76l8q)
- [init<W, C1, C2>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-7adwb)
- [init<W, C1>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-7lskd)
- [init<W, C1, C2, C3, C4>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-7qz0e)
- [init<W, C1>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-7sn7t)
- [init<W, C1, C2>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-80rd3)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-83kcm)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-8574u)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-891vb)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-8cwmc)
- [init<W, C1, C2, C3, C4>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-8zx0q)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-947au)
- [init(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-9h724)
- [init(some RangeExpression<Int>, RegexRepetitionBehavior?, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(_:_:_:)-9tzos)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, some RangeExpression<Int>, RegexRepetitionBehavior?)](/documentation/regexbuilder/repeat/init(_:_:_:)-rxdn)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-1qk17)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-21lm6)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-2domp)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-2q199)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-4dhzv)
- [init<W, C1, C2>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-56csz)
- [init<W, C1>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-62ivb)
- [init(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-82evl)
- [init<W, C1, C2, C3, C4>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-8cqm4)
- [init<W, C1, C2, C3>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-9b88v)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, count: Int)](/documentation/regexbuilder/repeat/init(_:count:)-9racn)
- [init<W, C1>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-1g72m)
- [init<W, C1, C2, C3, C4, C5, C6>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-1lb2y)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-5tyx7)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-7kfzx)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-7ueje)
- [init<W, C1, C2, C3>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-80zg2)
- [init(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-8n0o0)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-8z2mq)
- [init<W, C1, C2>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-96dkt)
- [init<W, C1, C2, C3, C4>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-9nywm)
- [init<W, C1, C2, C3, C4, C5>(count: Int, () -> some RegexComponent)](/documentation/regexbuilder/repeat/init(count:_:)-9snpn)
- [Local](/documentation/regexbuilder/local)

#### Initializers

- [init(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-190tm)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-1pqmw)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-1z8ep)
- [init<W, C1, C2, C3, C4>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-2682m)
- [init<W, C1, C2, C3, C4, C5, C6>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-3bh2x)
- [init<W, C1, C2, C3>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-3igqu)
- [init<W, C1, C2, C3, C4, C5>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-3s7fi)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-53gbl)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-54x6o)
- [init<W, C1>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-5xekw)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-6dp02)
- [init(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-75o5i)
- [init<W, C1, C2>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-7an8x)
- [init<W, C1, C2, C3, C4>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-7b0cb)
- [init<W, C1, C2, C3>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-7c8wv)
- [init<W, C1>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-7o3al)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(() -> some RegexComponent)](/documentation/regexbuilder/local/init(_:)-8bmi6)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-8hppy)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-8i5e6)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-8nf0w)
- [init<W, C1, C2>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-8xd9f)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent)](/documentation/regexbuilder/local/init(_:)-anqj)

### Captures

- [Capture](/documentation/regexbuilder/capture)

#### Initializers

- [init<W, C1>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-1tmsz)
- [init<W, C1, C2, C3, C4>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-2f52u)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-3fgv4)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-3iklm)
- [init<W>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-3o4p2)
- [init<W, C1, C2>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-46rdv)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-4guoe)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-53k6l)
- [init<W, C1, C2>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-5wvbp)
- [init<W, C1, C2, C3, C4>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-6972d)
- [init<W, C1, C2, C3, C4, C5>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-6gd4p)
- [init<W, C1, C2, C3>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-6w2zh)
- [init<W>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-751s0)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-7adb5)
- [init<W, C1>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-7gbb2)
- [init<W, C1, C2, C3, C4, C5, C6>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-7o3nk)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-8e156)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-8hde2)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-9a7se)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-9u8yf)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(() -> some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-dm5i)
- [init<W, C1, C2, C3>(some RegexComponent)](/documentation/regexbuilder/capture/init(_:)-zp0c)
- [init<W, C1, C2, C3, C4, C5, C6>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-1ugzr)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-25etj)
- [init<W, C1, C2, C3, C4, C5>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-3466q)
- [init<W, C1, C2>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-5mhxe)
- [init<W, C1>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-5xnic)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-6w075)
- [init<W, C1, C2, C3, C4>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-7rcvh)
- [init<W>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-82c2j)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-8zsdh)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-9f35e)
- [init<W, C1, C2, C3>(some RegexComponent, as: Reference<W>)](/documentation/regexbuilder/capture/init(_:as:)-sg1w)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-14ci9)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-1k7ca)
- [init<W, C1, C2, C3, C4, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-2h2hm)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-50rsk)
- [init<W, C1, C2, C3, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-57wgq)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-7pm1)
- [init<W, C1, C2, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-8qyac)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-8yapk)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-9j2it)
- [init<W, C1, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-i2lv)
- [init<W, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:as:transform:)-kflo)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-186es)
- [init<W, C1, C2, C3, C4, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-18ik6)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-1kfgs)
- [init<W, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-1ns5b)
- [init<W, C1, C2, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-1t85c)
- [init<W, C1, C2, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-1vbtc)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-2fsxr)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-36nfu)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-36y0i)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-4bhm9)
- [init<W, C1, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-54rby)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-58e84)
- [init<W, C1, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-5loer)
- [init<W, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-5nqht)
- [init<W, C1, C2, C3, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-5qnr)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-69jbe)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-6u44c)
- [init<W, C1, C2, C3, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-7ndmv)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-8l6vq)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-98vy5)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-9yayx)
- [init<W, C1, C2, C3, C4, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(_:transform:)-qygd)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-3d6el)
- [init<W, C1, C2>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-3vlcx)
- [init<W, C1>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-4l8eh)
- [init<W, C1, C2, C3, C4>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-51as9)
- [init<W>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-56h1c)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-6esnr)
- [init<W, C1, C2, C3>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-7fs07)
- [init<W, C1, C2, C3, C4, C5, C6, C7>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-7rh88)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-8s7ds)
- [init<W, C1, C2, C3, C4, C5, C6>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-9isum)
- [init<W, C1, C2, C3, C4, C5>(as: Reference<W>, () -> some RegexComponent)](/documentation/regexbuilder/capture/init(as:_:)-9y6av)
- [init<W, C1, C2, C3, C4, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-15sg2)
- [init<W, C1, C2, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-1cz24)
- [init<W, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-1e5w2)
- [init<W, C1, C2, C3, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-4elzn)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-617oo)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-68hzv)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-6h4i)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-6tdp8)
- [init<W, C1, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-82pi)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-c8qs)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture)](/documentation/regexbuilder/capture/init(as:_:transform:)-jvkx)
- [TryCapture](/documentation/regexbuilder/trycapture)

#### Initializers

- [init<W, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-2a4o2)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-2bjbf)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-41r67)
- [init<W, C1, C2, C3, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-4kzw6)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-674ml)
- [init<W, C1, C2, C3, C4, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-7tqt7)
- [init<W, C1, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-88lf1)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-89xrg)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-8m89r)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-9p9ig)
- [init<W, C1, C2, NewCapture>(some RegexComponent, as: Reference<NewCapture>, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:as:transform:)-z449)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-18te8)
- [init<W, C1, C2, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-1oiex)
- [init<W, C1, C2, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-1q8tj)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-2akes)
- [init<W, C1, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-2cmjm)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-2o3dd)
- [init<W, C1, C2, C3, C4, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-35erc)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-49jj)
- [init<W, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-4ctec)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-4fb8m)
- [init<W, C1, C2, C3, C4, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-55y26)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-5blap)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-5f28q)
- [init<W, C1, C2, C3, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-5qk0r)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-631wm)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-7vgez)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-7w4kc)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-8d6xo)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-8kgfm)
- [init<W, NewCapture>(() -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-951zx)
- [init<W, C1, C2, C3, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-9oonc)
- [init<W, C1, NewCapture>(some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(_:transform:)-t0lx)
- [init<W, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-2nfnn)
- [init<W, C1, C2, C3, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-5tqfd)
- [init<W, C1, C2, C3, C4, C5, C6, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-6vy4m)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-7di2q)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-7j2mj)
- [init<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-7pe1b)
- [init<W, C1, C2, C3, C4, C5, C6, C7, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-85qkx)
- [init<W, C1, C2, C3, C4, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-8byjf)
- [init<W, C1, C2, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-8xl17)
- [init<W, C1, C2, C3, C4, C5, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-b8x0)
- [init<W, C1, NewCapture>(as: Reference<NewCapture>, () -> some RegexComponent, transform: (W) throws -> NewCapture?)](/documentation/regexbuilder/trycapture/init(as:_:transform:)-p58t)
- [Reference](/documentation/regexbuilder/reference)

#### Initializers

- [init(Capture.Type)](/documentation/regexbuilder/reference/init(_:))

### Builders

- [RegexComponentBuilder](/documentation/regexbuilder/regexcomponentbuilder)

#### Type Methods

- [static func buildBlock() -> Regex<Substring>](/documentation/regexbuilder/regexcomponentbuilder/buildblock())
- [static func buildExpression<R>(R) -> R](/documentation/regexbuilder/regexcomponentbuilder/buildexpression(_:))
- [static func buildLimitedAvailability<W, C1, C2>(some RegexComponent) -> Regex<(Substring, C1?, C2?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-1l3rg)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5, C6, C7, C8>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-4at76)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5, C6>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-4hn5e)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5, C6, C7>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-59bdi)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-6pyeu)
- [static func buildLimitedAvailability<W, C1, C2, C3>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-75sld)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-79ri4)
- [static func buildLimitedAvailability<W, C1>(some RegexComponent) -> Regex<(Substring, C1?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-8v501)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-9xvwl)
- [static func buildLimitedAvailability(some RegexComponent) -> Regex<Substring>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-c1mb)
- [static func buildLimitedAvailability<W, C1, C2, C3, C4, C5>(some RegexComponent) -> Regex<(Substring, C1?, C2?, C3?, C4?, C5?)>](/documentation/regexbuilder/regexcomponentbuilder/buildlimitedavailability(_:)-d693)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-14sjx)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-1kun5)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-1l56o)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-1mvah)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-1qjvk)
- [static func buildPartialBlock<W0>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<Substring>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2hd06)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2nr1l)
- [static func buildPartialBlock<W0, W1, C1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2p8bg)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2qewj)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2r4ca)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2rw87)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-2v43k)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-302jc)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-31uif)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-34auc)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3cwue)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3d4xq)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3fe4r)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3iyin)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3m9by)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3qdzk)
- [static func buildPartialBlock<W0, W1, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3r0w)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3rw1u)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3uzf8)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-3vbfl)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-439as)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-48ufn)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-49qyb)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4ej74)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4ev8q)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4htjq)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4qcho)
- [static func buildPartialBlock<W0, C0, C1>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4tecz)
- [static func buildPartialBlock<W0, C0, C1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4vll5)
- [static func buildPartialBlock<W0, W1, C1>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-4w1nu)
- [static func buildPartialBlock<W0, C0>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-560og)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-5613o)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-5l4bx)
- [static func buildPartialBlock<W0, W1, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6ayyo)
- [static func buildPartialBlock<W0, C0, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6j8dc)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6jekf)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6nfqh)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6qrtp)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6u75f)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6vgmh)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-6wei8)
- [static func buildPartialBlock<W0, W1, C1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-78luz)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-7oi4x)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-8nuq5)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-8o64q)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-8t85z)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-90brb)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-92aur)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-94cff)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-95d7s)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9d7nj)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9dfaj)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9fl4)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9lklo)
- [static func buildPartialBlock<W0, W1, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9ne33)
- [static func buildPartialBlock<W0, C0, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C0, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-9upqy)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-dzro)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-fss2)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-k1e8)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-krsh)
- [static func buildPartialBlock<W0, W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> Regex<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(accumulated:next:)-oglj)
- [static func buildPartialBlock<R>(first: R) -> Regex<R.RegexOutput>](/documentation/regexbuilder/regexcomponentbuilder/buildpartialblock(first:))
- [AlternationBuilder](/documentation/regexbuilder/alternationbuilder)

#### Type Methods

- [static func buildExpression<R>(R) -> R](/documentation/regexbuilder/alternationbuilder/buildexpression(_:))
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-1jq94)
- [static func buildPartialBlock<W0, C1, W1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-1oadq)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, W1, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-1vk92)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-20ao)
- [static func buildPartialBlock<W0, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-28nze)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, C8, C9, W1, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-2afed)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-2q3in)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-2yatq)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-30m9e)
- [static func buildPartialBlock<W1, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3571v)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-38zc3)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-39yml)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3a1qj)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3ascd)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3b47j)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3eldc)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3ibe4)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, W1, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3nzbh)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3rkqj)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-3wkc9)
- [static func buildPartialBlock<W0, C1>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-42jgz)
- [static func buildPartialBlock(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<Substring>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-46i6m)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-4jwp3)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-4nz0t)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-4q1xd)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-53xav)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, W1, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-576fa)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-57987)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, W1, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-5afat)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, W1, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-5fcrr)
- [static func buildPartialBlock<W1, C1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-5me97)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, W1, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-5qva)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-5wwt0)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6074o)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-653ta)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6842g)
- [static func buildPartialBlock<W0, C1, W1, C2, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6anqe)
- [static func buildPartialBlock<W1, C1>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6hkv5)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6nfpu)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6pfu4)
- [static func buildPartialBlock<W1, C1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6tz5g)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6vjm9)
- [static func buildPartialBlock<W0, C1, C2, W1, C3>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6vp0)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6x6gg)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-6yu9n)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, C8, W1, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-70usl)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, W1, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-71zj2)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-7ihw4)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5, C6, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-7jsg7)
- [static func buildPartialBlock<W0, C1, C2>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-815py)
- [static func buildPartialBlock<W0, C1, C2, C3, W1, C4, C5, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4?, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-8a7vx)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-8dd0v)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-8e0ap)
- [static func buildPartialBlock<W0, C1, C2, C3, C4>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-8pz3c)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, W1, C6>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-90yht)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, W1, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-9f39x)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, W1, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-9g62e)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, W1, C5, C6, C7, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-9k7s0)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, W1, C8>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-9op0h)
- [static func buildPartialBlock<W0, C1, C2, W1, C3, C4, C5>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3?, C4?, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-9s1co)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, W1, C7, C8, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-b6ks)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5, C6, C7>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-klfl)
- [static func buildPartialBlock<W0, C1, C2, C3, C4, C5, C6, C7, C8, W1, C9, C10>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2, C3, C4, C5, C6, C7, C8, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-o7ny)
- [static func buildPartialBlock<W1, C1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-q4oo)
- [static func buildPartialBlock<W0, C1, W1, C2, C3, C4, C5, C6, C7, C8, C9>(accumulated: some RegexComponent, next: some RegexComponent) -> ChoiceOf<(Substring, C1, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(accumulated:next:)-toh7)
- [static func buildPartialBlock<R, W, C1, C2>(first: R) -> ChoiceOf<(W, C1?, C2?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-1kh7h)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5, C6>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-271vl)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-3f6z3)
- [static func buildPartialBlock<R, W, C1>(first: R) -> ChoiceOf<(W, C1?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-520tx)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5, C6, C7, C8, C9, C10>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?, C10?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-5qbok)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5, C6, C7>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-63ah5)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-6mjz0)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5, C6, C7, C8, C9>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?, C9?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-6vt65)
- [static func buildPartialBlock<R>(first: R) -> ChoiceOf<R.RegexOutput>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-7jdle)
- [static func buildPartialBlock<R, W, C1, C2, C3>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-c2a6)
- [static func buildPartialBlock<R, W, C1, C2, C3, C4, C5, C6, C7, C8>(first: R) -> ChoiceOf<(W, C1?, C2?, C3?, C4?, C5?, C6?, C7?, C8?)>](/documentation/regexbuilder/alternationbuilder/buildpartialblock(first:)-uy7q)

### Operators

- [func ... (Character, Character) -> CharacterClass](/documentation/regexbuilder/'...(_:_:)-16g2a)
- [func ... (UnicodeScalar, UnicodeScalar) -> CharacterClass](/documentation/regexbuilder/'...(_:_:)-629xh)

## Low-Level Atomic Operations

- [Synchronization](/documentation/synchronization)

### Atomic Values

- [Atomic](/documentation/synchronization/atomic)

#### Initializers

- [init(consuming Value)](/documentation/synchronization/atomic/init(_:))

#### Instance Methods

- [func add(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/add(_:ordering:)-1k1sq)
- [func add(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/add(_:ordering:)-34u14)
- [func add(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/add(_:ordering:)-39vk1)
- [func add(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/add(_:ordering:)-4dpjd)
- [func add(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/add(_:ordering:)-4ocr0)
- [func add(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/add(_:ordering:)-6rhji)
- [func add(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/add(_:ordering:)-7ws8q)
- [func add(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/add(_:ordering:)-8cc78)
- [func add(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/add(_:ordering:)-8xoe3)
- [func add(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/add(_:ordering:)-90njk)
- [func add(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/add(_:ordering:)-97ilu)
- [func add(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/add(_:ordering:)-vm4c)
- [func bitwiseAnd(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-1baj3)
- [func bitwiseAnd(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-1gzwl)
- [func bitwiseAnd(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-1yz1m)
- [func bitwiseAnd(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-3zt46)
- [func bitwiseAnd(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-4db7m)
- [func bitwiseAnd(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-56lhq)
- [func bitwiseAnd(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-5iaoz)
- [func bitwiseAnd(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-5m0jk)
- [func bitwiseAnd(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-5mhgj)
- [func bitwiseAnd(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-6mxdg)
- [func bitwiseAnd(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-8ilt7)
- [func bitwiseAnd(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/bitwiseand(_:ordering:)-l1a3)
- [func bitwiseOr(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-206dk)
- [func bitwiseOr(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-39r9q)
- [func bitwiseOr(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-4ozz5)
- [func bitwiseOr(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-4q8ef)
- [func bitwiseOr(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-4y864)
- [func bitwiseOr(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-5574x)
- [func bitwiseOr(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-6fz7a)
- [func bitwiseOr(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-6zz2p)
- [func bitwiseOr(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-72403)
- [func bitwiseOr(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-84e8q)
- [func bitwiseOr(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-9191v)
- [func bitwiseOr(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/bitwiseor(_:ordering:)-aa7f)
- [func bitwiseXor(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-271x9)
- [func bitwiseXor(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-2vrf)
- [func bitwiseXor(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-33l7y)
- [func bitwiseXor(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-4umey)
- [func bitwiseXor(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-5df6p)
- [func bitwiseXor(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-5vpxh)
- [func bitwiseXor(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-5zfc)
- [func bitwiseXor(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-8t1qf)
- [func bitwiseXor(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-9l5qb)
- [func bitwiseXor(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-9xi4f)
- [func bitwiseXor(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-m4nt)
- [func bitwiseXor(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/bitwisexor(_:ordering:)-sf4i)
- [func compareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:ordering:)-33pf3)
- [func compareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:ordering:)-6rsfl)
- [func compareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:ordering:)-8uimm)
- [func compareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:ordering:)-9bh60)
- [func compareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:ordering:)-s52j)
- [func compareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:successordering:failureordering:)-5obt4)
- [func compareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:successordering:failureordering:)-7msfy)
- [func compareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:successordering:failureordering:)-82j0l)
- [func compareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:successordering:failureordering:)-8d36a)
- [func compareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/compareexchange(expected:desired:successordering:failureordering:)-cve0)
- [func exchange(consuming Value, ordering: AtomicUpdateOrdering) -> Value](/documentation/synchronization/atomic/exchange(_:ordering:)-5n6sy)
- [func exchange(consuming Value, ordering: AtomicUpdateOrdering) -> Value](/documentation/synchronization/atomic/exchange(_:ordering:)-8ip0d)
- [func exchange(consuming Value, ordering: AtomicUpdateOrdering) -> Value](/documentation/synchronization/atomic/exchange(_:ordering:)-9kb4s)
- [func exchange(consuming Value, ordering: AtomicUpdateOrdering) -> Value](/documentation/synchronization/atomic/exchange(_:ordering:)-9y5j8)
- [func exchange(consuming Value, ordering: AtomicUpdateOrdering) -> Value](/documentation/synchronization/atomic/exchange(_:ordering:)-ycta)
- [func load(ordering: AtomicLoadOrdering) -> Value](/documentation/synchronization/atomic/load(ordering:)-2u27y)
- [func load(ordering: AtomicLoadOrdering) -> Value](/documentation/synchronization/atomic/load(ordering:)-2v8gp)
- [func load(ordering: AtomicLoadOrdering) -> Value](/documentation/synchronization/atomic/load(ordering:)-3u18o)
- [func load(ordering: AtomicLoadOrdering) -> Value](/documentation/synchronization/atomic/load(ordering:)-4mv5b)
- [func load(ordering: AtomicLoadOrdering) -> Value](/documentation/synchronization/atomic/load(ordering:)-8ufx2)
- [func logicalAnd(Bool, ordering: AtomicUpdateOrdering) -> (oldValue: Bool, newValue: Bool)](/documentation/synchronization/atomic/logicaland(_:ordering:))
- [func logicalOr(Bool, ordering: AtomicUpdateOrdering) -> (oldValue: Bool, newValue: Bool)](/documentation/synchronization/atomic/logicalor(_:ordering:))
- [func logicalXor(Bool, ordering: AtomicUpdateOrdering) -> (oldValue: Bool, newValue: Bool)](/documentation/synchronization/atomic/logicalxor(_:ordering:))
- [func max(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/max(_:ordering:)-1l8lv)
- [func max(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/max(_:ordering:)-32cin)
- [func max(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/max(_:ordering:)-4e4mn)
- [func max(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/max(_:ordering:)-4rq6h)
- [func max(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/max(_:ordering:)-5qqv7)
- [func max(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/max(_:ordering:)-681q1)
- [func max(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/max(_:ordering:)-7kusb)
- [func max(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/max(_:ordering:)-7qnkd)
- [func max(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/max(_:ordering:)-7z7ub)
- [func max(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/max(_:ordering:)-81jab)
- [func max(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/max(_:ordering:)-957na)
- [func max(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/max(_:ordering:)-xy7u)
- [func min(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/min(_:ordering:)-1uwzs)
- [func min(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/min(_:ordering:)-2l64c)
- [func min(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/min(_:ordering:)-39r27)
- [func min(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/min(_:ordering:)-3tiyt)
- [func min(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/min(_:ordering:)-3tk2x)
- [func min(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/min(_:ordering:)-4b62m)
- [func min(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/min(_:ordering:)-4wv9d)
- [func min(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/min(_:ordering:)-6bbf1)
- [func min(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/min(_:ordering:)-6ivky)
- [func min(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/min(_:ordering:)-73283)
- [func min(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/min(_:ordering:)-8k42m)
- [func min(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/min(_:ordering:)-yogw)
- [func store(consuming Value, ordering: AtomicStoreOrdering)](/documentation/synchronization/atomic/store(_:ordering:)-195np)
- [func store(consuming Value, ordering: AtomicStoreOrdering)](/documentation/synchronization/atomic/store(_:ordering:)-22zxw)
- [func store(consuming Value, ordering: AtomicStoreOrdering)](/documentation/synchronization/atomic/store(_:ordering:)-532ut)
- [func store(consuming Value, ordering: AtomicStoreOrdering)](/documentation/synchronization/atomic/store(_:ordering:)-5q2fi)
- [func store(consuming Value, ordering: AtomicStoreOrdering)](/documentation/synchronization/atomic/store(_:ordering:)-97ua7)
- [func subtract(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/subtract(_:ordering:)-1atf4)
- [func subtract(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/subtract(_:ordering:)-1iop7)
- [func subtract(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/subtract(_:ordering:)-2ddui)
- [func subtract(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/subtract(_:ordering:)-2ds2s)
- [func subtract(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/subtract(_:ordering:)-3c2nm)
- [func subtract(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/subtract(_:ordering:)-47p0x)
- [func subtract(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/subtract(_:ordering:)-5rq0s)
- [func subtract(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/subtract(_:ordering:)-65sge)
- [func subtract(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/subtract(_:ordering:)-6eidf)
- [func subtract(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/subtract(_:ordering:)-7ebxd)
- [func subtract(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/subtract(_:ordering:)-9w06o)
- [func subtract(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/subtract(_:ordering:)-pqxe)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:ordering:)-24bnb)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:ordering:)-728eh)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:ordering:)-72wpg)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:ordering:)-9w8ty)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, ordering: AtomicUpdateOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:ordering:)-9xqnl)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:successordering:failureordering:)-2ywaz)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:successordering:failureordering:)-3p8t6)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:successordering:failureordering:)-7vtyo)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:successordering:failureordering:)-9kx2t)
- [func weakCompareExchange(expected: consuming Value, desired: consuming Value, successOrdering: AtomicUpdateOrdering, failureOrdering: AtomicLoadOrdering) -> (exchanged: Bool, original: Value)](/documentation/synchronization/atomic/weakcompareexchange(expected:desired:successordering:failureordering:)-kfa8)
- [func wrappingAdd(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-1cynr)
- [func wrappingAdd(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-35sou)
- [func wrappingAdd(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-3ihte)
- [func wrappingAdd(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-3ltc9)
- [func wrappingAdd(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-4da1i)
- [func wrappingAdd(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-7flp6)
- [func wrappingAdd(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-8rrye)
- [func wrappingAdd(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-8wun9)
- [func wrappingAdd(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-9ce27)
- [func wrappingAdd(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-bmso)
- [func wrappingAdd(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-u8d5)
- [func wrappingAdd(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/wrappingadd(_:ordering:)-ussb)
- [func wrappingSubtract(Int16, ordering: AtomicUpdateOrdering) -> (oldValue: Int16, newValue: Int16)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-1bgvk)
- [func wrappingSubtract(Int64, ordering: AtomicUpdateOrdering) -> (oldValue: Int64, newValue: Int64)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-3795w)
- [func wrappingSubtract(UInt128, ordering: AtomicUpdateOrdering) -> (oldValue: UInt128, newValue: UInt128)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-43111)
- [func wrappingSubtract(Int, ordering: AtomicUpdateOrdering) -> (oldValue: Int, newValue: Int)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-6g9gv)
- [func wrappingSubtract(Int8, ordering: AtomicUpdateOrdering) -> (oldValue: Int8, newValue: Int8)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-6xyiw)
- [func wrappingSubtract(UInt32, ordering: AtomicUpdateOrdering) -> (oldValue: UInt32, newValue: UInt32)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-6y8r7)
- [func wrappingSubtract(UInt, ordering: AtomicUpdateOrdering) -> (oldValue: UInt, newValue: UInt)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-7136k)
- [func wrappingSubtract(UInt64, ordering: AtomicUpdateOrdering) -> (oldValue: UInt64, newValue: UInt64)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-7203n)
- [func wrappingSubtract(Int128, ordering: AtomicUpdateOrdering) -> (oldValue: Int128, newValue: Int128)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-7k1nk)
- [func wrappingSubtract(UInt8, ordering: AtomicUpdateOrdering) -> (oldValue: UInt8, newValue: UInt8)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-83zzr)
- [func wrappingSubtract(UInt16, ordering: AtomicUpdateOrdering) -> (oldValue: UInt16, newValue: UInt16)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-8o6j2)
- [func wrappingSubtract(Int32, ordering: AtomicUpdateOrdering) -> (oldValue: Int32, newValue: Int32)](/documentation/synchronization/atomic/wrappingsubtract(_:ordering:)-8xrpg)
- [AtomicLazyReference](/documentation/synchronization/atomiclazyreference)

#### Initializers

- [init()](/documentation/synchronization/atomiclazyreference/init())

#### Instance Methods

- [func load() -> Instance?](/documentation/synchronization/atomiclazyreference/load())
- [func storeIfNil(consuming Instance) -> Instance](/documentation/synchronization/atomiclazyreference/storeifnil(_:))
- [WordPair](/documentation/synchronization/wordpair)

#### Initializers

- [init(first: UInt, second: UInt)](/documentation/synchronization/wordpair/init(first:second:))

#### Instance Properties

- [var first: UInt](/documentation/synchronization/wordpair/first)
- [var second: UInt](/documentation/synchronization/wordpair/second)

#### Default Implementations

- [AtomicRepresentable Implementations](/documentation/synchronization/wordpair/atomicrepresentable-implementations)

##### Type Aliases

- [WordPair.AtomicRepresentation](/documentation/synchronization/wordpair/atomicrepresentation)

##### Type Methods

- [static func decodeAtomicRepresentation(consuming WordPair.AtomicRepresentation) -> WordPair](/documentation/synchronization/wordpair/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming WordPair) -> WordPair.AtomicRepresentation](/documentation/synchronization/wordpair/encodeatomicrepresentation(_:))
- [CustomDebugStringConvertible Implementations](/documentation/synchronization/wordpair/customdebugstringconvertible-implementations)

##### Instance Properties

- [var debugDescription: String](/documentation/synchronization/wordpair/debugdescription)
- [CustomStringConvertible Implementations](/documentation/synchronization/wordpair/customstringconvertible-implementations)

##### Instance Properties

- [var description: String](/documentation/synchronization/wordpair/description)
- [Equatable Implementations](/documentation/synchronization/wordpair/equatable-implementations)

##### Operators

- [static func == (WordPair, WordPair) -> Bool](/documentation/synchronization/wordpair/==(_:_:))
- [Hashable Implementations](/documentation/synchronization/wordpair/hashable-implementations)

##### Instance Methods

- [func hash(into: inout Hasher)](/documentation/synchronization/wordpair/hash(into:))
- [AtomicRepresentable](/documentation/synchronization/atomicrepresentable)

#### Associated Types

- [AtomicRepresentation](/documentation/synchronization/atomicrepresentable/atomicrepresentation)

#### Type Methods

- [static func decodeAtomicRepresentation(consuming Self.AtomicRepresentation) -> Self](/documentation/synchronization/atomicrepresentable/decodeatomicrepresentation(_:))
- [static func encodeAtomicRepresentation(consuming Self) -> Self.AtomicRepresentation](/documentation/synchronization/atomicrepresentable/encodeatomicrepresentation(_:))
- [AtomicOptionalRepresentable](/documentation/synchronization/atomicoptionalrepresentable)

#### Associated Types

- [AtomicOptionalRepresentation](/documentation/synchronization/atomicoptionalrepresentable/atomicoptionalrepresentation)

#### Type Methods

- [static func decodeAtomicOptionalRepresentation(consuming Self.AtomicOptionalRepresentation) -> Self?](/documentation/synchronization/atomicoptionalrepresentable/decodeatomicoptionalrepresentation(_:))
- [static func encodeAtomicOptionalRepresentation(consuming Self?) -> Self.AtomicOptionalRepresentation](/documentation/synchronization/atomicoptionalrepresentable/encodeatomicoptionalrepresentation(_:))

### Memory Ordering Semantics

- [AtomicLoadOrdering](/documentation/synchronization/atomicloadordering)

#### Type Properties

- [static var acquiring: AtomicLoadOrdering](/documentation/synchronization/atomicloadordering/acquiring)
- [static var relaxed: AtomicLoadOrdering](/documentation/synchronization/atomicloadordering/relaxed)
- [static var sequentiallyConsistent: AtomicLoadOrdering](/documentation/synchronization/atomicloadordering/sequentiallyconsistent)
- [AtomicStoreOrdering](/documentation/synchronization/atomicstoreordering)

#### Type Properties

- [static var relaxed: AtomicStoreOrdering](/documentation/synchronization/atomicstoreordering/relaxed)
- [static var releasing: AtomicStoreOrdering](/documentation/synchronization/atomicstoreordering/releasing)
- [static var sequentiallyConsistent: AtomicStoreOrdering](/documentation/synchronization/atomicstoreordering/sequentiallyconsistent)
- [AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering)

#### Type Properties

- [static var acquiring: AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering/acquiring)
- [static var acquiringAndReleasing: AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering/acquiringandreleasing)
- [static var relaxed: AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering/relaxed)
- [static var releasing: AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering/releasing)
- [static var sequentiallyConsistent: AtomicUpdateOrdering](/documentation/synchronization/atomicupdateordering/sequentiallyconsistent)
- [func atomicMemoryFence(ordering: AtomicUpdateOrdering)](/documentation/synchronization/atomicmemoryfence(ordering:))

### Structures

- [Mutex](/documentation/synchronization/mutex)

#### Initializers

- [init(consuming sending Value)](/documentation/synchronization/mutex/init(_:))

#### Instance Methods

- [func withLock<Result, E>((inout sending Value) throws(E) -> sending Result) throws(E) -> sending Result](/documentation/synchronization/mutex/withlock(_:))
- [func withLockIfAvailable<Result, E>((inout sending Value) throws(E) -> sending Result) throws(E) -> sending Result?](/documentation/synchronization/mutex/withlockifavailable(_:))

## Data Modeling

- [Choosing Between Structures and Classes](/documentation/swift/choosing-between-structures-and-classes)
- [Adopting Common Protocols](/documentation/swift/adopting-common-protocols)

## Data Flow and Control Flow

- [Maintaining State in Your Apps](/documentation/swift/maintaining-state-in-your-apps)
- [Preventing Timing Problems When Using Closures](/documentation/swift/preventing-timing-problems-when-using-closures)

## Language Interoperability with Objective-C and C

- [Objective-C and C Code Customization](/documentation/swift/objective-c-and-c-code-customization)

### Customizing Objective-C APIs

- [Designating Nullability in Objective-C APIs](/documentation/swift/designating-nullability-in-objective-c-apis)
- [Renaming Objective-C APIs for Swift](/documentation/swift/renaming-objective-c-apis-for-swift)
- [Improving Objective-C API Declarations for Swift](/documentation/swift/improving-objective-c-api-declarations-for-swift)
- [Grouping Related Objective-C Constants](/documentation/swift/grouping-related-objective-c-constants)
- [Marking API Availability in Objective-C](/documentation/swift/marking-api-availability-in-objective-c)
- [Making Objective-C APIs Unavailable in Swift](/documentation/swift/making-objective-c-apis-unavailable-in-swift)

### Customizing C APIs

- [Customizing Your C Code for Swift](/documentation/swift/customizing-your-c-code-for-swift)
- [Migrating Your Objective-C Code to Swift](/documentation/swift/migrating-your-objective-c-code-to-swift)
- [Cocoa Design Patterns](/documentation/swift/cocoa-design-patterns)

### Common Patterns

- [Using Key-Value Observing in Swift](/documentation/swift/using-key-value-observing-in-swift)
- [Using Delegates to Customize Object Behavior](/documentation/swift/using-delegates-to-customize-object-behavior)
- [Managing a Shared Resource Using a Singleton](/documentation/swift/managing-a-shared-resource-using-a-singleton)
- [About Imported Cocoa Error Parameters](/documentation/swift/about-imported-cocoa-error-parameters)
- [Handling Cocoa Errors in Swift](/documentation/swift/handling-cocoa-errors-in-swift)
- [Handling Dynamically Typed Methods and Objects in Swift](/documentation/swift/handling-dynamically-typed-methods-and-objects-in-swift)
- [Using Objective-C Runtime Features in Swift](/documentation/swift/using-objective-c-runtime-features-in-swift)
- [Imported C and Objective-C APIs](/documentation/swift/imported-c-and-objective-c-apis)

### Swift and Objective-C in the Same Project

- [Importing Objective-C into Swift](/documentation/swift/importing-objective-c-into-swift)
- [Importing Swift into Objective-C](/documentation/swift/importing-swift-into-objective-c)

### Cocoa Frameworks

- [Working with Foundation Types](/documentation/swift/working-with-foundation-types)
- [Working with Core Foundation Types](/documentation/swift/working-with-core-foundation-types)

### Objective-C APIs

- [Using Imported Lightweight Generics in Swift](/documentation/swift/using-imported-lightweight-generics-in-swift)
- [Using Imported Protocol-Qualified Classes in Swift](/documentation/swift/using-imported-protocol-qualified-classes-in-swift)

### C APIs

- [Using Imported C Structs and Unions in Swift](/documentation/swift/using-imported-c-structs-and-unions-in-swift)
- [Using Imported C Functions in Swift](/documentation/swift/using-imported-c-functions-in-swift)
- [Using Imported C Macros in Swift](/documentation/swift/using-imported-c-macros-in-swift)
- [Calling Objective-C APIs Asynchronously](/documentation/swift/calling-objective-c-apis-asynchronously)

## Language Interoperability with C++

- [Mixing Languages in an Xcode project](/documentation/swift/mixinglanguagesinanxcodeproject)
- [Calling APIs Across Language Boundaries](/documentation/swift/callingapisacrosslanguageboundaries)

---

*Extracted by [sosumi.ai](https://sosumi.ai) - Making Apple docs AI-readable.*
*This is unofficial content. All documentation belongs to Apple Inc.*
