var array: [Any]
A representation of the ordered set as an array.
順序集合を配列として表します。
Availability 有効性
Technology
var set: Set
<AnyHashable
> { get }
This returns a proxy object for the receiving ordered set, which acts like an immutable set. これは、受け手側の順序集合に対するプロキシオブジェクトを返します、それは不変の集合のように振る舞います。
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. あなたは順序集合を変えることがこのプロキシを通してできない一方、元の順序集合に対する変化はプロキシに反映されます、そして自然に変化するように見えます、なぜなら順序集合のコピーは作られていないからです。
var array: [Any]