Skip to content

Commit

Permalink
Merge pull request #5845 from MaryamZi/add-singleton-type-bbe
Browse files Browse the repository at this point in the history
Add a BBE for singleton types
  • Loading branch information
MaryamZi authored Nov 25, 2024
2 parents c03f939 + d644a88 commit ff4b90c
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 0 deletions.
7 changes: 7 additions & 0 deletions examples/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,13 @@
"verifyOutput": true,
"isLearnByExample": true
},
{
"name": "Singleton types",
"url": "singleton-types",
"verifyBuild": true,
"verifyOutput": true,
"isLearnByExample": true
},
{
"name": "Stream type",
"url": "stream-type",
Expand Down
64 changes: 64 additions & 0 deletions examples/singleton-types/singleton_types.bal
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
import ballerina/io;

// The `SwitchStatus` type is a union type of two singleton types
// defined using string literals, which are simple constant expressions.
type SwitchStatus "on"|"off";

// The `shouldToggleSwitch` function has two parameters of the `SwitchStatus` type,
// restricting the arguments to be either "on" or "off". Trying to pass as an argument
// a value that cannot be guaranteed to be either "on" or "off" will result
// in a compile-time error.
function shouldToggleSwitch(SwitchStatus currentStatus, SwitchStatus newStatus)
returns boolean {
return currentStatus != newStatus;
}

// The type of the `STATUS_OFF` constant is the singleton type containing only
// the "off" value.
const STATUS_OFF = "off";

// The type of the `DEFAULT_CONFIG` constant is the singleton type containing only
// an immutable mapping value with exactly two fields: a `name` field with the value
// "default" and a `status` field with the value "off".
const DEFAULT_CONFIG = {
name: "default",
status: STATUS_OFF
};

public function main() {
// The `shouldToggleSwitch` function can be called only with "on" or "off" as arguments.
boolean b1 = shouldToggleSwitch("on", "off");
io:println(b1);

// The type of `arg1` is the singleton type containing only the "off" value.
"off" arg1 = "off";

// A constant can be used as a singleton type.
// The type of `arg2` is also the singleton type containing only the "off" value.
// On the left-hand side, `STATUS_OFF` is used as a type.
// On the right-hand side, `STATUS_OFF` is used as a value.
STATUS_OFF arg2 = STATUS_OFF;

boolean b2 = shouldToggleSwitch(arg1, arg2);
io:println(b2);

// An immutable mapping value that has exactly the same fields as the
// `DEFAULT_CONFIG` constant.
map<json> & readonly mv1 = {
name: "default",
status: "off"
};

// An immutable mapping value that is not the same as the `DEFAULT_CONFIG`
// value since it has "on" as the value for the `status` field.
map<json> & readonly mv2 = {
name: "default",
status: "on"
};

// The `DEFAULT_CONFIG` constant is used as a type in the `is` check.
// Since it is a singleton type, the `is` check will evaluate to true
// only for an immutable value that has exactly the same fields.
io:println(mv1 is DEFAULT_CONFIG);
io:println(mv2 is DEFAULT_CONFIG);
}
19 changes: 19 additions & 0 deletions examples/singleton-types/singleton_types.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Singleton types

A singleton type is a type that contains exactly one value. A singleton type is described using a compile-time constant expression.

When the simple constant expression is a variable reference to a structured value, the value will be an immutable value. Therefore, a mutable value will not belong to any singleton type.

Unions of singletons enable the definition of more refined types, constraining the value space to include exactly the allowed values, and thereby, removing the need for explicit validation.

The type of a constant is a singleton type and a constant can be used as a singleton type. Enumerations are shorthand for unions of
string constants, and therefore, the members of an enumeration can also be used as singleton types.

::: code singleton_types.bal :::

::: out singleton_types.out :::

## Related links
- [Constants](/learn/by-example/const-and-final/)
- [Enumerations](/learn/by-example/enumerations/)
- [Immutability](/learn/by-example/immutability/)
2 changes: 2 additions & 0 deletions examples/singleton-types/singleton_types.metatags
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
description: This BBE demonstrates singleton types in Ballerina.
keywords: ballerina, ballerina by example, bbe, singletons, singleton types
5 changes: 5 additions & 0 deletions examples/singleton-types/singleton_types.out
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$ bal run singleton_types.bal
true
false
true
false

0 comments on commit ff4b90c

Please sign in to comment.