Difference between revisions of "ObjectType:bool"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 19: Line 19:
 
===Toggle a boolean value===
 
===Toggle a boolean value===
 
*Boo1:Toggle
 
*Boo1:Toggle
 +
 +
== Operates On ==
 +
<tt>bool</tt>
 +
 
== See Also ==
 
== See Also ==
 
* [[LavishScript:Data Types|Data Types]]
 
* [[LavishScript:Data Types|Data Types]]

Revision as of 22:00, 15 December 2005

Description

Short for boolean, a bool groups all numbers into exactly two categories, one called TRUE and one called FALSE. The TRUE category is made up of all numbers except for zero, and the FALSE category is made up of only zero.

Members

(none)

Methods

  • Toggle: Toggles between TRUE and FALSE
  • Set[formula]: Sets this bool to a specific value

Returns

TRUE or FALSE

Examples

Declare a boolean variable

  • declare Boo1 bool FALSE

Set a boolean value

  • Boo1:Set[TRUE]

Toggle a boolean value

  • Boo1:Toggle

Operates On

bool

See Also