Skip to content

Commit

Permalink
Remove incorrect asr binding and add lsr
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Mar 17, 2024
1 parent 6d2d3d8 commit 1b332fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core__BigInt.res
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ external lor: (t, t) => t = "%orint"
external lxor: (t, t) => t = "%xorint"

external lsl: (t, t) => t = "%lslint"
external asr: (t, t) => t = "%asrint"
external lsr: (t, t) => t = "%lsrint"

let exp = (x: t, y: t) => {
let _ = x
Expand Down

0 comments on commit 1b332fa

Please sign in to comment.