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. All

Type Members

  1. case class ArrayType[A](tA: RType[A]) extends RType[Array[A]] with Product with Serializable
  2. case class FuncType[A, B](tDom: RType[A], tRange: RType[B]) extends RType[(A) ⇒ B] with Product with Serializable
  3. case class GeneralType[A](classTag: ClassTag[A]) extends RType[A] with Product with Serializable

    Type descriptor for types with limited type information like Any, AnyRef, Nothing.

    Type descriptor for types with limited type information like Any, AnyRef, Nothing. It also used to wrap class tags which are GenericClassTag instances (also with limited information about type structure). To describe structure of the type more precisely use concrete classes in the hierarchy of RType.

  4. case class OptionType[A](tA: RType[A]) extends RType[Option[A]] with Product with Serializable
  5. case class PairType[A, B](tFst: RType[A], tSnd: RType[B]) extends RType[(A, B)] with Product with Serializable
  6. case class PrimitiveType[A](classTag: ClassTag[A], emptyArray: Array[A]) extends RType[A] with Product with Serializable

    Descriptor used to represent primitive types.

  7. type SomeType = RType[_]
  8. type ThunkData[A] = () ⇒ A

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

  9. case class ThunkType[A](tA: RType[A]) extends RType[ThunkData[A]] with Product with Serializable

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. val AnyRefType: RType[AnyRef]
  5. val AnyType: RType[Any]
  6. implicit val BooleanType: RType[Boolean]
  7. implicit val ByteType: RType[Byte]
  8. implicit val CharType: RType[Char]
  9. implicit val DoubleType: RType[Double]
  10. implicit val FloatType: RType[Float]
  11. implicit val IntType: RType[Int]
  12. implicit val LongType: RType[Long]
  13. val NothingType: RType[Nothing]
  14. implicit val ShortType: RType[Short]
  15. implicit val UnitType: RType[Unit]
  16. def apply[A](implicit t: RType[A]): RType[A]

    Helper to request RType instances from an implicit scope.

  17. implicit def arrayRType[A](implicit tA: RType[A]): RType[Array[A]]
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. 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()
  20. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @IntrinsicCandidate()
  21. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  23. implicit def extendPairType[A, B](pt: RType[(A, B)]): PairType[A, B]
  24. def fromClassTag[A](ctA: ClassTag[A]): RType[A]
  25. implicit def funcRType[A, B](implicit tDom: RType[A], tRange: RType[B]): RType[(A) ⇒ B]
  26. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  30. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  31. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  32. implicit def optionRType[A](implicit tA: RType[A]): RType[Option[A]]
  33. implicit def pairRType[A, B](implicit tA: RType[A], tB: RType[B]): RType[(A, B)]
  34. implicit def rtypeRType[A]: RType[RType[A]]

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

  35. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  36. implicit def thunkRType[A](implicit tA: RType[A]): RType[ThunkData[A]]
  37. def toString(): String
    Definition Classes
    AnyRef → Any
  38. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. object RTypeType extends RType[RType[_]] with Product with Serializable

    Descriptor of descriptor to represent type of RType[_] instances.

    Descriptor of descriptor to represent type of RType[_] instances. This describes any possible descriptor, disregarding its underlying type. Thus the underlying type is assumed to be Any.

  42. implicit object StringType extends RType[String] with Product with Serializable

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped