UIntLiteral

class UIntLiteral(value: UInt) : Literal<UInt>

Represents a 32-bit unsigned UInt literal in a KQLite query.

This class is used for UInt values. Since SQLite does not have a native unsigned integer type, KQLite stores these values in a standard 64-bit INTEGER column, which is large enough to hold any 32-bit unsigned value without data loss.

Author

MOHAMMAD AZIM ANSARI

Parameters

value

The UInt value of this literal.

Constructors

Link copied to clipboard
constructor(value: UInt)