Int

data class Int(val value: Long) : Entry

A 64-bit integer (i…e).

Constructors

Link copied to clipboard
constructor(value: Long)

Properties

Link copied to clipboard
val value: Long

Functions

Link copied to clipboard
Link copied to clipboard
fun findKey(key: String): Entry?

Dictionary lookup; returns null if this isn't a dict or the key is absent.

Link copied to clipboard
operator fun get(key: String): Entry

Dictionary index/insert. Throws if this entry is not a dict.

Link copied to clipboard
fun integer(): Long
Link copied to clipboard
Link copied to clipboard
operator fun set(key: String, value: Entry)
Link copied to clipboard
fun string(): String
Link copied to clipboard