EncodingUnkeyedContainerMeta

public protocol EncodingUnkeyedContainerMeta : Meta
  • The number of elements in the container ( 0 if no element is contained).

    Declaration

    Swift

    var numberOfMetas: Int { get }
  • Returns the element at the given index or nil, if the index is smaller than 0 or bigger or equal than count.

    Declaration

    Swift

    func get(at index: Int) -> Meta?
  • Inserts or appends the given meta at index. Index may be equals count (in this case you should append), but not larger.

    Declaration

    Swift

    mutating mutating func insert(_ meta: Meta, at index: Int)