Integer

data class Integer(string: String, value: Long, radix: Int, isLong: Boolean) : LexicalNumber

Read number is an integer.

Constructors

Integer
Link copied to clipboard
common
fun Integer(string: String, value: Long, radix: Int = 10, isLong: Boolean = false)

Properties

isLong
Link copied to clipboard
common
val isLong: Boolean = false
radix
Link copied to clipboard
common
val radix: Int = 10
string
Link copied to clipboard
common
open override val string: String
The original string value of the number.
value
Link copied to clipboard
common
val value: Long