Dynamic type name information.
Types with an instance of TypeName
can be stored in an Dynamic
.
The type class contains the declaration name of the type,
which must not have any universe parameters
and be of type Sort ..
(i.e., monomorphic).
The preferred way to declare instances of this type is using the derive
handler, which will internally use the unsafe TypeName.mk
function.
Morally, this is the same as:
class TypeName (α : Type) where unsafe mk ::
typeName : Name
- mk' :: (
- data : (TypeNameData α).type
- )
Instances
@[implemented_by _private.Init.Dynamic.0.TypeName.typeNameImpl]
Returns a declaration name of the type.
@[implemented_by _private.Init.Dynamic.0.Dynamic.typeNameImpl]
The name of the type of the value stored in the Dynamic
.
@[implemented_by _private.Init.Dynamic.0.Dynamic.mkImpl]