DecodingUnkeyedContainerMeta

public protocol DecodingUnkeyedContainerMeta : Meta
  • The number of metas in the container, if this number is known.

    Returns nil, if the number is unknown.

    Declaration

    Swift

    var numberOfMetasIfKnown: 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?