Skip to content
This repository has been archived by the owner on Aug 23, 2018. It is now read-only.

Commit

Permalink
Wrap bitwise like the rest of native
Browse files Browse the repository at this point in the history
  • Loading branch information
eeue56 committed Apr 27, 2016
1 parent ac32a3d commit d597bdb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Native/Bitwise.js
@@ -1,3 +1,4 @@
var _elm_lang$core$Native_Bitwise = function() {

return {
and: F2(function and(a, b) { return a & b; }),
Expand All @@ -7,4 +8,6 @@ return {
shiftLeft: F2(function sll(a, offset) { return a << offset; }),
shiftRightArithmatic: F2(function sra(a, offset) { return a >> offset; }),
shiftRightLogical: F2(function srl(a, offset) { return a >>> offset; })
};
};

}();

0 comments on commit d597bdb

Please sign in to comment.