TPriorityQueue

Companion:
class
class Object
trait Matchable
class Any

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.

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.

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.