Package-level declarations

Types

Link copied to clipboard

A specialized array deque for int types, allowing no-autoboxing implementation. This is effectively just the Kotlin stdlib ArrayDeque class copied over and adjusted to work off of the primitive int.

Link copied to clipboard
class UniqueQueue<T> : Iterable<T>

A unique ArrayDeque that utilizes a hash set to check whether something already exists in the queue. This implementation is NOT thread-safe.