PrimRef

final case class PrimRef extends NonArrayTypeRef

Primitive type reference.

trait Product
trait Equals
class TypeRef
class Object
trait Matchable
class Any

Value members

Inherited methods

Inherited from:
Product
def show(): String
Inherited from:
TypeRef

Concrete fields

The char code of this primitive type.

The char code of this primitive type.

For all primitive types except NullType and NothingType, this is specified by the IR spec in the sense that it is visible in the result of classOf[Array[Prim]].getName() (e.g., that is "[I" for Array[Int]).

For NullType and NothingType, the char codes are 'N' and 'E', respectively.

The display name of this primitive type.

The display name of this primitive type.

For all primitive types except NullType and NothingType, this is specified by the IR spec in the sense that it is the result of classOf[Prim].getName().

For NullType and NothingType, the names are "null" and "nothing", respectively.