shadow:standard

Class boolean

Parent class

shadow:standard@Object

Interfaces

shadow:standard@CanEqual<boolean>

immutable locked class boolean

Class boolean contains the methods that can be called on boolean values.

Create Summary

Modifiers Return Types Method and Description
public () create()

Destroy Summary

Modifiers Return Types Method and Description
public () destroy()

Method Summary

Modifiers Return Types Method and Description
public readonly (boolean) copy(AddressMap addresses)
public readonly locked (boolean) equal(boolean other)

Compares the current value to another boolean, returning true if they are the same.

public readonly locked (boolean) not()

Returns the negation of the current boolean value.

public readonly locked (String) toString()

Returns a String representation of the boolean value.

Create Detail

create

public create() => ()

Destroy Detail

destroy

public destroy() => ()

Method Detail

copy

public readonly copy(AddressMap addresses) => (boolean)

equal

public readonly locked equal(boolean other) => (boolean)

Compares the current value to another boolean, returning true if they are the same.

Parameters

other - value to compare to

Returns

true if identical

not

public readonly locked not() => (boolean)

Returns the negation of the current boolean value.

Returns

negated value

toString

public readonly locked toString() => (String)

Returns a String representation of the boolean value.

Returns

"true" or "false"