ContainerEntry

public protocol ContainerEntry

A type that represents an entry from the container with its data and information.

  • A type that provides information about an entry.

    Declaration

    Swift

    associatedtype Info : ContainerEntryInfo
  • Provides access to information about the entry.

    Declaration

    Swift

    var info: Info { get }
  • Entry’s data (nil if entry is a directory or data isn’t available).

    Note

    It is assumed that the compression provided by the container is yet to be applied to data.

    Declaration

    Swift

    var data: Data? { get }