Generic Structure

CollectionOfOne

A collection containing a single element. 単一の要素を含んでいるコレクション。

Declaration 宣言

@frozen struct CollectionOfOne<Element>

Overview 概要

You can use a CollectionOfOne instance when you need to efficiently represent a single value as a collection. For example, you can add a single element to an array by using a CollectionOfOne instance with the concatenation operator (+): あなたは、CollectionOfOneインスタンスを、あなたが単一の値をコレクションとして効率的に表す必要がある場合に使えます。例えば、あなたは単一の要素を配列へと追加することが、CollectionOfOneインスタンスを連結演算子(+)とともに使うことによって可能です:


let a = [1, 2, 3, 4]
let toAdd = 100
let b = a + CollectionOfOne(toAdd)
// b == [1, 2, 3, 4, 100]

Topics 話題

Type Aliases 型エイリアス

Initializers イニシャライザ

Instance Properties 様々なインスタンスプロパティ

Instance Methods インスタンスメソッド

Subscripts 添え字

Structures 構造体

Relationships 関係

Conforms To 次に準拠

See Also 参照

Special-Use Collections 特殊用途のコレクション