Difference between revisions of "ObjectType:byteptr"

From Lavish Software Wiki
Jump to navigation Jump to search
m (Lax moved page DataType:byteptr to ObjectType:byteptr)
 
Line 1: Line 1:
 +
{{ObjectType-Vitals|byteptr|[[LavishScript]]|[[ObjectType:byte|byte]]|The string represenation of this byte|none|no|unsigned char *}}
 +
 
== Description ==
 
== Description ==
A [[DataType:byteptr|byteptr]] is simply a <tt>pointer</tt> to a [[DataType:byte|byte]].  The type inherits [[DataType:byte|byte]], and can be used as if it ''were'' a [[DataType:byte|byte]].
+
A [[ObjectType:byteptr|byteptr]] is simply a <tt>pointer</tt> to a [[ObjectType:byte|byte]].  The type inherits [[ObjectType:byte|byte]], and can be used as if it ''were'' a [[ObjectType:byte|byte]].
  
 
== Members ==
 
== Members ==
* [[DataType:byte|byte]] '''Address''': The memory address of the actual byte
+
* [[ObjectType:int64|int64]] '''Address''': The memory address of the actual byte
  
 
== Methods ==
 
== Methods ==
 
''(none)''
 
''(none)''
  
== Inherits ==
 
* [[DataType:byte|byte]]
 
 
== Returns ==
 
The string representation of this byte
 
  
 
== Examples ==
 
== Examples ==
 
===Display a byte pointers address===
 
===Display a byte pointers address===
 
*echo Memory Address: ${Point1.Address}
 
*echo Memory Address: ${Point1.Address}
 
== Operates On ==
 
<tt>unsigned char *</tt>
 
  
 
== See Also ==
 
== See Also ==
* [[LavishScript:Data Types|Data Types]]
+
{{LavishScript:ObjectType}}
 
 
[[Category:LavishScript]]
 
[[Category:LavishScript Data Types]]
 

Latest revision as of 15:53, 8 July 2018

Object Type Vitals
byteptr
Defined By LavishScript
Inherits byte
Reduces To The string represenation of this byte
Variable Object Type none
Uses Sub-Types no
C/C++ Type unsigned char *

Description

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

Members

  • int64 Address: The memory address of the actual byte

Methods

(none)


Examples

Display a byte pointers address

  • echo Memory Address: ${Point1.Address}

See Also

LavishScript Object Types