Legal Notice, Privacy Policy

Impressum, Datenschutzerklärung

Cerberus X Documentation

Class BoolObject

The BoolObject box class can be used to encapsulate an bool value inside an object. More...

Declarations

Fields
value : Bool The bool value contained in this BoolObject.
Constructors
New () Creates a new BoolObject that contains the value false.
New ( value:Bool ) Creates a new BoolObject with the given value.
Methods
Equals : Bool ( box:BoolObject ) Returns 'true' if the value contained in the BoolObject equals the value contained in box.
ToBool : Bool () Returns the bool value contained in the BoolObject.

Detailed Discussion

The BoolObject box class can be used to encapsulate an bool value inside an object.


Fields Documentation

Field value : Bool

The bool value contained in this BoolObject.


Constructors Documentation

Method New ()

Creates a new BoolObject that contains the value false.

Method New ( value:Bool )

Creates a new BoolObject with the given value.


Methods Documentation

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.