bool class
Description
Represents a Boolean value.
Notes
This class is a standard built-in class in the Rice language.
Instance that is created by declaration have been already initialized.
The initial value is false.
It can have a value of true or false.
fitter
Signature | Description |
bool() | Get a new instance of bool class with initial value. |
bool(bool) | Get a new instance of bool class with the same value as the argument. |
getter
setter
Signature | Description |
Value(bool) | This setter will change only the value without changing the reference value. |
method
Signature | Description |
Clone() | Gets a new instance with the same value as the calling instance. |
ToString() | Gets the string representation of the boolean value. |