PathSet

interface PathSet : Iterable<String>

Immutable set of object names.

Implementations of this interface should be thread safe.

Author

Elizabeth Paige Harper https://github.com/Foxcapades

Since

v0.1.0

See also

Functions

Link copied to clipboard
abstract operator fun contains(path: String): Boolean
Link copied to clipboard
open fun forEach(p0: Consumer<in String>)
Link copied to clipboard
abstract operator fun iterator(): Iterator<String>
Link copied to clipboard
Link copied to clipboard
abstract fun stream(): Stream<String>
Link copied to clipboard
abstract fun toList(): List<String>
Link copied to clipboard
abstract fun toSet(): Set<String>

Returns a read only set containing the paths in this PathSet.

Properties

Link copied to clipboard
abstract val isEmpty: Boolean

Whether this PathSet is empty.

Link copied to clipboard
abstract val isNotEmpty: Boolean

Whether this PathSet is not empty.

Link copied to clipboard
abstract val size: Int

Number of paths currently in this PathSet

Inheritors

Link copied to clipboard