var set: Set<AnyHashable>
A representation of the set containing the contents of the ordered set.
順序集合の内容を含んでいる集合のある表現。
Availability 有効性
Technology
var array: [Any] { get }
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. あなたは順序集合を変えることがこのプロキシを通してできない一方、元の順序集合に対する変化はプロキシに反映されます、そして自然に変化するように見えます、なぜなら順序集合のコピーは作られていないからです。
var set: Set<AnyHashable>