TPriorityQueue

zio.stm.TPriorityQueue$
See theTPriorityQueue companion class

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Value members

Concrete methods

def empty[A](implicit ord: Ordering[A]): USTM[TPriorityQueue[A]]

Constructs a new empty TPriorityQueue with the specified Ordering.

Constructs a new empty TPriorityQueue with the specified Ordering.

Attributes

def fromIterable[A](data: => Iterable[A])(implicit ord: Ordering[A]): USTM[TPriorityQueue[A]]

Makes a new TPriorityQueue initialized with provided iterable.

Makes a new TPriorityQueue initialized with provided iterable.

Attributes

def make[A](data: A*)(implicit ord: Ordering[A]): USTM[TPriorityQueue[A]]

Makes a new TPriorityQueue that is initialized with specified values.

Makes a new TPriorityQueue that is initialized with specified values.

Attributes