Class/Object

io.reactors.container

RQuadMatrix

Related Docs: object RQuadMatrix | package container

Permalink

class RQuadMatrix[T] extends Matrix[T] with Modifiable

A reactive quad matrix.

T

type of the keys in the map, specialized

Linear Supertypes
Modifiable, Matrix[T], Immutable[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RQuadMatrix
  2. Modifiable
  3. Matrix
  4. Immutable
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RQuadMatrix()(implicit arrayable: Arrayable[T])

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  6. def acquireModify(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Modifiable
  7. def apply(x: Int, y: Int): T

    Permalink

    Returns the value stored at the specified coordinates, or nil otherwise.

    Returns the value stored at the specified coordinates, or nil otherwise.

    Definition Classes
    RQuadMatrix → Immutable
  8. def applyAndUpdate(x: Int, y: Int, v: T): T

    Permalink

    Updates the value at the specified coordinates, and returns the previous value.

    Updates the value at the specified coordinates, and returns the previous value.

    Definition Classes
    RQuadMatrix → Matrix
  9. def area(gxf: Int, gyf: Int, gxu: Int, gyu: Int): Area[T]

    Permalink

    Returns a view used to traverse all elements in a rectangle.

    Returns a view used to traverse all elements in a rectangle.

    Definition Classes
    RQuadMatrix → Immutable
  10. implicit val arrayable: Arrayable[T]

    Permalink
  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def asMap: RMap[XY, T]

    Permalink

    Returns an RMap view of this matrix.

    Returns an RMap view of this matrix. May result in boxing if the matrix contains primitive values.

  13. def clear(): Unit

    Permalink

    Clears the entire matrix.

  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def copy(array: Array[T], fromx: Int, fromy: Int, untilx: Int, untily: Int): Unit

    Permalink

    Copies the contents of the specified rectangle into an array.

    Copies the contents of the specified rectangle into an array.

    Definition Classes
    RQuadMatrix → Immutable
  16. def ensuring(cond: (RQuadMatrix[T]) ⇒ Boolean, msg: ⇒ Any): RQuadMatrix[T]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def foreach(f: (XY) ⇒ Unit): Unit

    Permalink

    Traverses all the non-nil values in this matrix.

    Traverses all the non-nil values in this matrix.

    Definition Classes
    RQuadMatrix → Immutable
  24. def formatted(fmtstr: String): String

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. def inserts: Events[XY]

    Permalink
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def modified: Events[Unit]

    Permalink
  30. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  31. def nil: T

    Permalink

    Returns the default, nil value for this matrix.

  32. def nonNilArea(gxf: Int, gyf: Int, gxu: Int, gyu: Int): Area[T]

    Permalink

    Returns a view used to traverse non-nil elements in a rectangle.

    Returns a view used to traverse non-nil elements in a rectangle.

    Definition Classes
    RQuadMatrix → Immutable
  33. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. def orElse(x: Int, y: Int, elem: T): T

    Permalink

    Returns the value stored at the specified coordinates, or elem otherwise.

  36. def releaseModify(): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Modifiable
  37. def remove(x: Int, y: Int): T

    Permalink

    Sets the value at the specified coordinates to nil.

    Sets the value at the specified coordinates to nil.

    Definition Classes
    RQuadMatrix → Matrix
  38. def removes: Events[XY]

    Permalink
  39. def size: Int

    Permalink
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  42. def unsubscribe(): Unit

    Permalink
  43. def update(xy: XY, v: T): Unit

    Permalink

    Update the value at the specified coordinates.

  44. def update(x: Int, y: Int, v: T): Unit

    Permalink

    Update the value at the specified coordinates.

    Update the value at the specified coordinates.

    Definition Classes
    RQuadMatrix → Matrix
  45. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. def [B](y: B): (RQuadMatrix[T], B)

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

Inherited from Modifiable

Inherited from Matrix[T]

Inherited from Immutable[T]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from RQuadMatrix[T] to any2stringadd[RQuadMatrix[T]]

Inherited by implicit conversion StringFormat from RQuadMatrix[T] to StringFormat[RQuadMatrix[T]]

Inherited by implicit conversion Ensuring from RQuadMatrix[T] to Ensuring[RQuadMatrix[T]]

Inherited by implicit conversion ArrowAssoc from RQuadMatrix[T] to ArrowAssoc[RQuadMatrix[T]]

Ungrouped