Revert "lib: bitAnd, bitOr, bitXor"

This commit is contained in:
Profpatsch
2018-06-05 18:45:20 +02:00
parent 6842319f81
commit f98272d6e2
3 changed files with 4 additions and 62 deletions
-15
View File
@@ -45,21 +45,6 @@ runTests {
expected = true;
};
testBitAnd = {
expr = (bitAnd 3 10);
expected = 2;
};
testBitOr = {
expr = (bitOr 3 10);
expected = 11;
};
testBitXor = {
expr = (bitXor 3 10);
expected = 9;
};
# STRINGS
testConcatMapStrings = {