Container
public protocol Container
A type that represents a container with files, directories and/or other data.
-
A type that represents an entry from this container.
Declaration
Swift
associatedtype Entry : ContainerEntry
-
Retrieve all container entries with their data.
Declaration
Swift
static func open(container: Data) throws -> [Entry]
-
Retrieve information about all container entries (without their data).
Declaration
Swift
static func info(container: Data) throws -> [Entry.Info]