-
Notifications
You must be signed in to change notification settings - Fork 2
SteamWorks.BigIntConstructor
TheAce0296 edited this page Oct 23, 2022
·
1 revision
SteamWorksNamespace.BigIntConstructor
▸ BigIntConstructor(value): bigint
| Name | Type |
|---|---|
value |
string | number | bigint | boolean
|
bigint
node_modules/typescript/lib/lib.es2020.bigint.d.ts:124
• Readonly prototype: BigInt
node_modules/typescript/lib/lib.es2020.bigint.d.ts:125
▸ asIntN(bits, int): bigint
Interprets the low bits of a BigInt as a 2's-complement signed integer. All higher bits are discarded.
| Name | Type | Description |
|---|---|---|
bits |
number |
The number of low bits to use |
int |
bigint |
The BigInt whose bits to extract |
bigint
node_modules/typescript/lib/lib.es2020.bigint.d.ts:133
▸ asUintN(bits, int): bigint
Interprets the low bits of a BigInt as an unsigned integer. All higher bits are discarded.
| Name | Type | Description |
|---|---|---|
bits |
number |
The number of low bits to use |
int |
bigint |
The BigInt whose bits to extract |
bigint
node_modules/typescript/lib/lib.es2020.bigint.d.ts:140