Expand description
Types of values.
Re-exports§
pub use self::TypeKind::*;
Enums§
- Type
Kind - The different kinds of types.
Functions§
- array_
ty - Create a array type.
size
is the number of elements in the array, andty
the type of each individual element. - entity_
ty - Create an entity type with the given input and output arguments.
- enum_ty
- Create an enum type of the requested size.
- func_ty
- Create a function type with the given arguments and return type.
- int_ty
- Create an integer type of the requested size.
- pointer_
ty - Create a pointer type with the requested data type.
- signal_
ty - Create a signal type with the requested data type.
- struct_
ty - Create a struct type.
fields
is an list of types, one for each field. - time_ty
- Create a time type.
- void_ty
- Create a void type.
Type Aliases§
- Type
- An LLHD type.