object Type
- Alphabetic
- By Inheritance
- Type
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- sealed abstract class AggregateKind extends ValueKind
The type of an aggregate.
- final case class Array(ty: Type, nullable: Boolean = true) extends RefKind with Product with Serializable
The type of an array reference.
The type of an array reference.
An
Arrayis a reference toscala.Array[T]. It contains a header followed by a tail allocated buffer, which typically sit on the heap. That is unlikeArrayValue, which corresponds to LLVM's fixed-size array type. - final case class ArrayValue(ty: Type, n: Int) extends AggregateKind with Product with Serializable
The type of a homogeneous collection of data members.
- sealed abstract class F extends PrimitiveKind
The type of a floating-point number.
- sealed abstract class FixedSizeI extends PrimitiveKind with I
The type of a fixed-size integer.
- final case class Function(args: Seq[Type], ret: Type) extends SpecialKind with Product with Serializable
- sealed trait I extends ValueKind
The type of an integer.
- sealed abstract class PrimitiveKind extends ValueKind
A primitive value type.
- final case class Ref(name: Top, exact: Boolean = false, nullable: Boolean = true) extends RefKind with Product with Serializable
The type of a reference.
- sealed abstract class RefKind extends Type
A reference type.
- sealed abstract class SpecialKind extends Type
Second-class types.
- final case class StructValue(tys: Seq[Type]) extends AggregateKind with Product with Serializable
The type of a heterogeneous collection of data members.
- sealed abstract class ValueKind extends Type
The type of an aggregate or primitive value.
- 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[Top, Type]
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val box: Map[Type, Type]
- val boxClasses: collection.immutable.Seq[Top]
- 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: Top): 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: Top): Boolean
- def isArray(clsTy: Ref): Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNothing(ty: Type): Boolean
- def isNull(ty: Type): Boolean
- def isPtrBox(ty: Type): Boolean
- def isPtrType(ty: Type): Boolean
- def isSizeBox(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): Top
- def toString(): String
- Definition Classes
- AnyRef → Any
- val typeToArray: Map[Type, Top]
- def typeToName(tpe: Type): Top
- 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
The type of Boolean values.
- case object Byte extends FixedSizeI with Product with Serializable
The type of a 8-bit signed integer.
- case object Char extends FixedSizeI with Product with Serializable
The type of a 16-bit unsigned integer.
- case object Double extends F with Product with Serializable
The type of a 64-bit IEEE 754 single-precision float.
- case object Float extends F with Product with Serializable
The type of a 32-bit IEEE 754 single-precision float.
- case object Int extends FixedSizeI with Product with Serializable
The type of a 32-bit signed integer.
- case object Long extends FixedSizeI with Product with Serializable
The type of a 64-bit signed integer.
- case object Nothing extends SpecialKind with Product with Serializable
- object NothingType
- case object Null extends RefKind with Product with Serializable
The null reference type.
- object NullType
- case object Ptr extends ValueKind with Product with Serializable
The type of pointers.
- case object Short extends FixedSizeI with Product with Serializable
The type of a 16-bit signed integer.
- case object Size extends ValueKind with I with Product with Serializable
The type of a value suitable to represent the size of a container.
- case object Unit extends RefKind with Product with Serializable
The unit type.
- case object Vararg extends SpecialKind with Product with Serializable
- case object Virtual extends SpecialKind with Product with Serializable
- object unsigned