shadow:standard@CanEqual<boolean>
immutable locked class boolean
Class boolean contains the methods that can be called on boolean values.
| Modifiers | Return Types | Method and Description |
|---|---|---|
public |
() |
create() |
| Modifiers | Return Types | Method and Description |
|---|---|---|
public |
() |
destroy() |
| 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 |
public readonly locked |
(boolean) |
not()Returns the negation of the current |
public readonly locked |
(String) |
toString()Returns a |
public create() => ()
public destroy() => ()
public readonly copy(AddressMap addresses) => (boolean)
public readonly locked equal(boolean other) => (boolean)
Compares the current value to another boolean, returning true if they are the same.
other - value to compare to
true if identical
public readonly locked not() => (boolean)
Returns the negation of the current boolean value.
negated value
public readonly locked toString() => (String)
Returns a String representation of the boolean value.
"true" or "false"