Packages

object RType

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RType
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type SomeType = RType[_]
  2. type ThunkData[A] = () => A

    Underlying type of Thunk[A] values (or by-name values of type A).

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply[A](implicit t: RType[A]): RType[A]

    Helper to request RType instances from an implicit scope.

  5. implicit def arrayRType[A](implicit tA: RType[A]): RType[Array[A]]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def asType[T](t: RType[_]): RType[T]

    Helper cast from untyped descriptor to the typed one.

    Helper cast from untyped descriptor to the typed one.

    Annotations
    @inline()
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. implicit def downcastCollType[A](ct: RType[Coll[A]]): CollType[A]

    Conversion to underlying descriptor class.

    Conversion to underlying descriptor class. Allows syntax like

    val tColl: RType[Coll[A]] = ...; tColl.tItem

    where tItem is a method of CollType, but is not defined on RType.

  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. implicit def extendPairType[A, B](pt: RType[(A, B)]): PairType[A, B]
  13. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  14. def fromClassTag[A](ctA: ClassTag[A]): RType[A]
  15. implicit def funcRType[A, B](implicit tDom: RType[A], tRange: RType[B]): RType[(A) => B]
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. implicit def optionRType[A](implicit tA: RType[A]): RType[Option[A]]
  23. implicit def pairRType[A, B](implicit tA: RType[A], tB: RType[B]): RType[(A, B)]
  24. implicit def rtypeRType[A]: RType[RType[A]]

    Implicitly obtain the single RTypeType descriptor casted to the given type A.

  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. implicit def thunkRType[A](implicit tA: RType[A]): RType[ThunkData[A]]
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped