scala.reactive.container

ReactBinaryHeap

class ReactBinaryHeap[T] extends ReactPriorityQueue[T]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ReactBinaryHeap
  2. ReactPriorityQueue
  3. ReactQueue
  4. ReactContainer
  5. Subscriptions
  6. ReactMutable
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ReactBinaryHeap(initialSize: Int = 16)(implicit arrayable: Arrayable[T], order: Order[T])

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (ReactBinaryHeap[T], B)

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to ArrowAssoc[ReactBinaryHeap[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  8. implicit val arrayable: Arrayable[T]

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def bindSubscription(s: Subscription): Subscription

    Called internally - binds a subscription to this reactive mutable value.

    Called internally - binds a subscription to this reactive mutable value.

    Definition Classes
    SubscriptionsReactMutable
  11. def clearSubscriptions(): Unit

    Definition Classes
    Subscriptions
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def collect[S <: AnyRef](pf: PartialFunction[T, S])(implicit e: <:<[T, AnyRef]): ReactContainer[S]

    Definition Classes
    ReactContainer
  14. def count(p: (T) ⇒ Boolean): Int

    Definition Classes
    ReactContainer
  15. def dequeue(): T

    Definition Classes
    ReactBinaryHeapReactPriorityQueueReactQueue
  16. def enqueue(elem: T): Unit

    Definition Classes
    ReactBinaryHeapReactPriorityQueueReactQueue
  17. def ensuring(cond: (ReactBinaryHeap[T]) ⇒ Boolean, msg: ⇒ Any): ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: (ReactBinaryHeap[T]) ⇒ Boolean): ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. def ensuring(cond: Boolean, msg: ⇒ Any): ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: Boolean): ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def exists(p: (T) ⇒ Boolean): Boolean

    Definition Classes
    ReactContainer
  24. def filter(p: (T) ⇒ Boolean): ReactContainer[T]

    Definition Classes
    ReactContainer
  25. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. def fold(m: Monoid[T]): T

    Definition Classes
    ReactContainer
  27. def forall(p: (T) ⇒ Boolean): Boolean

    Definition Classes
    ReactContainer
  28. def foreach(f: (T) ⇒ Unit): Unit

    Definition Classes
    ReactBinaryHeapReactContainer
  29. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  30. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  31. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  32. def head: T

    Definition Classes
    ReactBinaryHeapReactPriorityQueueReactQueue
  33. def init(dummy: ReactBinaryHeap[T]): Unit

  34. val initialSize: Int

  35. def inserts: Emitter[T]

    Definition Classes
    ReactBinaryHeapReactContainer
  36. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  37. def map[S](f: (T) ⇒ S): ReactContainer[S]

    Definition Classes
    ReactContainer
  38. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  39. final def notify(): Unit

    Definition Classes
    AnyRef
  40. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  41. def onMutated(): Unit

    Called internally - when the mutable reactive or its internal value has been mutated.

    Called internally - when the mutable reactive or its internal value has been mutated.

    Definition Classes
    ReactMutable
  42. implicit val order: Order[T]

    Definition Classes
    ReactBinaryHeapReactPriorityQueue
  43. val react: Lifted[T]

    Definition Classes
    ReactBinaryHeapReactContainer
  44. def removes: Emitter[T]

    Definition Classes
    ReactBinaryHeapReactContainer
  45. def size: Int

    Definition Classes
    ReactBinaryHeapReactContainer
  46. val subscriptions: Set[Subscription]

    Definition Classes
    Subscriptions
  47. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  48. def to[That <: ReactContainer[T]](implicit factory: Factory[T, That]): That

    Definition Classes
    ReactContainer
  49. def toString(): String

    Definition Classes
    AnyRef → Any
  50. def union(that: ReactContainer[T])(implicit count: Count[T], a: Arrayable[T], b: CanBeBuffered): ReactContainer[T]

    Definition Classes
    ReactContainer
  51. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. def [B](y: B): (ReactBinaryHeap[T], B)

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to ArrowAssoc[ReactBinaryHeap[T]] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (reactBinaryHeap: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (reactBinaryHeap: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to ArrowAssoc[ReactBinaryHeap[T]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (reactBinaryHeap: ArrowAssoc[ReactBinaryHeap[T]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: ReactBinaryHeap[T]

    Implicit information
    This member is added by an implicit conversion from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (reactBinaryHeap: Ensuring[ReactBinaryHeap[T]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from ReactPriorityQueue[T]

Inherited from ReactQueue[T]

Inherited from ReactContainer[T]

Inherited from Subscriptions

Inherited from ReactMutable

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ReactBinaryHeap[T] to StringAdd

Inherited by implicit conversion any2stringfmt from ReactBinaryHeap[T] to StringFormat

Inherited by implicit conversion any2ArrowAssoc from ReactBinaryHeap[T] to ArrowAssoc[ReactBinaryHeap[T]]

Inherited by implicit conversion any2Ensuring from ReactBinaryHeap[T] to Ensuring[ReactBinaryHeap[T]]

Ungrouped