We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
undefined
It may require some value restructure to make undefined/void 0 equal to 0u64. For example,
value
void 0
0u64
tag = 0b0000_0000_0000_0 is an extension:
tag = 0b0000_0000_0000_0
v = 0b000_0..0
v = 0b010_0..X
bool
v = 0b100_X..X
object
v = 0b101_X..X
array
v = 0b110_X..X
string
v = 0b111_X..X
bigint
If tag != 0b0000_0000_0000_0 then return bitwise not of value as f64: Number(f64.from_bits(!value))
tag != 0b0000_0000_0000_0
f64
Number(f64.from_bits(!value))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It may require some
value
restructure to makeundefined
/void 0
equal to0u64
. For example,tag = 0b0000_0000_0000_0
is an extension:v = 0b000_0..0
isundefined
v = 0b010_0..X
isbool
v = 0b100_X..X
isobject
v = 0b101_X..X
isarray
v = 0b110_X..X
isstring
v = 0b111_X..X
isbigint
If
tag != 0b0000_0000_0000_0
then return bitwise not ofvalue
asf64
:Number(f64.from_bits(!value))
The text was updated successfully, but these errors were encountered: