Properties

Link copied to clipboard
abstract val entries: Set<Url>

List of all the container entries.

Link copied to clipboard

Direct source to this container, when available.

Functions

Link copied to clipboard
abstract fun close()

Closes this object and releases any resources associated with it. If the object is already closed then invoking this method has no effect.

Link copied to clipboard
abstract operator fun get(url: Url): E?

Returns the entry at the given url or null if there is none.

Link copied to clipboard
open operator override fun iterator(): Iterator<Url>
Link copied to clipboard
inline suspend fun <S> Container<Readable>.readDecodeOrNull(url: Url, decode: (ByteArray) -> Try<S, DecodeError>): S?