struct
Dictionary
<
Key
,
Value
>
Inheritance |
Collection, CustomDebugStringConvertible, CustomReflectable, CustomStringConvertible, Decodable, Encodable, Equatable, ExpressibleByDictionaryLiteral, Hashable, Sequence
View Protocol Hierarchy →
|
---|---|
Associated Types |
The element type of a dictionary: a tuple containing an individual key-value pair. |
Nested Types | Dictionary.Index, Dictionary.Keys, Dictionary.Values |
Import |
|
Initializers
Creates an empty dictionary.
Declaration
init
()
Creates a new dictionary from the key-value pairs in the given sequence, using a combining closure to determine the value for any duplicate keys.
You use this initializer to create a dictionary when you have a sequence
of key-value tuples that might have duplicate keys. As the dictionary is
built, the initializer calls the combine
closure with the current and
new values for any duplicate keys. Pass a closure as combine
that
returns the value to use in the resulting dictionary: The closure can
choose between the two values, combine them to produce a new value, or
even throw an error.
The following example shows how to choose the first and last values for any duplicate keys:
let
pairsWithDuplicateKeys
= [(
"a"
,
1
), (
"b"
,
2
), (
"a"
,
3
), (
"b"
,
4
)]
let
firstValues
=
Dictionary
(
pairsWithDuplicateKeys
,
uniquingKeysWith
: { (
first
,
_
)
in
first
})
// ["b": 2, "a": 1]
let
lastValues
=
Dictionary
(
pairsWithDuplicateKeys
,
uniquingKeysWith
: { (,
last
)
in
last
})
// ["b": 4, "a": 3]
Parameters: keysAndValues: A sequence of key-value pairs to use for the new dictionary. combine: A closure that is called with the values for any duplicate keys that are encountered. The closure returns the desired value for the final dictionary.
Declaration
init
<
S
>
(
_
keysAndValues
:
S
,
uniquingKeysWith
combine
: ([
Key
:
Value
].
Value
, [
Key
:
Value
].
Value
)
throws
-
>
[
Key
:
Value
].
Value
)
Creates a dictionary initialized with a dictionary literal.
Do not call this initializer directly. It is called by the compiler to handle dictionary literals. To use a dictionary literal as the initial value of a dictionary, enclose a comma-separated list of key-value pairs in square brackets.
For example, the code sample below creates a dictionary with string keys and values.
let
countryCodes
= [
"BR"
:
"Brazil"
,
"GH"
:
"Ghana"
,
"JP"
:
"Japan"
]
(
countryCodes
)
// Prints "["BR": "Brazil", "JP": "Japan", "GH": "Ghana"]"
elements
: The key-value pairs that will make up the new
dictionary. Each key in elements
must be unique.
Declaration
init
(
dictionaryLiteral
elements
: (
Key
,
Value
)...)
Creates a new dictionary by decoding from the given decoder.
This initializer throws an error if reading from the decoder fails, or if the data read is corrupted or otherwise invalid.
decoder
: The decoder to read data from.
Declaration
init
(
from
decoder
:
Decoder
)
Creates a new dictionary whose keys are the groupings returned by the given closure and whose values are arrays of the elements that returned each key.
The arrays in the "values" position of the new dictionary each contain at least one element, with the elements in the same order as the source sequence.
The following example declares an array of names, and then creates a dictionary from that array by grouping the names by first letter:
let
students
= [
"Kofi"
,
"Abena"
,
"Efua"
,
"Kweku"
,
"Akosua"
]
let
studentsByLetter
=
Dictionary
(
grouping
:
students
,
by
: { $
0
.
first
! })
// ["E": ["Efua"], "K": ["Kofi", "Kweku"], "A": ["Abena", "Akosua"]]
The new studentsByLetter
dictionary has three entries, with students'
names grouped by the keys "E"
, "K"
, and "A"
.
Parameters:
values: A sequence of values to group into a dictionary.
keyForValue: A closure that returns a key for each element in
values
.
Declaration
init
<
S
>
(
grouping
values
:
S
,
by
keyForValue
: (
S
.
Element
)
throws
-
>
[
Key
:
Value
].
Key
)
Declaration
init
(
minimumCapacity
:
Int
)
Creates a new dictionary from the key-value pairs in the given sequence.
You use this initializer to create a dictionary when you have a sequence
of key-value tuples with unique keys. Passing a sequence with duplicate
keys to this initializer results in a runtime error. If your
sequence might have duplicate keys, use the
Dictionary(_:uniquingKeysWith:)
initializer instead.
The following example creates a new dictionary using an array of strings as the keys and the integers in a countable range as the values:
let
digitWords
= [
"one"
,
"two"
,
"three"
,
"four"
,
"five"
]
let
wordToValue
=
Dictionary
(
uniqueKeysWithValues
:
zip
(
digitWords
,
1
...
5
))
(
wordToValue
[
"three"
]!)
// Prints "3"
(
wordToValue
)
// Prints "["three": 3, "four": 4, "five": 5, "one": 1, "two": 2]"
keysAndValues
: A sequence of key-value pairs to use for
the new dictionary. Every key in keysAndValues
must be unique.
Returns: A new dictionary initialized with the elements of
keysAndValues
.
Precondition: The sequence must not have duplicate keys.
Declaration
init
<
S
>
(
uniqueKeysWithValues
keysAndValues
:
S
)
Instance Variables
The total number of key-value pairs that the dictionary can contain without allocating new storage.
Declaration
var
capacity
:
Int
{
get
}
The number of key-value pairs in the dictionary.
Complexity: O(1).
Declaration
var
count
:
Int
{
get
}
Declared In
Dictionary
, Collection
A string that represents the contents of the dictionary, suitable for debugging.
Declaration
var
debugDescription
:
String
{
get
}
A string that represents the contents of the dictionary.
Declaration
var
description
:
String
{
get
}
The dictionary's "past the end" position---that is, the position one greater than the last valid subscript argument.
If the collection is empty, endIndex
is equal to startIndex
.
Complexity: Amortized O(1) if the dictionary does not wrap a bridged
NSDictionary
; otherwise, the performance is unspecified.
Declaration
var
endIndex
:
Dictionary
<
Key
,
Value
>
.
Index
{
get
}
The first element of the collection.
If the collection is empty, the value of this property is nil
.
let
numbers
= [
10
,
20
,
30
,
40
,
50
]
if
let
firstNumber
=
numbers
.
first
{
(
firstNumber
)
}
// Prints "10"
Declaration
var
first
:
Dictionary
<
Key
,
Value
>
.
Element
? {
get
}
Declared In
Collection
Hashes the essential components of this value by feeding them into the given hasher.
hasher
: The hasher to use when combining the components
of this instance.
Declaration
var
hashValue
:
Int
{
get
}
A Boolean value that indicates whether the dictionary is empty.
Dictionaries are empty when created with an initializer or an empty dictionary literal.
Declaration
var
isEmpty
:
Bool
{
get
}
Declared In
Dictionary
, Collection
A collection containing just the keys of the dictionary.
When iterated over, keys appear in this collection in the same order as they occur in the dictionary's key-value pairs. Each key in the keys collection has a unique value.
let
countryCodes
= [
"BR"
:
"Brazil"
,
"GH"
:
"Ghana"
,
"JP"
:
"Japan"
]
(
countryCodes
)
// Prints "["BR": "Brazil", "JP": "Japan", "GH": "Ghana"]"
for
k
in
countryCodes
.
keys
{
(
k
)
}
// Prints "BR"
// Prints "JP"
// Prints "GH"
Declaration
var
keys
:
Dictionary
<
Key
,
Value
>
.
Keys
{
get
}
A view onto this collection that provides lazy implementations of
normally eager operations, such as map
and filter
.
Use the lazy
property when chaining operations to prevent
intermediate operations from allocating storage, or when you only
need a part of the final collection to avoid unnecessary computation.
Declaration
var
lazy
:
LazyCollection
<
Dictionary
<
Key
,
Value
>
>
{
get
}
Declared In
Collection
The position of the first element in a nonempty dictionary.
If the collection is empty, startIndex
is equal to endIndex
.
Complexity: Amortized O(1) if the dictionary does not wrap a bridged
NSDictionary
. If the dictionary wraps a bridged NSDictionary
, the
performance is unspecified.
Declaration
var
startIndex
:
Dictionary
<
Key
,
Value
>
.
Index
{
get
}
A value less than or equal to the number of elements in the collection.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the length
of the collection.
Declaration
var
underestimatedCount
:
Int
{
get
}
Declared In
Collection
, Sequence
A collection containing just the values of the dictionary.
When iterated over, values appear in this collection in the same order as they occur in the dictionary's key-value pairs.
let
countryCodes
= [
"BR"
:
"Brazil"
,
"GH"
:
"Ghana"
,
"JP"
:
"Japan"
]
(
countryCodes
)
// Prints "["BR": "Brazil", "JP": "Japan", "GH": "Ghana"]"
for
v
in
countryCodes
.
values
{
(
v
)
}
// Prints "Brazil"
// Prints "Japan"
// Prints "Ghana"
Declaration
var
values
:
Dictionary
<
Key
,
Value
>
.
Values
{
get
set
}
3 inherited items hidden. (Show all)
Subscripts
Declaration
subscript
(
x
: (
UnboundedRange_
) -
>
()) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
{
get
}
Declared In
Collection
Accesses the value associated with the given key for reading and writing.
This key-based subscript returns the value for the given key if the key
is found in the dictionary, or nil
if the key is not found.
The following example creates a new dictionary and prints the value of a
key found in the dictionary ("Coral"
) and a key not found in the
dictionary ("Cerise"
).
var
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
(
hues
[
"Coral"
])
// Prints "Optional(16)"
(
hues
[
"Cerise"
])
// Prints "nil"
When you assign a value for a key and that key already exists, the dictionary overwrites the existing value. If the dictionary doesn't contain the key, the key and value are added as a new key-value pair.
Here, the value for the key "Coral"
is updated from 16
to 18
and a
new key-value pair is added for the key "Cerise"
.
hues
[
"Coral"
] =
18
(
hues
[
"Coral"
])
// Prints "Optional(18)"
hues
[
"Cerise"
] =
330
(
hues
[
"Cerise"
])
// Prints "Optional(330)"
If you assign nil
as the value for the given key, the dictionary
removes that key and its associated value.
In the following example, the key-value pair for the key "Aquamarine"
is removed from the dictionary by assigning nil
to the key-based
subscript.
hues
[
"Aquamarine"
] =
nil
(
hues
)
// Prints "["Coral": 18, "Heliotrope": 296, "Cerise": 330]"
key
: The key to find in the dictionary.
Returns: The value associated with key
if key
is in the dictionary;
otherwise, nil
.
Declaration
subscript
(
key
: [
Key
:
Value
].
Key
) -
>
[
Key
:
Value
].
Value
?
Accesses the element with the given key, or the specified default value, if the dictionary doesn't contain the given key.
Declaration
subscript
(
key
: [
Key
:
Value
].
Key
,
default
defaultValue
: @
autoclosure
() -
>
[
Key
:
Value
].
Value
) -
>
[
Key
:
Value
].
Value
Accesses the key-value pair at the specified position.
This subscript takes an index into the dictionary, instead of a key, and returns the corresponding key-value pair as a tuple. When performing collection-based operations that return an index into a dictionary, use this subscript with the resulting value.
For example, to find the key for a particular value in a dictionary, use
the firstIndex(where:)
method.
let
countryCodes
= [
"BR"
:
"Brazil"
,
"GH"
:
"Ghana"
,
"JP"
:
"Japan"
]
if
let
index
=
countryCodes
.
firstIndex
(
where
: { $
0
.
value
==
"Japan"
}) {
(
countryCodes
[
index
])
(
"Japan's country code is '\(
countryCodes
[
index
].
key
)'."
)
}
else
{
(
"Didn't find 'Japan' as a value in the dictionary."
)
}
// Prints "("JP", "Japan")"
// Prints "Japan's country code is 'JP'."
position
: The position of the key-value pair to access.
position
must be a valid index of the dictionary and not equal to
endIndex
.
Returns: A two-element tuple with the key and value corresponding to
position
.
Declaration
subscript
(
position
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
[
Key
:
Value
].
Element
{
get
}
Accesses the contiguous subrange of the collection's elements specified by a range expression.
The range expression is converted to a concrete subrange relative to this
collection. For example, using a PartialRangeFrom
range expression
with an array accesses the subrange from the start of the range
expression until the end of the array.
let
streets
= [
"Adams"
,
"Bryant"
,
"Channing"
,
"Douglas"
,
"Evarts"
]
let
streetsSlice
=
streets
[
2
...]
(
streetsSlice
)
// ["Channing", "Douglas", "Evarts"]
The accessed slice uses the same indices for the same elements as the
original collection uses. This example searches streetsSlice
for one
of the strings in the slice, and then uses that index in the original
array.
let
index
=
streetsSlice
.
firstIndex
(
of
:
"Evarts"
)
// 4
(
streets
[
index
!])
// "Evarts"
Always use the slice's startIndex
property instead of assuming that its
indices start at a particular value. Attempting to access an element by
using an index outside the bounds of the slice's indices may result in a
runtime error, even if that index is valid for the original collection.
(
streetsSlice
.
startIndex
)
// 2
(
streetsSlice
[
2
])
// "Channing"
(
streetsSlice
[
0
])
// error: Index out of bounds
bounds
: A range of the collection's indices. The bounds of
the range must be valid indices of the collection.
Complexity: O(1)
Declaration
subscript
<
R
>
(
r
:
R
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
where
R
:
RangeExpression
,
Dictionary
<
Key
,
Value
>
.
Index
==
R
.
Bound
{
get
}
Declared In
Collection
2 inherited items hidden. (Show all)
Instance Methods
Returns a Boolean value indicating whether every element of a sequence satisfies a given predicate.
predicate
: A closure that takes an element of the sequence
as its argument and returns a Boolean value that indicates whether
the passed element satisfies a condition.
Returns: true
if the sequence contains only elements that satisfy
predicate
; otherwise, false
.
Declaration
func
allSatisfy
(
_
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Bool
Declared In
Collection
, Sequence
Returns an array containing the non-nil
results of calling the given
transformation with each element of this sequence.
Use this method to receive an array of nonoptional values when your transformation produces an optional value.
In this example, note the difference in the result of using map
and
compactMap
with a transformation that returns an optional Int
value.
transform
: A closure that accepts an element of this
sequence as its argument and returns an optional value.
Returns: An array of the non-nil
results of calling transform
with each element of the sequence.
Complexity: O(m + n), where m is the length of this sequence and n is the length of the result.
Declaration
func
compactMap
<
ElementOfResult
>
(
_
transform
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
ElementOfResult
?)
rethrows
-
>
[
ElementOfResult
]
Declared In
Collection
, Sequence
Returns a Boolean value indicating whether the sequence contains an element that satisfies the given predicate.
You can use the predicate to check for an element of a type that
doesn't conform to the Equatable
protocol, such as the
HTTPResponse
enumeration in this example.
enum
HTTPResponse
{
case
ok
case
error
(
Int
)
}
let
lastThreeResponses
: [
HTTPResponse
] = [.
ok
, .
ok
, .
error
(
404
)]
let
hadError
=
lastThreeResponses
.
contains
{
element
in
if
case
.
error
=
element
{
return
true
}
else
{
return
false
}
}
// 'hadError' == true
Alternatively, a predicate can be satisfied by a range of Equatable
elements or a general condition. This example shows how you can check an
array for an expense greater than $100.
let
expenses
= [
21.37
,
55.21
,
9.32
,
10.18
,
388.77
,
11.41
]
let
hasBigPurchase
=
expenses
.
contains
{ $
0
>
100
}
// 'hasBigPurchase' == true
predicate
: A closure that takes an element of the sequence
as its argument and returns a Boolean value that indicates whether
the passed element represents a match.
Returns: true
if the sequence contains an element that satisfies
predicate
; otherwise, false
.
Declaration
func
contains
(
where
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Bool
Declared In
Collection
, Sequence
Returns the distance between two indices.
Unless the collection conforms to the BidirectionalCollection
protocol,
start
must be less than or equal to end
.
Parameters:
start: A valid index of the collection.
end: Another valid index of the collection. If end
is equal to
start
, the result is zero.
Returns: The distance between start
and end
. The result can be
negative only if the collection conforms to the
BidirectionalCollection
protocol.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the
resulting distance.
Declaration
func
distance
(
from
start
:
Dictionary
<
Key
,
Value
>
.
Index
,
to
end
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Int
Declared In
Collection
Deprecated: all index distances are now of type Int.
Declaration
func
distance
<
T
>
(
from
start
:
Dictionary
<
Key
,
Value
>
.
Index
,
to
end
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
T
where
T
:
BinaryInteger
Declared In
Collection
Returns a subsequence by skipping elements while predicate
returns
true
and returning the remaining elements.
predicate
: A closure that takes an element of the
sequence as its argument and returns true
if the element should
be skipped or false
if it should be included. Once the predicate
returns false
it will not be called again.
Complexity: O(n), where n is the length of the collection.
Declaration
func
drop
(
while
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence containing all but the first element of the sequence.
The following example drops the first element from an array of integers.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropFirst
())
// Prints "[2, 3, 4, 5]"
If the sequence has no elements, the result is an empty subsequence.
let
empty
: [
Int
] = []
(
empty
.
dropFirst
())
// Prints "[]"
Returns: A subsequence starting after the first element of the sequence.
Complexity: O(1)
Declaration
func
dropFirst
() -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
, Sequence
Returns a subsequence containing all but the given number of initial elements.
If the number of elements to drop exceeds the number of elements in the collection, the result is an empty subsequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropFirst
(
2
))
// Prints "[3, 4, 5]"
(
numbers
.
dropFirst
(
10
))
// Prints "[]"
n
: The number of elements to drop from the beginning of
the collection. n
must be greater than or equal to zero.
Returns: A subsequence starting after the specified number of
elements.
Complexity: O(n), where n is the number of elements to drop from the beginning of the collection.
Declaration
func
dropFirst
(
_
n
:
Int
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence containing all but the last element of the sequence.
The sequence must be finite.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropLast
())
// Prints "[1, 2, 3, 4]"
If the sequence has no elements, the result is an empty subsequence.
let
empty
: [
Int
] = []
(
empty
.
dropLast
())
// Prints "[]"
Returns: A subsequence leaving off the last element of the sequence.
Complexity: O(n), where n is the length of the sequence.
Declaration
func
dropLast
() -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
, Sequence
Returns a subsequence containing all but the specified number of final elements.
If the number of elements to drop exceeds the number of elements in the collection, the result is an empty subsequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropLast
(
2
))
// Prints "[1, 2, 3]"
(
numbers
.
dropLast
(
10
))
// Prints "[]"
n
: The number of elements to drop off the end of the
collection. n
must be greater than or equal to zero.
Returns: A subsequence that leaves off the specified number of elements
at the end.
Complexity: O(n), where n is the length of the collection.
Declaration
func
dropLast
(
_
n
:
Int
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a Boolean value indicating whether this sequence and another sequence contain equivalent elements in the same order, using the given predicate as the equivalence test.
At least one of the sequences must be finite.
The predicate must be a equivalence relation over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areEquivalent(a, a)
is alwaystrue
. (Reflexivity)areEquivalent(a, b)
impliesareEquivalent(b, a)
. (Symmetry)- If
areEquivalent(a, b)
andareEquivalent(b, c)
are bothtrue
, thenareEquivalent(a, c)
is alsotrue
. (Transitivity)
Parameters:
other: A sequence to compare to this sequence.
areEquivalent: A predicate that returns true
if its two arguments
are equivalent; otherwise, false
.
Returns: true
if this sequence and other
contain equivalent items,
using areEquivalent
as the equivalence test; otherwise, false.
Declaration
func
elementsEqual
<
OtherSequence
>
(
_
other
:
OtherSequence
,
by
areEquivalent
: (
Dictionary
<
Key
,
Value
>
.
Element
,
OtherSequence
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Bool
where
OtherSequence
:
Sequence
Declared In
Collection
, Sequence
Encodes the contents of this dictionary into the given encoder.
If the dictionary uses String
or Int
keys, the contents are encoded
in a keyed container. Otherwise, the contents are encoded as alternating
key-value pairs in an unkeyed container.
This function throws an error if any values are invalid for the given encoder's format.
encoder
: The encoder to write data to.
Declaration
func
encode
(
to
encoder
:
Encoder
)
throws
Returns a sequence of pairs (n, x), where n represents a consecutive integer starting at zero and x represents an element of the sequence.
This example enumerates the characters of the string "Swift" and prints each character along with its place in the string.
for
(
n
,
c
)
in
"Swift"
.
enumerated
() {
(
"\(
n
): '\(
c
)'"
)
}
// Prints "0: 'S'"
// Prints "1: 'w'"
// Prints "2: 'i'"
// Prints "3: 'f'"
// Prints "4: 't'"
When you enumerate a collection, the integer part of each pair is a counter
for the enumeration, but is not necessarily the index of the paired value.
These counters can be used as indices only in instances of zero-based,
integer-indexed collections, such as Array
and ContiguousArray
. For
other collections the counters may be out of range or of the wrong type
to use as an index. To iterate over the elements of a collection with its
indices, use the zip(_:_:)
function.
This example iterates over the indices and elements of a set, building a list consisting of indices of names with five or fewer letters.
Now that the shorterIndices
array holds the indices of the shorter
names in the names
set, you can use those indices to access elements in
the set.
for
i
in
shorterIndices
{
(
names
[
i
])
}
// Prints "Sofia"
// Prints "Mateo"
Returns: A sequence of pairs enumerating the sequence.
Declaration
func
enumerated
() -
>
EnumeratedSequence
<
Dictionary
<
Key
,
Value
>
>
Declared In
Collection
, Sequence
Returns a new dictionary containing the key-value pairs of the dictionary that satisfy the given predicate.
isIncluded
: A closure that takes a key-value pair as its
argument and returns a Boolean value indicating whether the pair
should be included in the returned dictionary.
Returns: A dictionary of the key-value pairs that isIncluded
allows.
Declaration
func
filter
(
_
isIncluded
: ([
Key
:
Value
].
Element
)
throws
-
>
Bool
)
rethrows
-
>
[[
Key
:
Value
].
Key
: [
Key
:
Value
].
Value
]
Returns an array containing, in order, the elements of the sequence that satisfy the given predicate.
In this example, filter(_:)
is used to include only names shorter than
five characters.
let
cast
= [
"Vivien"
,
"Marlon"
,
"Kim"
,
"Karl"
]
let
shortNames
=
cast
.
filter
{ $
0
.
count
<
5
}
(
shortNames
)
// Prints "["Kim", "Karl"]"
isIncluded
: A closure that takes an element of the
sequence as its argument and returns a Boolean value indicating
whether the element should be included in the returned array.
Returns: An array of the elements that isIncluded
allowed.
Declaration
func
filter
(
_
isIncluded
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
Declared In
Collection
, Sequence
Returns the first element of the sequence that satisfies the given predicate.
The following example uses the first(where:)
method to find the first
negative number in an array of integers:
let
numbers
= [
3
,
7
,
4
, -
2
,
9
, -
6
,
10
,
1
]
if
let
firstNegative
=
numbers
.
first
(
where
: { $
0
<
0
}) {
(
"The first negative number is \(
firstNegative
)."
)
}
// Prints "The first negative number is -2."
predicate
: A closure that takes an element of the sequence as
its argument and returns a Boolean value indicating whether the
element is a match.
Returns: The first element of the sequence that satisfies predicate
,
or nil
if there is no element that satisfies predicate
.
Declaration
func
first
(
where
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
, Sequence
Returns the first index in which an element of the collection satisfies the given predicate.
You can use the predicate to find an element of a type that doesn't
conform to the Equatable
protocol or to find an element that matches
particular criteria. Here's an example that finds a student name that
begins with the letter "A":
let
students
= [
"Kofi"
,
"Abena"
,
"Peter"
,
"Kweku"
,
"Akosua"
]
if
let
i
=
students
.
firstIndex
(
where
: { $
0
.
hasPrefix
(
"A"
) }) {
(
"\(
students
[
i
]
) starts with 'A'!"
)
}
// Prints "Abena starts with 'A'!"
predicate
: A closure that takes an element as its argument
and returns a Boolean value that indicates whether the passed element
represents a match.
Returns: The index of the first element for which predicate
returns
true
. If no elements in the collection satisfy the given predicate,
returns nil
.
Declaration
func
firstIndex
(
where
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
Index
?
Declared In
Collection
Declaration
func
flatMap
(
_
transform
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
String
?)
rethrows
-
>
[
String
]
Declared In
Collection
Returns an array containing the non-nil
results of calling the given
transformation with each element of this sequence.
Use this method to receive an array of nonoptional values when your transformation produces an optional value.
In this example, note the difference in the result of using map
and
flatMap
with a transformation that returns an optional Int
value.
transform
: A closure that accepts an element of this
sequence as its argument and returns an optional value.
Returns: An array of the non-nil
results of calling transform
with each element of the sequence.
Complexity: O(m + n), where m is the length of this sequence and n is the length of the result.
Declaration
func
flatMap
<
ElementOfResult
>
(
_
transform
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
ElementOfResult
?)
rethrows
-
>
[
ElementOfResult
]
Declared In
Collection
, Sequence
Returns an array containing the concatenated results of calling the given transformation with each element of this sequence.
Use this method to receive a single-level collection when your transformation produces a sequence or collection for each element.
In this example, note the difference in the result of using map
and
flatMap
with a transformation that returns an array.
In fact, s.flatMap(transform)
is equivalent to
Array(s.map(transform).joined())
.
transform
: A closure that accepts an element of this
sequence as its argument and returns a sequence or collection.
Returns: The resulting flattened array.
Complexity: O(m + n), where m is the length of this sequence and n is the length of the result.
Declaration
func
flatMap
<
SegmentOfResult
>
(
_
transform
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
SegmentOfResult
)
rethrows
-
>
[
SegmentOfResult
.
Element
]
where
SegmentOfResult
:
Sequence
Declared In
Collection
, Sequence
Calls the given closure on each element in the sequence in the same order
as a for
-in
loop.
The two loops in the following example produce the same output:
let
numberWords
= [
"one"
,
"two"
,
"three"
]
for
word
in
numberWords
{
(
word
)
}
// Prints "one"
// Prints "two"
// Prints "three"
numberWords
.
forEach
{
word
in
(
word
)
}
// Same as above
Using the forEach
method is distinct from a for
-in
loop in two
important ways:
- You cannot use a
break
orcontinue
statement to exit the current call of thebody
closure or skip subsequent calls. - Using the
return
statement in thebody
closure will exit only from the current call tobody
, not from any outer scope, and won't skip subsequent calls.
body
: A closure that takes an element of the sequence as a
parameter.
Declaration
func
forEach
(
_
body
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Void
)
rethrows
Declared In
Collection
, Sequence
Offsets the given index by the specified distance.
The value passed as n
must not offset i
beyond the bounds of the
collection.
Parameters:
i: A valid index of the collection.
n: The distance to offset i
. n
must not be negative unless the
collection conforms to the BidirectionalCollection
protocol.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the absolute
value of n
.
Declaration
func
formIndex
(
_
i
:
inout
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
Int
)
Declared In
Collection
Deprecated: all index distances are now of type Int.
Declaration
func
formIndex
<
T
>
(
_
i
:
inout
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
T
)
Declared In
Collection
Offsets the given index by the specified distance, or so that it equals the given limiting index.
The value passed as n
must not offset i
beyond the bounds of the
collection, unless the index passed as limit
prevents offsetting
beyond those bounds.
Parameters:
i: A valid index of the collection.
n: The distance to offset i
. n
must not be negative unless the
collection conforms to the BidirectionalCollection
protocol.
limit: A valid index of the collection to use as a limit. If n > 0
,
a limit that is less than i
has no effect. Likewise, if n < 0
, a
limit that is greater than i
has no effect.
Returns: true
if i
has been offset by exactly n
steps without
going beyond limit
; otherwise, false
. When the return value is
false
, the value of i
is equal to limit
.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the absolute
value of n
.
Declaration
func
formIndex
(
_
i
:
inout
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
Int
,
limitedBy
limit
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Bool
Declared In
Collection
Deprecated: all index distances are now of type Int.
Declaration
func
formIndex
<
T
>
(
_
i
:
inout
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
T
,
limitedBy
limit
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Bool
where
T
:
BinaryInteger
Declared In
Collection
Replaces the given index with its successor.
i
: A valid index of the collection. i
must be less than
endIndex
.
Declaration
func
formIndex
(
after
i
:
inout
Dictionary
<
Key
,
Value
>
.
Index
)
Declared In
Collection
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the Hashable
protocol. The
components used for hashing must be the same as the components compared
in your type's ==
operator implementation. Call hasher.combine(_:)
with each of these components.
Important: Never call finalize()
on hasher
. Doing so may become a
compile-time error in the future.
hasher
: The hasher to use when combining the components
of this instance.
Declaration
func
hash
(
into
hasher
:
inout
Hasher
)
Returns an index that is the specified distance from the given index.
The following example obtains an index advanced four positions from a string's starting index and then prints the character at that position.
let
s
=
"Swift"
let
i
=
s
.
index
(
s
.
startIndex
,
offsetBy
:
4
)
(
s
[
i
])
// Prints "t"
The value passed as n
must not offset i
beyond the bounds of the
collection.
Parameters:
i: A valid index of the collection.
n: The distance to offset i
. n
must not be negative unless the
collection conforms to the BidirectionalCollection
protocol.
Returns: An index offset by n
from the index i
. If n
is positive,
this is the same value as the result of n
calls to index(after:)
.
If n
is negative, this is the same value as the result of -n
calls
to index(before:)
.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the absolute
value of n
.
Declaration
func
index
(
_
i
:
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
Int
) -
>
Dictionary
<
Key
,
Value
>
.
Index
Declared In
Collection
Deprecated: all index distances are now of type Int.
Declaration
func
index
<
T
>
(
_
i
:
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
T
) -
>
Dictionary
<
Key
,
Value
>
.
Index
where
T
:
BinaryInteger
Declared In
Collection
Returns an index that is the specified distance from the given index, unless that distance is beyond a given limiting index.
The following example obtains an index advanced four positions from a
string's starting index and then prints the character at that position.
The operation doesn't require going beyond the limiting s.endIndex
value, so it succeeds.
let
s
=
"Swift"
if
let
i
=
s
.
index
(
s
.
startIndex
,
offsetBy
:
4
,
limitedBy
:
s
.
endIndex
) {
(
s
[
i
])
}
// Prints "t"
The next example attempts to retrieve an index six positions from
s.startIndex
but fails, because that distance is beyond the index
passed as limit
.
let
j
=
s
.
index
(
s
.
startIndex
,
offsetBy
:
6
,
limitedBy
:
s
.
endIndex
)
(
j
)
// Prints "nil"
The value passed as n
must not offset i
beyond the bounds of the
collection, unless the index passed as limit
prevents offsetting
beyond those bounds.
Parameters:
i: A valid index of the collection.
n: The distance to offset i
. n
must not be negative unless the
collection conforms to the BidirectionalCollection
protocol.
limit: A valid index of the collection to use as a limit. If n > 0
,
a limit that is less than i
has no effect. Likewise, if n < 0
, a
limit that is greater than i
has no effect.
Returns: An index offset by n
from the index i
, unless that index
would be beyond limit
in the direction of movement. In that case,
the method returns nil
.
Complexity: O(1) if the collection conforms to
RandomAccessCollection
; otherwise, O(n), where n is the absolute
value of n
.
Declaration
func
index
(
_
i
:
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
Int
,
limitedBy
limit
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
Index
?
Declared In
Collection
Deprecated: all index distances are now of type Int.
Declaration
func
index
<
T
>
(
_
i
:
Dictionary
<
Key
,
Value
>
.
Index
,
offsetBy
n
:
T
,
limitedBy
limit
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
Index
?
where
T
:
BinaryInteger
Declared In
Collection
Returns the position immediately after the given index.
The successor of an index must be well defined. For an index i
into a
collection c
, calling c.index(after: i)
returns the same index every
time.
i
: A valid index of the collection. i
must be less than
endIndex
.
Returns: The index value immediately after i
.
Declaration
func
index
(
after
i
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
Index
Returns the index for the given key.
If the given key is found in the dictionary, this method returns an index into the dictionary that corresponds with the key-value pair.
let
countryCodes
= [
"BR"
:
"Brazil"
,
"GH"
:
"Ghana"
,
"JP"
:
"Japan"
]
let
index
=
countryCodes
.
index
(
forKey
:
"JP"
)
(
"Country code for \(
countryCodes
[
index
!].
value
): '\(
countryCodes
[
index
!].
key
)'."
)
// Prints "Country code for Japan: 'JP'."
key
: The key to find in the dictionary.
Returns: The index for key
and its associated value if key
is in
the dictionary; otherwise, nil
.
Declaration
func
index
(
forKey
key
: [
Key
:
Value
].
Key
) -
>
Dictionary
<
Key
,
Value
>
.
Index
?
Returns a Boolean value indicating whether the sequence precedes another sequence in a lexicographical (dictionary) ordering, using the given predicate to compare elements.
The predicate must be a strict weak ordering over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areInIncreasingOrder(a, a)
is alwaysfalse
. (Irreflexivity)- If
areInIncreasingOrder(a, b)
andareInIncreasingOrder(b, c)
are bothtrue
, thenareInIncreasingOrder(a, c)
is alsotrue
. (Transitive comparability) - Two elements are incomparable if neither is ordered before the other
according to the predicate. If
a
andb
are incomparable, andb
andc
are incomparable, thena
andc
are also incomparable. (Transitive incomparability)
Parameters:
other: A sequence to compare to this sequence.
areInIncreasingOrder: A predicate that returns true
if its first
argument should be ordered before its second argument; otherwise,
false
.
Returns: true
if this sequence precedes other
in a dictionary
ordering as ordered by areInIncreasingOrder
; otherwise, false
.
Note: This method implements the mathematical notion of lexicographical
ordering, which has no connection to Unicode. If you are sorting
strings to present to the end user, use String
APIs that perform
localized comparison instead.
Declaration
func
lexicographicallyPrecedes
<
OtherSequence
>
(
_
other
:
OtherSequence
,
by
areInIncreasingOrder
: (
Dictionary
<
Key
,
Value
>
.
Element
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Bool
where
OtherSequence
:
Sequence
,
Dictionary
<
Key
,
Value
>
.
Element
==
OtherSequence
.
Element
Declared In
Collection
, Sequence
Returns an iterator over the dictionary's key-value pairs.
Iterating over a dictionary yields the key-value pairs as two-element
tuples. You can decompose the tuple in a for
-in
loop, which calls
makeIterator()
behind the scenes, or when calling the iterator's
next()
method directly.
let
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
for
(
name
,
hueValue
)
in
hues
{
(
"The hue of \(
name
) is \(
hueValue
)."
)
}
// Prints "The hue of Heliotrope is 296."
// Prints "The hue of Coral is 16."
// Prints "The hue of Aquamarine is 156."
Returns: An iterator over the dictionary with elements of type
(key: Key, value: Value)
.
Declaration
func
makeIterator
() -
>
DictionaryIterator
<
[
Key
:
Value
].
Key
, [
Key
:
Value
].
Value
>
Returns an array containing the results of mapping the given closure over the sequence's elements.
In this example, map
is used first to convert the names in the array
to lowercase strings and then to count their characters.
let
cast
= [
"Vivien"
,
"Marlon"
,
"Kim"
,
"Karl"
]
let
lowercaseNames
=
cast
.
map
{ $
0
.
lowercased
() }
// 'lowercaseNames' == ["vivien", "marlon", "kim", "karl"]
let
letterCounts
=
cast
.
map
{ $
0
.
count
}
// 'letterCounts' == [6, 6, 3, 4]
transform
: A mapping closure. transform
accepts an
element of this sequence as its parameter and returns a transformed
value of the same or of a different type.
Returns: An array containing the transformed elements of this
sequence.
Declaration
func
map
<
T
>
(
_
transform
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
T
)
rethrows
-
>
[
T
]
Declared In
Collection
, Sequence
Returns a new dictionary containing the keys of this dictionary with the values transformed by the given closure.
transform
: A closure that transforms a value. transform
accepts each value of the dictionary as its parameter and returns a
transformed value of the same or of a different type.
Returns: A dictionary containing the keys and transformed values of
this dictionary.
Declaration
func
mapValues
<
T
>
(
_
transform
: ([
Key
:
Value
].
Value
)
throws
-
>
T
)
rethrows
-
>
[[
Key
:
Value
].
Key
:
T
]
Returns the maximum element in the sequence, using the given predicate as the comparison between elements.
The predicate must be a strict weak ordering over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areInIncreasingOrder(a, a)
is alwaysfalse
. (Irreflexivity)- If
areInIncreasingOrder(a, b)
andareInIncreasingOrder(b, c)
are bothtrue
, thenareInIncreasingOrder(a, c)
is alsotrue
. (Transitive comparability) - Two elements are incomparable if neither is ordered before the other
according to the predicate. If
a
andb
are incomparable, andb
andc
are incomparable, thena
andc
are also incomparable. (Transitive incomparability)
This example shows how to use the max(by:)
method on a
dictionary to find the key-value pair with the highest value.
let
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
let
greatestHue
=
hues
.
max
{
a
,
b
in
a
.
value
<
b
.
value
}
(
greatestHue
)
// Prints "Optional(("Heliotrope", 296))"
areInIncreasingOrder
: A predicate that returns true
if its
first argument should be ordered before its second argument;
otherwise, false
.
Returns: The sequence's maximum element if the sequence is not empty;
otherwise, nil
.
Declaration
@
warn_unqualified_access
func
max
(
by
areInIncreasingOrder
: (
Dictionary
<
Key
,
Value
>
.
Element
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
, Sequence
Merges the given dictionary into this dictionary, using a combining closure to determine the value for any duplicate keys.
Use the combine
closure to select a value to use in the updated
dictionary, or to combine existing and new values. As the key-values
pairs in other
are merged with this dictionary, the combine
closure
is called with the current and new values for any duplicate keys that
are encountered.
This example shows how to choose the current or new values for any duplicate keys:
var
dictionary
= [
"a"
:
1
,
"b"
:
2
]
// Keeping existing value for key "a":
dictionary
.
merge
([
"a"
:
3
,
"c"
:
4
]) { (
current
,
_
)
in
current
}
// ["b": 2, "a": 1, "c": 4]
// Taking the new value for key "a":
dictionary
.
merge
([
"a"
:
5
,
"d"
:
6
]) { (,
new
)
in
new
}
// ["b": 2, "a": 5, "c": 4, "d": 6]
Parameters: other: A dictionary to merge. combine: A closure that takes the current and new values for any duplicate keys. The closure returns the desired value for the final dictionary.
Declaration
mutating
func
merge
(
_
other
: [[
Key
:
Value
].
Key
: [
Key
:
Value
].
Value
],
uniquingKeysWith
combine
: ([
Key
:
Value
].
Value
, [
Key
:
Value
].
Value
)
throws
-
>
[
Key
:
Value
].
Value
)
rethrows
Merges the key-value pairs in the given sequence into the dictionary, using a combining closure to determine the value for any duplicate keys.
Use the combine
closure to select a value to use in the updated
dictionary, or to combine existing and new values. As the key-value
pairs are merged with the dictionary, the combine
closure is called
with the current and new values for any duplicate keys that are
encountered.
This example shows how to choose the current or new values for any duplicate keys:
var
dictionary
= [
"a"
:
1
,
"b"
:
2
]
// Keeping existing value for key "a":
dictionary
.
merge
(
zip
([
"a"
,
"c"
], [
3
,
4
])) { (
current
,
_
)
in
current
}
// ["b": 2, "a": 1, "c": 4]
// Taking the new value for key "a":
dictionary
.
merge
(
zip
([
"a"
,
"d"
], [
5
,
6
])) { (,
new
)
in
new
}
// ["b": 2, "a": 5, "c": 4, "d": 6]
Parameters: other: A sequence of key-value pairs. combine: A closure that takes the current and new values for any duplicate keys. The closure returns the desired value for the final dictionary.
Declaration
mutating
func
merge
<
S
>
(
_
other
:
S
,
uniquingKeysWith
combine
: ([
Key
:
Value
].
Value
, [
Key
:
Value
].
Value
)
throws
-
>
[
Key
:
Value
].
Value
)
rethrows
Creates a dictionary by merging the given dictionary into this dictionary, using a combining closure to determine the value for duplicate keys.
Use the combine
closure to select a value to use in the returned
dictionary, or to combine existing and new values. As the key-value
pairs in other
are merged with this dictionary, the combine
closure
is called with the current and new values for any duplicate keys that
are encountered.
This example shows how to choose the current or new values for any duplicate keys:
let
dictionary
= [
"a"
:
1
,
"b"
:
2
]
let
otherDictionary
= [
"a"
:
3
,
"b"
:
4
]
let
keepingCurrent
=
dictionary
.
merging
(
otherDictionary
)
{ (
current
,
_
)
in
current
}
// ["b": 2, "a": 1]
let
replacingCurrent
=
dictionary
.
merging
(
otherDictionary
)
{ (,
new
)
in
new
}
// ["b": 4, "a": 3]
Parameters:
other: A dictionary to merge.
combine: A closure that takes the current and new values for any
duplicate keys. The closure returns the desired value for the final
dictionary.
Returns: A new dictionary with the combined keys and values of this
dictionary and other
.
Declaration
func
merging
(
_
other
: [[
Key
:
Value
].
Key
: [
Key
:
Value
].
Value
],
uniquingKeysWith
combine
: ([
Key
:
Value
].
Value
, [
Key
:
Value
].
Value
)
throws
-
>
[
Key
:
Value
].
Value
)
rethrows
-
>
[[
Key
:
Value
].
Key
: [
Key
:
Value
].
Value
]
Creates a dictionary by merging key-value pairs in a sequence into the dictionary, using a combining closure to determine the value for duplicate keys.
Use the combine
closure to select a value to use in the returned
dictionary, or to combine existing and new values. As the key-value
pairs are merged with the dictionary, the combine
closure is called
with the current and new values for any duplicate keys that are
encountered.
This example shows how to choose the current or new values for any duplicate keys:
let
dictionary
= [
"a"
:
1
,
"b"
:
2
]
let
newKeyValues
=
zip
([
"a"
,
"b"
], [
3
,
4
])
let
keepingCurrent
=
dictionary
.
merging
(
newKeyValues
) { (
current
,
_
)
in
current
}
// ["b": 2, "a": 1]
let
replacingCurrent
=
dictionary
.
merging
(
newKeyValues
) { (,
new
)
in
new
}
// ["b": 4, "a": 3]
Parameters:
other: A sequence of key-value pairs.
combine: A closure that takes the current and new values for any
duplicate keys. The closure returns the desired value for the final
dictionary.
Returns: A new dictionary with the combined keys and values of this
dictionary and other
.
Declaration
func
merging
<
S
>
(
_
other
:
S
,
uniquingKeysWith
combine
: ([
Key
:
Value
].
Value
, [
Key
:
Value
].
Value
)
throws
-
>
[
Key
:
Value
].
Value
)
rethrows
-
>
[[
Key
:
Value
].
Key
: [
Key
:
Value
].
Value
]
where
S
:
Sequence
,
S
.
Element
== (
Key
,
Value
)
Returns the minimum element in the sequence, using the given predicate as the comparison between elements.
The predicate must be a strict weak ordering over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areInIncreasingOrder(a, a)
is alwaysfalse
. (Irreflexivity)- If
areInIncreasingOrder(a, b)
andareInIncreasingOrder(b, c)
are bothtrue
, thenareInIncreasingOrder(a, c)
is alsotrue
. (Transitive comparability) - Two elements are incomparable if neither is ordered before the other
according to the predicate. If
a
andb
are incomparable, andb
andc
are incomparable, thena
andc
are also incomparable. (Transitive incomparability)
This example shows how to use the min(by:)
method on a
dictionary to find the key-value pair with the lowest value.
let
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
let
leastHue
=
hues
.
min
{
a
,
b
in
a
.
value
<
b
.
value
}
(
leastHue
)
// Prints "Optional(("Coral", 16))"
areInIncreasingOrder
: A predicate that returns true
if its first argument should be ordered before its second
argument; otherwise, false
.
Returns: The sequence's minimum element, according to
areInIncreasingOrder
. If the sequence has no elements, returns
nil
.
Declaration
func
min
(
by
areInIncreasingOrder
: (
Dictionary
<
Key
,
Value
>
.
Element
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
, Sequence
Removes and returns the first key-value pair of the dictionary if the dictionary isn't empty.
The first element of the dictionary is not necessarily the first element added. Don't expect any particular ordering of key-value pairs.
Returns: The first key-value pair of the dictionary if the dictionary
is not empty; otherwise, nil
.
Complexity: Averages to O(1) over many calls to popFirst()
.
Declaration
mutating
func
popFirst
() -
>
[
Key
:
Value
].
Element
?
Returns a subsequence, up to the specified maximum length, containing the initial elements of the collection.
If the maximum length exceeds the number of elements in the collection, the result contains all the elements in the collection.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
prefix
(
2
))
// Prints "[1, 2]"
(
numbers
.
prefix
(
10
))
// Prints "[1, 2, 3, 4, 5]"
maxLength
: The maximum number of elements to return.
maxLength
must be greater than or equal to zero.
Returns: A subsequence starting at the beginning of this collection
with at most maxLength
elements.
Declaration
func
prefix
(
_
maxLength
:
Int
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence from the start of the collection through the specified position.
The resulting subsequence includes the element at the position end
.
The following example searches for the index of the number 40
in an
array of integers, and then prints the prefix of the array up to, and
including, that index:
let
numbers
= [
10
,
20
,
30
,
40
,
50
,
60
]
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
.
prefix
(
through
:
i
))
}
// Prints "[10, 20, 30, 40]"
Using the prefix(through:)
method is equivalent to using a partial
closed range as the collection's subscript. The subscript notation is
preferred over prefix(through:)
.
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
[...
i
])
}
// Prints "[10, 20, 30, 40]"
end
: The index of the last element to include in the
resulting subsequence. end
must be a valid index of the collection
that is not equal to the endIndex
property.
Returns: A subsequence up to, and including, the end
position.
Complexity: O(1)
Declaration
func
prefix
(
through
position
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence from the start of the collection up to, but not including, the specified position.
The resulting subsequence does not include the element at the position
end
. The following example searches for the index of the number 40
in an array of integers, and then prints the prefix of the array up to,
but not including, that index:
let
numbers
= [
10
,
20
,
30
,
40
,
50
,
60
]
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
.
prefix
(
upTo
:
i
))
}
// Prints "[10, 20, 30]"
Passing the collection's starting index as the end
parameter results in
an empty subsequence.
(
numbers
.
prefix
(
upTo
:
numbers
.
startIndex
))
// Prints "[]"
Using the prefix(upTo:)
method is equivalent to using a partial
half-open range as the collection's subscript. The subscript notation is
preferred over prefix(upTo:)
.
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
[..
<
i
])
}
// Prints "[10, 20, 30]"
end
: The "past the end" index of the resulting subsequence.
end
must be a valid index of the collection.
Returns: A subsequence up to, but not including, the end
position.
Complexity: O(1)
Declaration
func
prefix
(
upTo
end
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence containing the initial elements until predicate
returns false
and skipping the remaining elements.
predicate
: A closure that takes an element of the
sequence as its argument and returns true
if the element should
be included or false
if it should be excluded. Once the predicate
returns false
it will not be called again.
Complexity: O(n), where n is the length of the collection.
Declaration
func
prefix
(
while
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a random element of the collection.
Call randomElement()
to select a random element from an array or
another collection. This example picks a name at random from an array:
let
names
= [
"Zoey"
,
"Chloe"
,
"Amani"
,
"Amaia"
]
let
randomName
=
names
.
randomElement
()!
// randomName == "Amani"
This method uses the default random generator, Random.default
. The call
to names.randomElement()
above is equivalent to calling
names.randomElement(using: &Random.default)
.
Returns: A random element from the collection. If the collection is
empty, the method returns nil
.
Declaration
func
randomElement
() -
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
Returns a random element of the collection, using the given generator as a source for randomness.
Call randomElement(using:)
to select a random element from an array or
another collection when you are using a custom random number generator.
This example picks a name at random from an array:
let
names
= [
"Zoey"
,
"Chloe"
,
"Amani"
,
"Amaia"
]
let
randomName
=
names
.
randomElement
(
using
:
&
myGenerator
)!
// randomName == "Amani"
generator
: The random number generator to use when choosing
a random element.
Returns: A random element from the collection. If the collection is
empty, the method returns nil
.
Declaration
func
randomElement
<
T
>
(
using
generator
:
inout
T
) -
>
Dictionary
<
Key
,
Value
>
.
Element
?
where
T
:
RandomNumberGenerator
Declared In
Collection
Returns the result of combining the elements of the sequence using the given closure.
Use the reduce(_:_:)
method to produce a single value from the elements
of an entire sequence. For example, you can use this method on an array
of numbers to find their sum or product.
The nextPartialResult
closure is called sequentially with an
accumulating value initialized to initialResult
and each element of
the sequence. This example shows how to find the sum of an array of
numbers.
let
numbers
= [
1
,
2
,
3
,
4
]
let
numberSum
=
numbers
.
reduce
(
0
, {
x
,
y
in
x
+
y
})
// numberSum == 10
When numbers.reduce(_:_:)
is called, the following steps occur:
- The
nextPartialResult
closure is called withinitialResult
---0
in this case---and the first element ofnumbers
, returning the sum:1
. - The closure is called again repeatedly with the previous call's return value and each element of the sequence.
- When the sequence is exhausted, the last value returned from the closure is returned to the caller.
If the sequence has no elements, nextPartialResult
is never executed
and initialResult
is the result of the call to reduce(_:_:)
.
Parameters:
initialResult: The value to use as the initial accumulating value.
initialResult
is passed to nextPartialResult
the first time the
closure is executed.
nextPartialResult: A closure that combines an accumulating value and
an element of the sequence into a new accumulating value, to be used
in the next call of the nextPartialResult
closure or returned to
the caller.
Returns: The final accumulated value. If the sequence has no elements,
the result is initialResult
.
Declaration
func
reduce
<
Result
>
(
_
initialResult
:
Result
,
_
nextPartialResult
: (
Result
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Result
)
rethrows
-
>
Result
Declared In
Collection
, Sequence
Returns the result of combining the elements of the sequence using the given closure.
Use the reduce(into:_:)
method to produce a single value from the
elements of an entire sequence. For example, you can use this method on an
array of integers to filter adjacent equal entries or count frequencies.
This method is preferred over reduce(_:_:)
for efficiency when the
result is a copy-on-write type, for example an Array or a Dictionary.
The updateAccumulatingResult
closure is called sequentially with a
mutable accumulating value initialized to initialResult
and each element
of the sequence. This example shows how to build a dictionary of letter
frequencies of a string.
let
letters
=
"abracadabra"
let
letterCount
=
letters
.
reduce
(
into
: [:]) {
counts
,
letter
in
counts
[
letter
,
default
:
0
] +=
1
}
// letterCount == ["a": 5, "b": 2, "r": 2, "c": 1, "d": 1]
When letters.reduce(into:_:)
is called, the following steps occur:
- The
updateAccumulatingResult
closure is called with the initial accumulating value---[:]
in this case---and the first character ofletters
, modifying the accumulating value by setting1
for the key"a"
. - The closure is called again repeatedly with the updated accumulating value and each element of the sequence.
- When the sequence is exhausted, the accumulating value is returned to the caller.
If the sequence has no elements, updateAccumulatingResult
is never
executed and initialResult
is the result of the call to
reduce(into:_:)
.
Parameters:
initialResult: The value to use as the initial accumulating value.
updateAccumulatingResult: A closure that updates the accumulating
value with an element of the sequence.
Returns: The final accumulated value. If the sequence has no elements,
the result is initialResult
.
Declaration
func
reduce
<
Result
>
(
into
initialResult
:
Result
,
_
updateAccumulatingResult
: (
inout
Result
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
())
rethrows
-
>
Result
Declared In
Collection
, Sequence
Removes and returns the key-value pair at the specified index.
Calling this method invalidates any existing indices for use with this dictionary.
index
: The position of the key-value pair to remove. index
must be a valid index of the dictionary, and must not equal the
dictionary's end index.
Returns: The key-value pair that correspond to index
.
Complexity: O(n), where n is the number of key-value pairs in the dictionary.
Declaration
mutating
func
remove
(
at
index
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
[
Key
:
Value
].
Element
Removes all key-value pairs from the dictionary.
Calling this method invalidates all indices with respect to the dictionary.
keepCapacity
: Whether the dictionary should keep its
underlying buffer. If you pass true
, the operation preserves the
buffer capacity that the collection has, otherwise the underlying
buffer is released. The default is false
.
Complexity: O(n), where n is the number of key-value pairs in the dictionary.
Declaration
mutating
func
removeAll
(
keepingCapacity
keepCapacity
:
Bool
=
default
)
Removes the given key and its associated value from the dictionary.
If the key is found in the dictionary, this method returns the key's associated value. On removal, this method invalidates all indices with respect to the dictionary.
var
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
if
let
value
=
hues
.
removeValue
(
forKey
:
"Coral"
) {
(
"The value \(
value
) was removed."
)
}
// Prints "The value 16 was removed."
If the key isn't found in the dictionary, removeValue(forKey:)
returns
nil
.
if
let
value
=
hues
.
removeValueForKey
(
"Cerise"
) {
(
"The value \(
value
) was removed."
)
}
else
{
(
"No value found for that key."
)
}
// Prints "No value found for that key.""
key
: The key to remove along with its associated value.
Returns: The value that was removed, or nil
if the key was not
present in the dictionary.
Complexity: O(n), where n is the number of key-value pairs in the dictionary.
Declaration
mutating
func
removeValue
(
forKey
key
: [
Key
:
Value
].
Key
) -
>
[
Key
:
Value
].
Value
?
Reserves enough space to store the specified number of key-value pairs.
If you are adding a known number of key-value pairs to a dictionary, use this method to avoid multiple reallocations. This method ensures that the dictionary has unique, mutable, contiguous storage, with space allocated for at least the requested number of key-value pairs.
Calling the reserveCapacity(_:)
method on a dictionary with bridged
storage triggers a copy to contiguous storage even if the existing
storage has room to store minimumCapacity
key-value pairs.
minimumCapacity
: The requested number of key-value pairs to
store.
Declaration
mutating
func
reserveCapacity
(
_
minimumCapacity
:
Int
)
Returns an array containing the elements of this sequence in reverse order.
The sequence must be finite.
Complexity: O(n), where n is the length of the sequence.
Returns: An array containing the elements of this sequence in reverse order.
Declaration
func
reversed
() -
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
Declared In
Collection
, Sequence
Returns the elements of the sequence, shuffled.
For example, you can shuffle the numbers between 0
and 9
by calling
the shuffled()
method on that range:
let
numbers
=
0
...
9
let
shuffledNumbers
=
numbers
.
shuffled
()
// shuffledNumbers == [1, 7, 6, 2, 8, 9, 4, 3, 5, 0]
This method uses the default random generator, Random.default
. The call
to numbers.shuffled()
above is equivalent to calling
numbers.shuffled(using: &Random.default)
.
Returns: A shuffled array of this sequence's elements.
Complexity: O(n)
Declaration
func
shuffled
() -
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
Declared In
Collection
, Sequence
Returns the elements of the sequence, shuffled using the given generator as a source for randomness.
You use this method to randomize the elements of a sequence when you
are using a custom random number generator. For example, you can shuffle
the numbers between 0
and 9
by calling the shuffled(using:)
method
on that range:
let
numbers
=
0
...
9
let
shuffledNumbers
=
numbers
.
shuffled
(
using
:
&
myGenerator
)
// shuffledNumbers == [8, 9, 4, 3, 2, 6, 7, 0, 5, 1]
generator
: The random number generator to use when shuffling
the sequence.
Returns: An array of this sequence's elements in a shuffled order.
Complexity: O(n)
Declaration
func
shuffled
<
T
>
(
using
generator
:
inout
T
) -
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
where
T
:
RandomNumberGenerator
Declared In
Collection
, Sequence
Returns the elements of the sequence, sorted using the given predicate as the comparison between elements.
When you want to sort a sequence of elements that don't conform to the
Comparable
protocol, pass a predicate to this method that returns
true
when the first element passed should be ordered before the
second. The elements of the resulting array are ordered according to the
given predicate.
The predicate must be a strict weak ordering over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areInIncreasingOrder(a, a)
is alwaysfalse
. (Irreflexivity)- If
areInIncreasingOrder(a, b)
andareInIncreasingOrder(b, c)
are bothtrue
, thenareInIncreasingOrder(a, c)
is alsotrue
. (Transitive comparability) - Two elements are incomparable if neither is ordered before the other
according to the predicate. If
a
andb
are incomparable, andb
andc
are incomparable, thena
andc
are also incomparable. (Transitive incomparability)
The sorting algorithm is not stable. A nonstable sort may change the
relative order of elements for which areInIncreasingOrder
does not
establish an order.
In the following example, the predicate provides an ordering for an array
of a custom HTTPResponse
type. The predicate orders errors before
successes and sorts the error responses by their error code.
enum
HTTPResponse
{
case
ok
case
error
(
Int
)
}
let
responses
: [
HTTPResponse
] = [.
error
(
500
), .
ok
, .
ok
, .
error
(
404
), .
error
(
403
)]
let
sortedResponses
=
responses
.
sorted
{
switch
($
0
, $
1
) {
// Order errors by code
case
let
(.
error
(
aCode
), .
error
(
bCode
)):
return
aCode
<
bCode
// All successes are equivalent, so none is before any other
case
(.
ok
, .
ok
):
return
false
// Order errors before successes
case
(.
error
, .
ok
):
return
true
case
(.
ok
, .
error
):
return
false
}
}
(
sortedResponses
)
// Prints "[.error(403), .error(404), .error(500), .ok, .ok]"
You also use this method to sort elements that conform to the
Comparable
protocol in descending order. To sort your sequence in
descending order, pass the greater-than operator (>
) as the
areInIncreasingOrder
parameter.
let
students
:
Set
= [
"Kofi"
,
"Abena"
,
"Peter"
,
"Kweku"
,
"Akosua"
]
let
descendingStudents
=
students
.
sorted
(
by
:
>
)
(
descendingStudents
)
// Prints "["Peter", "Kweku", "Kofi", "Akosua", "Abena"]"
Calling the related sorted()
method is equivalent to calling this
method and passing the less-than operator (<
) as the predicate.
(
students
.
sorted
())
// Prints "["Abena", "Akosua", "Kofi", "Kweku", "Peter"]"
(
students
.
sorted
(
by
:
<
))
// Prints "["Abena", "Akosua", "Kofi", "Kweku", "Peter"]"
areInIncreasingOrder
: A predicate that returns true
if its
first argument should be ordered before its second argument;
otherwise, false
.
Returns: A sorted array of the sequence's elements.
Declaration
func
sorted
(
by
areInIncreasingOrder
: (
Dictionary
<
Key
,
Value
>
.
Element
,
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
Declared In
Collection
, Sequence
Returns the longest possible subsequences of the collection, in order, that don't contain elements satisfying the given predicate.
The resulting array consists of at most maxSplits + 1
subsequences.
Elements that are used to split the sequence are not returned as part of
any subsequence.
The following examples show the effects of the maxSplits
and
omittingEmptySubsequences
parameters when splitting a string using a
closure that matches spaces. The first use of split
returns each word
that was originally separated by one or more spaces.
let
line
=
"BLANCHE: I don't want realism. I want magic!"
(
line
.
split
(
whereSeparator
: { $
0
==
" "
}))
// Prints "["BLANCHE:", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
The second example passes 1
for the maxSplits
parameter, so the
original string is split just once, into two new strings.
(
line
.
split
(
maxSplits
:
1
,
whereSeparator
: { $
0
==
" "
}))
// Prints "["BLANCHE:", " I don\'t want realism. I want magic!"]"
The final example passes false
for the omittingEmptySubsequences
parameter, so the returned array contains empty strings where spaces
were repeated.
(
line
.
split
(
omittingEmptySubsequences
:
false
,
whereSeparator
: { $
0
==
" "
}))
// Prints "["BLANCHE:", "", "", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
Parameters:
maxSplits: The maximum number of times to split the collection, or
one less than the number of subsequences to return. If
maxSplits + 1
subsequences are returned, the last one is a suffix
of the original collection containing the remaining elements.
maxSplits
must be greater than or equal to zero. The default value
is Int.max
.
omittingEmptySubsequences: If false
, an empty subsequence is
returned in the result for each pair of consecutive elements
satisfying the isSeparator
predicate and for each element at the
start or end of the collection satisfying the isSeparator
predicate. The default value is true
.
isSeparator: A closure that takes an element as an argument and
returns a Boolean value indicating whether the collection should be
split at that element.
Returns: An array of subsequences, split from this collection's
elements.
Declaration
func
split
(
maxSplits
:
Int
=
default
,
omittingEmptySubsequences
:
Bool
=
default
,
whereSeparator
isSeparator
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
[
Dictionary
<
Key
,
Value
>
.
SubSequence
]
Declared In
Collection
Returns a Boolean value indicating whether the initial elements of the sequence are equivalent to the elements in another sequence, using the given predicate as the equivalence test.
The predicate must be a equivalence relation over the elements. That
is, for any elements a
, b
, and c
, the following conditions must
hold:
areEquivalent(a, a)
is alwaystrue
. (Reflexivity)areEquivalent(a, b)
impliesareEquivalent(b, a)
. (Symmetry)- If
areEquivalent(a, b)
andareEquivalent(b, c)
are bothtrue
, thenareEquivalent(a, c)
is alsotrue
. (Transitivity)
Parameters:
possiblePrefix: A sequence to compare to this sequence.
areEquivalent: A predicate that returns true
if its two arguments
are equivalent; otherwise, false
.
Returns: true
if the initial elements of the sequence are equivalent
to the elements of possiblePrefix
; otherwise, false
. If
possiblePrefix
has no elements, the return value is true
.
Declaration
func
starts
<
PossiblePrefix
>
(
with
possiblePrefix
:
PossiblePrefix
,
by
areEquivalent
: (
Dictionary
<
Key
,
Value
>
.
Element
,
PossiblePrefix
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
Bool
where
PossiblePrefix
:
Sequence
Declared In
Collection
, Sequence
Returns a subsequence, up to the given maximum length, containing the final elements of the collection.
If the maximum length exceeds the number of elements in the collection, the result contains all the elements in the collection.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
suffix
(
2
))
// Prints "[4, 5]"
(
numbers
.
suffix
(
10
))
// Prints "[1, 2, 3, 4, 5]"
maxLength
: The maximum number of elements to return. The
value of maxLength
must be greater than or equal to zero.
Returns: A subsequence terminating at the end of the collection with at
most maxLength
elements.
Complexity: O(n), where n is the length of the collection.
Declaration
func
suffix
(
_
maxLength
:
Int
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Returns a subsequence from the specified position to the end of the collection.
The following example searches for the index of the number 40
in an
array of integers, and then prints the suffix of the array starting at
that index:
let
numbers
= [
10
,
20
,
30
,
40
,
50
,
60
]
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
.
suffix
(
from
:
i
))
}
// Prints "[40, 50, 60]"
Passing the collection's endIndex
as the start
parameter results in
an empty subsequence.
(
numbers
.
suffix
(
from
:
numbers
.
endIndex
))
// Prints "[]"
Using the suffix(from:)
method is equivalent to using a partial range
from the index as the collection's subscript. The subscript notation is
preferred over suffix(from:)
.
if
let
i
=
numbers
.
firstIndex
(
of
:
40
) {
(
numbers
[
i
...])
}
// Prints "[40, 50, 60]"
start
: The index at which to start the resulting subsequence.
start
must be a valid index of the collection.
Returns: A subsequence starting at the start
position.
Complexity: O(1)
Declaration
func
suffix
(
from
start
:
Dictionary
<
Key
,
Value
>
.
Index
) -
>
Dictionary
<
Key
,
Value
>
.
SubSequence
Declared In
Collection
Updates the value stored in the dictionary for the given key, or adds a new key-value pair if the key does not exist.
Use this method instead of key-based subscripting when you need to know
whether the new value supplants the value of an existing key. If the
value of an existing key is updated, updateValue(_:forKey:)
returns
the original value.
var
hues
= [
"Heliotrope"
:
296
,
"Coral"
:
16
,
"Aquamarine"
:
156
]
if
let
oldValue
=
hues
.
updateValue
(
18
,
forKey
:
"Coral"
) {
(
"The old value of \(
oldValue
) was replaced with a new one."
)
}
// Prints "The old value of 16 was replaced with a new one."
If the given key is not present in the dictionary, this method adds the
key-value pair and returns nil
.
if
let
oldValue
=
hues
.
updateValue
(
330
,
forKey
:
"Cerise"
) {
(
"The old value of \(
oldValue
) was replaced with a new one."
)
}
else
{
(
"No value was found in the dictionary for that key."
)
}
// Prints "No value was found in the dictionary for that key."
Parameters:
value: The new value to add to the dictionary.
key: The key to associate with value
. If key
already exists in
the dictionary, value
replaces the existing associated value. If
key
isn't already a key of the dictionary, the (key, value)
pair
is added.
Returns: The value that was replaced, or nil
if a new key-value pair
was added.
Declaration
mutating
func
updateValue
(
_
value
: [
Key
:
Value
].
Value
,
forKey
key
: [
Key
:
Value
].
Key
) -
>
[
Key
:
Value
].
Value
?
48 inherited items hidden. (Show all)
Conditionally Inherited Items
The initializers, methods, and properties listed below may be available on this type under certain conditions (such as methods that are available on Array
when its elements are Equatable
) or may not ever be available if that determination is beyond SwiftDoc.org's capabilities. Please open an issue on GitHub if you see something out of place!
Where Element : Collection
Returns the elements of this collection of collections, concatenated.
In this example, an array of three ranges is flattened so that the elements of each range can be iterated in turn.
let
ranges
= [
0
..
<
3
,
8
..
<
10
,
15
..
<
17
]
// A for-in loop over 'ranges' accesses each range:
for
range
in
ranges
{
(
range
)
}
// Prints "0..<3"
// Prints "8..<10"
// Prints "15..<17"
// Use 'joined()' to access each element of each range:
for
index
in
ranges
.
joined
() {
(
index
,
terminator
:
" "
)
}
// Prints: "0 1 2 8 9 15 16"
Returns: A flattened view of the elements of this collection of collections.
Declaration
func
joined
() -
>
FlattenCollection
<
Dictionary
<
Key
,
Value
>
>
Declared In
Collection
1 inherited item hidden. (Show all)
Where Element : Comparable
Returns a Boolean value indicating whether the sequence precedes another
sequence in a lexicographical (dictionary) ordering, using the
less-than operator (<
) to compare elements.
This example uses the lexicographicallyPrecedes
method to test which
array of integers comes first in a lexicographical ordering.
let
a
= [
1
,
2
,
2
,
2
]
let
b
= [
1
,
2
,
3
,
4
]
(
a
.
lexicographicallyPrecedes
(
b
))
// Prints "true"
(
b
.
lexicographicallyPrecedes
(
b
))
// Prints "false"
other
: A sequence to compare to this sequence.
Returns: true
if this sequence precedes other
in a dictionary
ordering; otherwise, false
.
Note: This method implements the mathematical notion of lexicographical
ordering, which has no connection to Unicode. If you are sorting
strings to present to the end user, use String
APIs that
perform localized comparison.
Declaration
func
lexicographicallyPrecedes
<
OtherSequence
>
(
_
other
:
OtherSequence
) -
>
Bool
where
OtherSequence
:
Sequence
,
Dictionary
<
Key
,
Value
>
.
Element
==
OtherSequence
.
Element
Declared In
Collection
, Sequence
Returns the maximum element in the sequence.
This example finds the largest value in an array of height measurements.
let
heights
= [
67.5
,
65.7
,
64.3
,
61.1
,
58.5
,
60.3
,
64.9
]
let
greatestHeight
=
heights
.
max
()
(
greatestHeight
)
// Prints "Optional(67.5)"
Returns: The sequence's maximum element. If the sequence has no
elements, returns nil
.
Declaration
@
warn_unqualified_access
func
max
() -
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
, Sequence
Returns the minimum element in the sequence.
This example finds the smallest value in an array of height measurements.
let
heights
= [
67.5
,
65.7
,
64.3
,
61.1
,
58.5
,
60.3
,
64.9
]
let
lowestHeight
=
heights
.
min
()
(
lowestHeight
)
// Prints "Optional(58.5)"
Returns: The sequence's minimum element. If the sequence has no
elements, returns nil
.
Declaration
@
warn_unqualified_access
func
min
() -
>
Dictionary
<
Key
,
Value
>
.
Element
?
Declared In
Collection
, Sequence
Returns the elements of the sequence, sorted.
You can sort any sequence of elements that conform to the Comparable
protocol by calling this method. Elements are sorted in ascending order.
The sorting algorithm is not stable. A nonstable sort may change the relative order of elements that compare equal.
Here's an example of sorting a list of students' names. Strings in Swift
conform to the Comparable
protocol, so the names are sorted in
ascending order according to the less-than operator (<
).
let
students
:
Set
= [
"Kofi"
,
"Abena"
,
"Peter"
,
"Kweku"
,
"Akosua"
]
let
sortedStudents
=
students
.
sorted
()
(
sortedStudents
)
// Prints "["Abena", "Akosua", "Kofi", "Kweku", "Peter"]"
To sort the elements of your sequence in descending order, pass the
greater-than operator (>
) to the sorted(by:)
method.
let
descendingStudents
=
students
.
sorted
(
by
:
>
)
(
descendingStudents
)
// Prints "["Peter", "Kweku", "Kofi", "Akosua", "Abena"]"
Returns: A sorted array of the sequence's elements.
Declaration
func
sorted
() -
>
[
Dictionary
<
Key
,
Value
>
.
Element
]
Declared In
Collection
, Sequence
4 inherited items hidden. (Show all)
Where Element : Equatable
Returns a Boolean value indicating whether the sequence contains the given element.
This example checks to see whether a favorite actor is in an array storing a movie's cast.
let
cast
= [
"Vivien"
,
"Marlon"
,
"Kim"
,
"Karl"
]
(
cast
.
contains
(
"Marlon"
))
// Prints "true"
(
cast
.
contains
(
"James"
))
// Prints "false"
element
: The element to find in the sequence.
Returns: true
if the element was found in the sequence; otherwise,
false
.
Declaration
func
contains
(
_
element
:
Dictionary
<
Key
,
Value
>
.
Element
) -
>
Bool
Declared In
Collection
, Sequence
Returns a Boolean value indicating whether this sequence and another sequence contain the same elements in the same order.
At least one of the sequences must be finite.
This example tests whether one countable range shares the same elements as another countable range and an array.
let
a
=
1
...
3
let
b
=
1
...
10
(
a
.
elementsEqual
(
b
))
// Prints "false"
(
a
.
elementsEqual
([
1
,
2
,
3
]))
// Prints "true"
other
: A sequence to compare to this sequence.
Returns: true
if this sequence and other
contain the same elements
in the same order.
Declaration
func
elementsEqual
<
OtherSequence
>
(
_
other
:
OtherSequence
) -
>
Bool
where
OtherSequence
:
Sequence
,
Dictionary
<
Key
,
Value
>
.
Element
==
OtherSequence
.
Element
Declared In
Collection
, Sequence
Returns the first index where the specified value appears in the collection.
After using firstIndex(of:)
to find the position of a particular element
in a collection, you can use it to access the element by subscripting.
This example shows how you can modify one of the names in an array of
students.
var
students
= [
"Ben"
,
"Ivy"
,
"Jordell"
,
"Maxime"
]
if
let
i
=
students
.
firstIndex
(
of
:
"Maxime"
) {
students
[
i
] =
"Max"
}
(
students
)
// Prints "["Ben", "Ivy", "Jordell", "Max"]"
element
: An element to search for in the collection.
Returns: The first index where element
is found. If element
is not
found in the collection, returns nil
.
Declaration
func
firstIndex
(
of
element
:
Dictionary
<
Key
,
Value
>
.
Element
) -
>
Dictionary
<
Key
,
Value
>
.
Index
?
Declared In
Collection
Returns the longest possible subsequences of the collection, in order, around elements equal to the given element.
The resulting array consists of at most maxSplits + 1
subsequences.
Elements that are used to split the collection are not returned as part
of any subsequence.
The following examples show the effects of the maxSplits
and
omittingEmptySubsequences
parameters when splitting a string at each
space character (" "). The first use of split
returns each word that
was originally separated by one or more spaces.
let
line
=
"BLANCHE: I don't want realism. I want magic!"
(
line
.
split
(
separator
:
" "
))
// Prints "["BLANCHE:", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
The second example passes 1
for the maxSplits
parameter, so the
original string is split just once, into two new strings.
(
line
.
split
(
separator
:
" "
,
maxSplits
:
1
))
// Prints "["BLANCHE:", " I don\'t want realism. I want magic!"]"
The final example passes false
for the omittingEmptySubsequences
parameter, so the returned array contains empty strings where spaces
were repeated.
(
line
.
split
(
separator
:
" "
,
omittingEmptySubsequences
:
false
))
// Prints "["BLANCHE:", "", "", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
Parameters:
separator: The element that should be split upon.
maxSplits: The maximum number of times to split the collection, or
one less than the number of subsequences to return. If
maxSplits + 1
subsequences are returned, the last one is a suffix
of the original collection containing the remaining elements.
maxSplits
must be greater than or equal to zero. The default value
is Int.max
.
omittingEmptySubsequences: If false
, an empty subsequence is
returned in the result for each consecutive pair of separator
elements in the collection and for each instance of separator
at
the start or end of the collection. If true
, only nonempty
subsequences are returned. The default value is true
.
Returns: An array of subsequences, split from this collection's
elements.
Declaration
func
split
(
separator
:
Dictionary
<
Key
,
Value
>
.
Element
,
maxSplits
:
Int
=
default
,
omittingEmptySubsequences
:
Bool
=
default
) -
>
[
Dictionary
<
Key
,
Value
>
.
SubSequence
]
Declared In
Collection
, Sequence
Returns a Boolean value indicating whether the initial elements of the sequence are the same as the elements in another sequence.
This example tests whether one countable range begins with the elements of another countable range.
let
a
=
1
...
3
let
b
=
1
...
10
(
b
.
starts
(
with
:
a
))
// Prints "true"
Passing a sequence with no elements or an empty collection as
possiblePrefix
always results in true
.
(
b
.
starts
(
with
: []))
// Prints "true"
possiblePrefix
: A sequence to compare to this sequence.
Returns: true
if the initial elements of the sequence are the same as
the elements of possiblePrefix
; otherwise, false
. If
possiblePrefix
has no elements, the return value is true
.
Declaration
func
starts
<
PossiblePrefix
>
(
with
possiblePrefix
:
PossiblePrefix
) -
>
Bool
where
PossiblePrefix
:
Sequence
,
Dictionary
<
Key
,
Value
>
.
Element
==
PossiblePrefix
.
Element
Declared In
Collection
, Sequence
5 inherited items hidden. (Show all)
Where Element : Sequence
Returns the elements of this sequence of sequences, concatenated.
In this example, an array of three ranges is flattened so that the elements of each range can be iterated in turn.
let
ranges
= [
0
..
<
3
,
8
..
<
10
,
15
..
<
17
]
// A for-in loop over 'ranges' accesses each range:
for
range
in
ranges
{
(
range
)
}
// Prints "0..<3"
// Prints "8..<10"
// Prints "15..<17"
// Use 'joined()' to access each element of each range:
for
index
in
ranges
.
joined
() {
(
index
,
terminator
:
" "
)
}
// Prints: "0 1 2 8 9 15 16"
Returns: A flattened view of the elements of this sequence of sequences.
Declaration
func
joined
() -
>
FlattenSequence
<
Dictionary
<
Key
,
Value
>
>
Declared In
Collection
, Sequence
Returns the concatenated elements of this sequence of sequences, inserting the given separator between each element.
This example shows how an array of [Int]
instances can be joined, using
another [Int]
instance as the separator:
let
nestedNumbers
= [[
1
,
2
,
3
], [
4
,
5
,
6
], [
7
,
8
,
9
]]
let
joined
=
nestedNumbers
.
joined
(
separator
: [-
1
, -
2
])
(
Array
(
joined
))
// Prints "[1, 2, 3, -1, -2, 4, 5, 6, -1, -2, 7, 8, 9]"
separator
: A sequence to insert between each of this
sequence's elements.
Returns: The joined sequence of elements.
Declaration
func
joined
<
Separator
>
(
separator
:
Separator
) -
>
JoinedSequence
<
Dictionary
<
Key
,
Value
>
>
where
Separator
:
Sequence
,
Separator
.
Element
==
Dictionary
<
Key
,
Value
>
.
Element
.
Element
Declared In
Collection
, Sequence
2 inherited items hidden. (Show all)
Where Element : StringProtocol
Returns a new string by concatenating the elements of the sequence, adding the given separator between each element.
The following example shows how an array of strings can be joined to a single, comma-separated string:
let
cast
= [
"Vivien"
,
"Marlon"
,
"Kim"
,
"Karl"
]
let
list
=
cast
.
joined
(
separator
:
", "
)
(
list
)
// Prints "Vivien, Marlon, Kim, Karl"
separator
: A string to insert between each of the elements
in this sequence. The default separator is an empty string.
Returns: A single, concatenated string.
Declaration
Declared In
Collection
, Sequence
1 inherited item hidden. (Show all)
Where Indices == DefaultIndices
The indices that are valid for subscripting the collection, in ascending order.
A collection's indices
property can hold a strong reference to the
collection itself, causing the collection to be non-uniquely referenced.
If you mutate the collection while iterating over its indices, a strong
reference can cause an unexpected copy of the collection. To avoid the
unexpected copy, use the index(after:)
method starting with
startIndex
to produce indices instead.
var
c
=
MyFancyCollection
([
10
,
20
,
30
,
40
,
50
])
var
i
=
c
.
startIndex
while
i
!=
c
.
endIndex
{
c
[
i
] /=
5
i
=
c
.
index
(
after
:
i
)
}
// c == MyFancyCollection([2, 4, 6, 8, 10])
Declaration
var
indices
:
DefaultIndices
<
Dictionary
<
Key
,
Value
>
>
{
get
}
Declared In
Collection
1 inherited item hidden. (Show all)
Where Iterator == IndexingIterator
Returns an iterator over the elements of the collection.
Declaration
func
makeIterator
() -
>
IndexingIterator
<
Dictionary
<
Key
,
Value
>
>
Declared In
Collection
1 inherited item hidden. (Show all)
Where SubSequence == AnySequence
Returns a subsequence by skipping the initial, consecutive elements that satisfy the given predicate.
The following example uses the drop(while:)
method to skip over the
positive numbers at the beginning of the numbers
array. The result
begins with the first element of numbers
that does not satisfy
predicate
.
let
numbers
= [
3
,
7
,
4
, -
2
,
9
, -
6
,
10
,
1
]
let
startingWithNegative
=
numbers
.
drop
(
while
: { $
0
>
0
})
// startingWithNegative == [-2, 9, -6, 10, 1]
If predicate
matches every element in the sequence, the result is an
empty sequence.
predicate
: A closure that takes an element of the sequence as
its argument and returns a Boolean value indicating whether the
element should be included in the result.
Returns: A subsequence starting after the initial, consecutive elements
that satisfy predicate
.
Complexity: O(n), where n is the length of the collection.
Declaration
func
drop
(
while
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
Returns a subsequence containing all but the given number of initial elements.
If the number of elements to drop exceeds the number of elements in the sequence, the result is an empty subsequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropFirst
(
2
))
// Prints "[3, 4, 5]"
(
numbers
.
dropFirst
(
10
))
// Prints "[]"
n
: The number of elements to drop from the beginning of
the sequence. n
must be greater than or equal to zero.
Returns: A subsequence starting after the specified number of
elements.
Complexity: O(1).
Declaration
func
dropFirst
(
_
n
:
Int
) -
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
Returns a subsequence containing all but the given number of final elements.
The sequence must be finite. If the number of elements to drop exceeds the number of elements in the sequence, the result is an empty subsequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
dropLast
(
2
))
// Prints "[1, 2, 3]"
(
numbers
.
dropLast
(
10
))
// Prints "[]"
n
: The number of elements to drop off the end of the
sequence. n
must be greater than or equal to zero.
Returns: A subsequence leaving off the specified number of elements.
Complexity: O(n), where n is the length of the sequence.
Declaration
func
dropLast
(
_
n
:
Int
) -
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
Returns a subsequence, up to the specified maximum length, containing the initial elements of the sequence.
If the maximum length exceeds the number of elements in the sequence, the result contains all the elements in the sequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
prefix
(
2
))
// Prints "[1, 2]"
(
numbers
.
prefix
(
10
))
// Prints "[1, 2, 3, 4, 5]"
maxLength
: The maximum number of elements to return. The
value of maxLength
must be greater than or equal to zero.
Returns: A subsequence starting at the beginning of this sequence
with at most maxLength
elements.
Complexity: O(1)
Declaration
func
prefix
(
_
maxLength
:
Int
) -
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
Returns a subsequence containing the initial, consecutive elements that satisfy the given predicate.
The following example uses the prefix(while:)
method to find the
positive numbers at the beginning of the numbers
array. Every element
of numbers
up to, but not including, the first negative value is
included in the result.
let
numbers
= [
3
,
7
,
4
, -
2
,
9
, -
6
,
10
,
1
]
let
positivePrefix
=
numbers
.
prefix
(
while
: { $
0
>
0
})
// positivePrefix == [3, 7, 4]
If predicate
matches every element in the sequence, the resulting
sequence contains every element of the sequence.
predicate
: A closure that takes an element of the sequence as
its argument and returns a Boolean value indicating whether the
element should be included in the result.
Returns: A subsequence of the initial, consecutive elements that
satisfy predicate
.
Complexity: O(n), where n is the length of the collection.
Declaration
func
prefix
(
while
predicate
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
Returns the longest possible subsequences of the sequence, in order, that don't contain elements satisfying the given predicate. Elements that are used to split the sequence are not returned as part of any subsequence.
The following examples show the effects of the maxSplits
and
omittingEmptySubsequences
parameters when splitting a string using a
closure that matches spaces. The first use of split
returns each word
that was originally separated by one or more spaces.
let
line
=
"BLANCHE: I don't want realism. I want magic!"
(
line
.
split
(
whereSeparator
: { $
0
==
" "
})
.
map
(
String
.
init
))
// Prints "["BLANCHE:", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
The second example passes 1
for the maxSplits
parameter, so the
original string is split just once, into two new strings.
(
line
.
split
(
maxSplits
:
1
,
whereSeparator
: { $
0
==
" "
})
.
map
(
String
.
init
))
// Prints "["BLANCHE:", " I don\'t want realism. I want magic!"]"
The final example passes true
for the allowEmptySlices
parameter, so
the returned array contains empty strings where spaces were repeated.
(
line
.
split
(
omittingEmptySubsequences
:
false
,
whereSeparator
: { $
0
==
" "
}
).
map
(
String
.
init
))
// Prints "["BLANCHE:", "", "", "I", "don\'t", "want", "realism.", "I", "want", "magic!"]"
Parameters:
maxSplits: The maximum number of times to split the sequence, or one
less than the number of subsequences to return. If maxSplits + 1
subsequences are returned, the last one is a suffix of the original
sequence containing the remaining elements. maxSplits
must be
greater than or equal to zero. The default value is Int.max
.
omittingEmptySubsequences: If false
, an empty subsequence is
returned in the result for each pair of consecutive elements
satisfying the isSeparator
predicate and for each element at the
start or end of the sequence satisfying the isSeparator
predicate.
If true
, only nonempty subsequences are returned. The default
value is true
.
isSeparator: A closure that returns true
if its argument should be
used to split the sequence; otherwise, false
.
Returns: An array of subsequences, split from this sequence's elements.
Declaration
func
split
(
maxSplits
:
Int
=
default
,
omittingEmptySubsequences
:
Bool
=
default
,
whereSeparator
isSeparator
: (
Dictionary
<
Key
,
Value
>
.
Element
)
throws
-
>
Bool
)
rethrows
-
>
[
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
]
Declared In
Collection
, Sequence
Returns a subsequence, up to the given maximum length, containing the final elements of the sequence.
The sequence must be finite. If the maximum length exceeds the number of elements in the sequence, the result contains all the elements in the sequence.
let
numbers
= [
1
,
2
,
3
,
4
,
5
]
(
numbers
.
suffix
(
2
))
// Prints "[4, 5]"
(
numbers
.
suffix
(
10
))
// Prints "[1, 2, 3, 4, 5]"
maxLength
: The maximum number of elements to return. The
value of maxLength
must be greater than or equal to zero.
Complexity: O(n), where n is the length of the sequence.
Declaration
func
suffix
(
_
maxLength
:
Int
) -
>
AnySequence
<
Dictionary
<
Key
,
Value
>
.
Element
>
Declared In
Collection
, Sequence
7 inherited items hidden. (Show all)
Where SubSequence == Slice
Accesses a contiguous subrange of the collection's elements.
The accessed slice uses the same indices for the same elements as the
original collection. Always use the slice's startIndex
property
instead of assuming that its indices start at a particular value.
This example demonstrates getting a slice of an array of strings, finding the index of one of the strings in the slice, and then using that index in the original array.
let
streets
= [
"Adams"
,
"Bryant"
,
"Channing"
,
"Douglas"
,
"Evarts"
]
let
streetsSlice
=
streets
[
2
..
<
streets
.
endIndex
]
(
streetsSlice
)
// Prints "["Channing", "Douglas", "Evarts"]"
let
index
=
streetsSlice
.
firstIndex
(
of
:
"Evarts"
)
// 4
(
streets
[
index
!])
// Prints "Evarts"
bounds
: A range of the collection's indices. The bounds of
the range must be valid indices of the collection.
Complexity: O(1)
Declaration
subscript
(
bounds
:
Range
<
Dictionary
<
Key
,
Value
>
.
Index
>
) -
>
Slice
<
Dictionary
<
Key
,
Value
>
>
{
get
}
Declared In
Collection
1 inherited item hidden. (Show all)
A collection whose elements are key-value pairs.
A dictionary is a type of hash table, providing fast access to the entries it contains. Each entry in the table is identified using its key, which is a hashable type such as a string or number. You use that key to retrieve the corresponding value, which can be any object. In other languages, similar data types are known as hashes or associated arrays.
Create a new dictionary by using a dictionary literal. A dictionary literal is a comma-separated list of key-value pairs, in which a colon separates each key from its associated value, surrounded by square brackets. You can assign a dictionary literal to a variable or constant or pass it to a function that expects a dictionary.
Here's how you would create a dictionary of HTTP response codes and their related messages:
The
responseMessages
variable is inferred to have type[Int: String]
. TheKey
type of the dictionary isInt
, and theValue
type of the dictionary isString
.To create a dictionary with no key-value pairs, use an empty dictionary literal (
[:]
).Any type that conforms to the
Hashable
protocol can be used as a dictionary'sKey
type, including all of Swift's basic types. You can use your own custom types as dictionary keys by making them conform to theHashable
protocol.Getting and Setting Dictionary Values
The most common way to access values in a dictionary is to use a key as a subscript. Subscripting with a key takes the following form:
Subscripting a dictionary with a key returns an optional value, because a dictionary might not hold a value for the key that you use in the subscript.
The next example uses key-based subscripting of the
responseMessages
dictionary with two keys that exist in the dictionary and one that does not.You can also update, modify, or remove keys and values from a dictionary using the key-based subscript. To add a new key-value pair, assign a value to a key that isn't yet a part of the dictionary.
Update an existing value by assigning a new value to a key that already exists in the dictionary. If you assign
nil
to an existing key, the key and its associated value are removed. The following example updates the value for the404
code to be simply "Not found" and removes the key-value pair for the500
code entirely.In a mutable
Dictionary
instance, you can modify in place a value that you've accessed through a keyed subscript. The code sample below declares a dictionary calledinterestingNumbers
with string keys and values that are integer arrays, then sorts each array in-place in descending order.Iterating Over the Contents of a Dictionary
Every dictionary is an unordered collection of key-value pairs. You can iterate over a dictionary using a
for
-in
loop, decomposing each key-value pair into the elements of a tuple.The order of key-value pairs in a dictionary is stable between mutations but is otherwise unpredictable. If you need an ordered collection of key-value pairs and don't need the fast key lookup that
Dictionary
provides, see theDictionaryLiteral
type for an alternative.You can search a dictionary's contents for a particular value using the
contains(where:)
orfirstIndex(where:)
methods supplied by default implementation. The following example checks to see ifimagePaths
contains any paths in the"/glyphs"
directory:Note that in this example,
imagePaths
is subscripted using a dictionary index. Unlike the key-based subscript, the index-based subscript returns the corresponding key-value pair as a non-optional tuple.A dictionary's indices stay valid across additions to the dictionary as long as the dictionary has enough capacity to store the added values without allocating more buffer. When a dictionary outgrows its buffer, existing indices may be invalidated without any notification.
When you know how many new values you're adding to a dictionary, use the
init(minimumCapacity:)
initializer to allocate the correct amount of buffer.Bridging Between Dictionary and NSDictionary
You can bridge between
Dictionary
andNSDictionary
using theas
operator. For bridging to be possible, theKey
andValue
types of a dictionary must be classes,@objc
protocols, or types that bridge to Foundation types.Bridging from
Dictionary
toNSDictionary
always takes O(1) time and space. When the dictionary'sKey
andValue
types are neither classes nor@objc
protocols, any required bridging of elements occurs at the first access of each element. For this reason, the first operation that uses the contents of the dictionary may take O(n).Bridging from
NSDictionary
toDictionary
first calls thecopy(with:)
method (**copyWithZone:**
in Objective-C) on the dictionary to get an immutable copy and then performs additional Swift bookkeeping work that takes O(1) time. For instances ofNSDictionary
that are already immutable,copy(with:)
usually returns the same dictionary in O(1) time; otherwise, the copying performance is unspecified. The instances ofNSDictionary
andDictionary
share buffer using the same copy-on-write optimization that is used when two instances ofDictionary
share buffer.