Classes

The following classes are available globally.

  • A mutable, unordered collection of distinct objects.

    See more

    Declaration

    Swift

    public class MutableSet<Element> : Sequence, CustomStringConvertible where Element : CustomStringConvertible, Element : Hashable
  • A modifiable array of elements.

    See more

    Declaration

    Swift

    public class MutableArray<Element> : MutableCollection, CustomStringConvertible where Element : Equatable
  • Mutable associations of keys and values.

    See more

    Declaration

    Swift

    public class MutableDictionary<Key, Value> : Sequence, CustomStringConvertible where Key : Hashable