Return Value 戻り値
The joined sequence of elements. つなぎ合わされたシーケンス要素。
Availability 有効性
Technology
func joined<Separator>(separator: Separator) -> JoinedSequence
<Self> where Separator : Sequence
, Separator.Element == Self.Element.Element
The joined sequence of elements. つなぎ合わされたシーケンス要素。
separator
A sequence to insert between each of this sequence’s elements. このシーケンスの要素それぞれの間に挿入されるシーケンス。
This example shows how an array of [Int]
instances can be joined, using another [Int]
instance as the separator:
この例は、どのように[Int]
インスタンスいくつかからなるある配列がつなぎ合わされるかを、別の[Int]
インスタンスを分離子として使って示します。
let nestedNumbers = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
let joined = nestedNumbers.joined(separator: [-1, -2])
print(Array(joined))
// Prints "[1, 2, 3, -1, -2, 4, 5, 6, -1, -2, 7, 8, 9]"