Type System
Types are blueprints which are used to create values for bindings. They determine a set of possible values that can be assigned to bindings of that types.
Types can be basic (integer number, character, ...) or compound (sequence, map, struct, union).
Type name resolution
Order of search to resolve a type name to its declaration:
Current function
Closure
Module level
At any level, if there are multiple candidates there will be a compiler error.
Two named types are never equal.
Two types T1 and T2 are identical/assignable/exchangeable if they have the same structure (e.g.
int|string
vsint|string
).
Named Types
You can name a type so you will be able to refer to that type later in the code.
Type names must start with a capital letter to be distinguished from bindings.
You define a named type similar to a binding:
NewType = UnderlyingType
.The new type has same binary representation as the underlying type but it will be treated as a completely different type.
Examples
Type Alias
You can use
T : X
notation to defineT
as another spelling for typeX
.In this case,
T
andX
will be exactly the same thing.You can use a type alias to prevent name conflict when importing modules.
X
on the right must be a type name. It cannot be definition of a type.
Examples
Type Casting
We use
T(value)
notation to cast value to a specific type.Casting can be done for primitive types, named types or unions.
Literals (e.g.
1
or"Hello world"
) will get value of the most primitive type inferred by the compiler (int
,string
, ...).Based on previous point, you cannot assign an untyped literal to a named type without casting. Because for example
1
literal is anint
literal not a named type that maps toint
.
Examples
Last updated
Was this helpful?