-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5845 from MaryamZi/add-singleton-type-bbe
Add a BBE for singleton types
- Loading branch information
Showing
5 changed files
with
97 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$ bal run singleton_types.bal | ||
true | ||
false | ||
true | ||
false |