bool class : bool(bool) fitter
Description
Get a new instance of bool class with the same value as the argument.
Syntax
new bool(bool value)
Arguments
Class | Name | Description |
bool | value | The value that the new instance has. |
Return value
Class | Description |
bool | A new instance of bool class with specified value. |
Sample code
bool newBool = new bool(true);
Notes
None.
Links for reference
None.