As of AssemblyScript 0.18.x, primitive number types in AssemblyScript can't be in an union type e.g string | null works, but not i32 | null Thus, this is just a wrapper class around AssemblyScript primitives to allow us to return nullable values.
string | null
i32 | null
Generated using TypeDoc
As of AssemblyScript 0.18.x, primitive number types in AssemblyScript can't be in an union type e.g
string | null
works, but noti32 | null
Thus, this is just a wrapper class around AssemblyScript primitives to allow us to return nullable values.