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 EitherType[A, B](tLeft: RType[A], tRight: RType[B]) extends RType[Either[A, B]] with Product with Serializable
  3. case class FuncType[A, B](tDom: RType[A], tRange: RType[B]) extends RType[(A) ⇒ B] with Product with Serializable
  4. 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.

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

    Descriptor used to represent primitive types.

  8. case class SingletonType[A](value: A, classTag: ClassTag[A])() extends RType[A] with Product with Serializable

    Descriptor of the type A narrowed to the single inhabitant value.

  9. type SomeType = RType[_]
  10. type ThunkData[A] = () ⇒ A

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

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

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

  37. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  38. implicit def thunkRType[A](implicit tA: RType[A]): RType[ThunkData[A]]
  39. def toString(): String
    Definition Classes
    AnyRef → Any
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  43. 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.

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

Inherited from AnyRef

Inherited from Any

Ungrouped