Skip to content

Commit 5129c33

Browse files
author
github-actions[bot]
committed
Update API docs for v12.0.0-rc.2
1 parent 69e412a commit 5129c33

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

data/api/v12.0.0/stdlib.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11435,7 +11435,7 @@
1143511435
"kind": "value",
1143611436
"name": "land",
1143711437
"docstrings": [
11438-
"`land(a, b)` calculates the bitwise AND of two bigints.\n\n**Deprecated:** Use `&` operator or `bitwiseAnd` instead.\n\n## Examples\n\n```rescript\nBigInt.land(7n, 4n) == 4n\n```"
11438+
"`land(a, b)` calculates the bitwise AND of two bigints.\n\n**Deprecated:** Use `&&&` operator or `bitwiseAnd` instead.\n\n## Examples\n\n```rescript\nBigInt.land(7n, 4n) == 4n\n```"
1143911439
],
1144011440
"signature": "let land: (bigint, bigint) => bigint",
1144111441
"deprecated": ""
@@ -11445,7 +11445,7 @@
1144511445
"kind": "value",
1144611446
"name": "lor",
1144711447
"docstrings": [
11448-
"`lor(a, b)` calculates the bitwise OR of two bigints.\n\n**Deprecated:** Use `bitwiseOr` instead.\n\n## Examples\n\n```rescript\nBigInt.lor(7n, 4n) == 7n\n```"
11448+
"`lor(a, b)` calculates the bitwise OR of two bigints.\n\n**Deprecated:** Use `|||` operator or `bitwiseOr` instead.\n\n## Examples\n\n```rescript\nBigInt.lor(7n, 4n) == 7n\n```"
1144911449
],
1145011450
"signature": "let lor: (bigint, bigint) => bigint",
1145111451
"deprecated": ""
@@ -11455,7 +11455,7 @@
1145511455
"kind": "value",
1145611456
"name": "lxor",
1145711457
"docstrings": [
11458-
"`lxor(a, b)` calculates the bitwise XOR of two bigints.\n\n**Deprecated:** Use `^` operator or `bitwiseXor` instead.\n\n## Examples\n\n```rescript\nBigInt.lxor(7n, 4n) == 3n\n```"
11458+
"`lxor(a, b)` calculates the bitwise XOR of two bigints.\n\n**Deprecated:** Use `^^^` operator or `bitwiseXor` instead.\n\n## Examples\n\n```rescript\nBigInt.lxor(7n, 4n) == 3n\n```"
1145911459
],
1146011460
"signature": "let lxor: (bigint, bigint) => bigint",
1146111461
"deprecated": ""
@@ -11465,7 +11465,7 @@
1146511465
"kind": "value",
1146611466
"name": "lnot",
1146711467
"docstrings": [
11468-
"`lnot(bigint)` calculates the bitwise NOT of a bigint.\n\n**Deprecated:** Use `~` operator or `bitwiseNot` instead.\n\n## Examples\n\n```rescript\nBigInt.lnot(2n) == -3n\n```"
11468+
"`lnot(bigint)` calculates the bitwise NOT of a bigint.\n\n**Deprecated:** Use `~~~` operator or `bitwiseNot` instead.\n\n## Examples\n\n```rescript\nBigInt.lnot(2n) == -3n\n```"
1146911469
],
1147011470
"signature": "let lnot: bigint => bigint",
1147111471
"deprecated": ""

0 commit comments

Comments
 (0)