Difference between revisions of "ObjectType:int64"

From Lavish Software Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 
== Description ==
 
== Description ==
Short for <tt>integer</tt>, an int64 is a whole number that can be represented in 64 bits.  This datatype is limited to the numbers -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807.  For comparison, the United States National Debt is 8,816,293,173,064.11 (as of May '07)... so it can hold the entire [http://www.treasurydirect.gov/NP/BPDLogin?application=np US National Debt]... for now.
+
Short for <tt>integer</tt>, an int64 is a whole number that can be represented in 64 bits.  This datatype is limited to the numbers -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 (nine quintillion).  For comparison, the United States National Debt is 8,816,293,173,064.11 (8 trillion) -as of May '07... so it can hold the entire [http://www.treasurydirect.gov/NP/BPDLogin?application=np US National Debt]... for now.
  
 
== Members ==
 
== Members ==

Revision as of 09:12, 14 May 2008

Description

Short for integer, an int64 is a whole number that can be represented in 64 bits. This datatype is limited to the numbers -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807 (nine quintillion). For comparison, the United States National Debt is 8,816,293,173,064.11 (8 trillion) -as of May '07... so it can hold the entire US National Debt... for now.

Members

  • float Float: This number, converted to a float (NOTE: Float is only accurate to 32 bits of precision)
  • string Hex: A hexadecimal string equivalent to this number
  • string LeadingZeroes[#]: A string representation of this number, with at least this many decimal places. The number will be lead with zeroes to reach the desired length

Methods

  • Inc: Increments this int64 by 1
  • Inc[formula]: Increments this int64 by a given amount
  • Dec: Decrements this int64 by 1
  • Dec[formula]: Decrements this int64 by a given amount
  • Set[formula]: Sets this int64 to a given value

Returns

The string representation of this number

Examples

Declare an int64

  • declare Count int64 37

Set an int64's value

  • Count:Set[37430]

Add two integers

  • Total:Set[${Total}+${Current}]

Increment an int64

  • Count:Inc

Decrement an int64

  • Count:Dec

Operates On

__int64 *

See Also