Class monkey.boxes.BoolObject - leonard-thieu/monkey GitHub Wiki
The BoolObject box class can be used to encapsulate an bool value inside an object.
Equals : Bool ( box:BoolObject )
ToBool : Bool ()
The BoolObject box class can be used to encapsulate an bool value inside an object.
Creates a new BoolObject that contains the value false.
Method New ( value:Bool )
Creates a new BoolObject with the given value.
Method Equals : Bool ( box:BoolObject )
Returns 'true' if the value contained in the BoolObject equals the value contained in box.
Method ToBool : Bool ()
Returns the bool value contained in the BoolObject.