A declared type such as String or Listing<String>.
String
Listing<String>
Use DeclaredType() to create an instance of this class. For common standard library classes, this module offers predefined type mirrors (intType, stringType, listType, etc.).
DeclaredType()
intType
stringType
listType
If this type's referent has type parameters, the corresponding typeArguments default to unknownType. To override this default, use withTypeArgument() or withTypeArguments().
referent
typeArguments
unknownType
withTypeArgument()
withTypeArguments()
Examples:
import "pkl:reflect" class Person pigeon: Person people: List<Person> personClass = reflect.Class(Person) personType = reflect.DeclaredType(personClass) reflect.Module(this).properties["pigeon"].type == personType reflect.Module(this).properties["people"].type == listType.withTypeArgument(personType)
The corresponding nullable type, or this if this is already a nullable type.
this
The type declaration that this type refers to.
The type arguments of this type.
Returns the class of this.
Returns a string representation of this.
This method is used to convert the values of string interpolation expressions to strings.
Returns this |> transform if this is non-null, and null otherwise.
this |> transform
null
This method is the complement of the ?? operator and the equivalent of an Option type's map and flatMap methods.
??
Option
map
flatMap
Tells if this object has a property with the given name.
name
Returns the value of the property with the given name.
Throws if a property with this name does not exist.
Returns null if a property with this name does not exist.
Converts this object to a Dynamic object.
Dynamic
Converts this object to a Map.
Map
Returns a declared type with the same referent and the given typeArgument.
typeArgument
Returns a declared type with the same referent and the given typeArguments.
A declared type such as
String
orListing<String>
.