Difference between revisions of "ObjectType:boolptr"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 9: Line 9:
 
== Methods ==
 
== Methods ==
 
''(none)''
 
''(none)''
 
== Inherits ==
 
* [[ObjectType:bool|bool]]
 
 
== Returns ==
 
'''TRUE''' or '''FALSE'''
 
  
 
== Examples ==
 
== Examples ==
 
===Display a boolean pointers memory address===
 
===Display a boolean pointers memory address===
 
echo Memory Address: ${Point1.Address}
 
echo Memory Address: ${Point1.Address}
 
== Operates On ==
 
<tt>bool *</tt>
 
  
 
== See Also ==
 
== See Also ==
 
{{LavishScript:ObjectType}}
 
{{LavishScript:ObjectType}}

Revision as of 15:51, 8 July 2018

Object Type Vitals
boolptr
Defined By LavishScript
Inherits none
Reduces To TRUE or FALSE
Variable Object Type none
Uses Sub-Types no
C/C++ Type bool *

Description

A boolptr is simply a pointer to a bool. The type inherits bool, and can be used as if it were a bool.

Members

  • int64 Address: The memory address of the actual boolean value

Methods

(none)

Examples

Display a boolean pointers memory address

echo Memory Address: ${Point1.Address}

See Also

LavishScript Object Types