object Type
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Type
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed abstract class AggregateKind extends ValueKind
Aggregate value types.
- final case class Array(ty: Type, nullable: Boolean = true) extends RefKind with Product with Serializable
- final case class ArrayValue(ty: Type, n: Int) extends AggregateKind with Product with Serializable
- sealed abstract class F extends PrimitiveKind
- final case class Function(args: Seq[Type], ret: Type) extends SpecialKind with Product with Serializable
- sealed abstract class I extends PrimitiveKind
- sealed abstract class PrimitiveKind extends ValueKind
Primitive value types.
- final case class Ref(name: Global, exact: Boolean = false, nullable: Boolean = true) extends RefKind with Product with Serializable
- sealed abstract class RefKind extends Type
Reference types.
- sealed abstract class SpecialKind extends Type
Second-class types.
- final case class StructValue(tys: Seq[Type]) extends AggregateKind with Product with Serializable
- sealed abstract class ValueKind extends Type
Value types are either primitive or aggregate.
- final case class Var(ty: Type) extends SpecialKind with Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val arrayToType: Map[Global, Type]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val box: Map[Type, Type]
- val boxClasses: collection.immutable.Seq[Global]
- val boxesTo: Seq[(Type, Type)]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def fromArrayClass(name: Global): Option[Type]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def isArray(clsName: Global): Boolean
- def isArray(clsTy: Ref): Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isPtrBox(ty: Type): Boolean
- def isPtrType(ty: Type): Boolean
- def isUnsignedType(ty: Type): Boolean
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def normalize(ty: Type): Type
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toArrayClass(ty: Type): Global
- def toString(): String
- Definition Classes
- AnyRef → Any
- val typeToArray: Map[Type, Global]
- def typeToName(tpe: Type): Global
- val unbox: Map[Type, Type]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- case object Bool extends PrimitiveKind with Product with Serializable
- case object Byte extends I with Product with Serializable
- case object Char extends I with Product with Serializable
- case object Double extends F with Product with Serializable
- object F
- case object Float extends F with Product with Serializable
- object I
- case object Int extends I with Product with Serializable
- case object Long extends I with Product with Serializable
- case object Nothing extends SpecialKind with Product with Serializable
- case object Null extends RefKind with Product with Serializable
- case object Ptr extends PrimitiveKind with Product with Serializable
- case object Short extends I with Product with Serializable
- case object Unit extends RefKind with Product with Serializable
- case object Vararg extends SpecialKind with Product with Serializable
- case object Virtual extends SpecialKind with Product with Serializable