Instance Property インスタンスプロパティ

array

A representation of the ordered set as an array. 順序集合を配列として表します。

Declaration 宣言

var array: [Any] { get }

Discussion 議論

This returns a proxy object for the receiving ordered set, which acts like an immutable array. これは、受け手側の順序集合に対するプロキシオブジェクトを返します、それは不変の配列のように振る舞います。

While you cannot mutate the ordered set through this proxy, mutations to the original ordered set will be reflected in the proxy and it will appear to change spontaneously, because a copy of the ordered set is not being made. あなたは順序集合を変えることがこのプロキシを通してできない一方、元の順序集合に対する変化はプロキシに反映されます、そして自然に変化するように見えます、なぜなら順序集合のコピーは作られていないからです。

See Also 参照

Converting Other Collections 他のコレクションに変換する