ULong Literal
Represents a 64-bit unsigned ULong literal in a KQLite query.
This class is used for ULong values. While SQLite does not have a native unsigned integer type, it can store large unsigned 64-bit integers in a signed 64-bit INTEGER field if the value is within the signed range. For values larger than Long.MAX_VALUE, it gets overflow and stored as negative numbers. Reading it as Long and converting it back to ULong is handled by Kotlin standards.
Author
MOHAMMAD AZIM ANSARI
Parameters
value
The ULong value of this literal.