Section 5: Declarations
5.0 Evaluated declarations
Evaluated declarations are actually inline expressions, which can be created using the following grammar:
=
expr
Not only that, the value of the evaluated expressions will also be shown on STDOUT. However, evaluated declarations will only be evaluated if they are written in the entry file, except for module imports.
For example, if we interpret the following Keli program,we shall see 120
on STDOUT.
5.1 Constant declarations
Constant declarations are useful for defining common constants such as the value of pi, e, etc. They can be declared using the following grammar:
constId
=
expr
For example,
Once a constant is declared, it can be accessible anywhere within the same module (or those which imported it).
Constants cannot be reassign new values, thus the following is erroneous:
5.2 Function declarations
There are two kinds of function in Keli, namely unifunc and polyfunc.
5.2.1 Unifunc declarations
Unifunc can be created using the following grammar:
unifuncSignature
=
expr
where:
unifuncSignature =
(
paramId **typeAnnotation)
**.
funcId [|
returnTypeAnnotation ]
For example,
In the code above, the first this
is the parameter for the function square
, where this
should be type of Int
. The body of this function is this.*(this)
, while the return type of this function is also Int
.
Return type annotation for functions are optional (since it can be inferred), so the square
function can be rewritten as :
5.2.2 Polyfunc declarations
Polyfunc can be created using the following grammar:
polyfuncSignature
=
expr
where
polyfuncSignature =
(
paramId typeAnnotation **)
.
{ funcId **(
paramId typeAnnotation **)
} [|
returnTypeAnnotation ]=
For examples:
Same as unifunc, the return type annotation of polyfunc declaration is also optional.
5.2.3 Multiple dispatch
Keli supports multiple dispatch (a.k.a function overloading), thus it is possible to declare multiple function that have the same set of identifiers as long as their parameters type does not fully match.
For example, the following Keli code is valid:
Moreover, functions with overlapping identifiers are also permitted:
The following code is invalid, although the parameters name are different:
Also, Keli does not supports multiple dispatch based on return types, so the following code is invalid despite different return types:
5.2.4 Generic functions
Generic functions are functions whose parameters type are generic. We can declare generic functions using the following grammar:
{
{
typeVarId typeConstraint}
} ( unifuncDecl|
polyfuncDecl )
typeVarId is any valid identifiers, while typeConstraint is any valid constraint expressions.
For example, the identity function can be defined as such:
In the code above, T
is the type variable identifier, while Any
is the constraint on T
, Any
also means no constraint.
The type variable T
is inferred using some sort of Hindley-Milner type inference system.
For example,
Generic function by itself is not too useful unless incorporated with generic types such as generic objects or generic tagged union.
5.2.5 Function specialization
Function specialization is a phenomenon where multiple dispatch and generic functions are used in synergy. This feature allows a function to be specialized when specified, and generic when unspecified.
Although normal user will rarely utilize this feature, it is crucial for library author to write generic modules.
A common example is the toString
function. It is a generic function, however, it may be specialized, as such:
5.2.6 Docstring
Documentation for functions can be created using string expressions instead of comments. They can optionally appear:
before the function declaration
after each parameter
after return type annotation
For example,
5.3 Object type alias
Object type alias (a.k.a struct types) can be created using the following grammar:
typeAliasId =
objectTypeAnnotation
For example,
Object type alias can be used as type annotations, for example,
Moreover, it can also be used as object constructor, as follows:
5.4 Tagged unions declaration
Tagged unions (a.k.a discriminated unions OR sum types) is consists of one or more tags connected together by the .or
function.
5.4.1 Tag
There are two kinds of tag, namely carryless tag and carryful tag.
5.4.1.1 Carryless Tag
Carryless tag are tags that does not carry any payload with them (like enums in C or Java). They can be created using the following grammar:
tagId
tagId are constant identifiers that follows the the PascalCase
naming convention.
Example of carryless tags (note that the following piece of code is invalid, it's just for demonstration purpose):
5.4.1.2 Carryful tag
Carryful tag are tags that carry some specific payload. They can be created using the following grammar:
tagId
(
typeAnnotation)
Example of carryful tags:
5.4.2 Unions
Tag by themselves are not useful unless they are associated with a union. A union can be created using the following grammar:
unionId should follow the PascalCase
convention. tagDecl is either a carryless tag or a carryful tag.
For example,
unionId can be used as tag constructor prefix or type annotation.
5.4.3 Union name as tag constructor prefix
For example, we can use the identifier Shape
to create carryless tag and carryful tag.
The type of x
and y
are both Shape
.
5.4.4 Union name as type annotation
For example, we can use the identifier Color
as function parameter type annotation.
5.5 Type constructor declarations
Type constructors (a.k.a generic types) are actually function that takes one or more types and return a new type. In Keli, there are 2 kinds of type constructor, namely object type constructor and tagged union type constructor.
5.5.1 Object type constructor
Object type constructor can be declared using the following grammar:
typeConstructorId
.
{ id(
typeVarId typeConstraint)
**}=
objectTypeAnnotation
For example, we can encode the tuple type as object type constructor as follows:
In the code above, Tuple
is the type constructor identifier, and it serves two purpose:
For constructing new
Tuple
To be used as type annotation.
To construct a new Tuple
:
myTuple
will be inferred to have the type Tuple.fst(String) snd(Int)
.
To used Tuple
as type annotation:
5.5.2 Tagged union type constructor
Tagged union type constructor (a.k.a generic tagged union can be constructed using the following grammar:
constId
.
{ constId(
typeVarId typeConstraint)
**}=
choice
{**.
tagDecl)
}
For example, singly linked list can be defined as such:
The identifier List
can be used as:
Tag constructor prefix
Type annotation
Using List
as tag constructor prefix:
The type of x
is List.of(A)
where the type of y
is List.of(Int)
. Due to the type inference, the following expression is invalid:
Using List
as type annotation:
5.6 Interface declarations
Interface are a kind of type constraint that allow user to define a set of functions on a specific type.
To define an interface in Keli, there are 3 steps required:
Define the name of the interface.
Define a set of functions required by the interface.
Define a set of default functions for the interface.
5.6.1 Defining interface
Interface can be defined using the following grammar:
interfaceId
=
**interface
Note that interface identifier should follow PascalCase
convention.
For example,
5.6.2 Defining required functions
Required function can be defined using the following grammar:
{
{
typeVarId interfaceId}
funcSignature=
required
**}
where funcSignature is either a unifuncSignature or _[_polyfuncSignature](section-5-declarations.md#5-2-2-polyfunc-declarations).
Alert
To defined required function, the return type annotation cannot be omitted like usual functions do.
For example, the code below is saying that if a data type is Comparable
, then it must have the ==
function and >
function defined.
Note
The set of required functions can only be defined within the module where the interface name is defined.
5.6.3 Interface usage
Unlike object-oriented languages, where interface identifiers can be used as type annotation, interface identifier can only be used as type constraint annotations. Thus, they can only appear in generic functions or generic types.
For example,
5.6.4 Interface implementation
No special construct is needed to implement an interface, we just need to declare the required function by the interface for the specified data type.
Last updated