io.github.timwspence.cats.stm.TQueueLike.TQueue
See theTQueue companion object
Attributes
- Companion
- object
- Source
- TQueue.scala
- Graph
-
- Supertypes
Members list
Value members
Concrete methods
Check if currently empty.
Peek the first element.
Enqueue a value.
Dequeue the first element.
Attempt to peek the first element.
Attempt to peek the first element. Returns None
if empty, Some(head)
otherwise.
Attributes
- Source
- TQueue.scala
Attempt to dequeue the first element.
Attempt to dequeue the first element. Returns None
if empty, Some(head)
otherwise.
Attributes
- Source
- TQueue.scala
In this article