aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Byte.bruijn
diff options
context:
space:
mode:
authorMarvin Borner2022-08-19 11:47:12 +0200
committerMarvin Borner2022-08-19 11:47:12 +0200
commit867e968324d5f0e5f7ce3a33165b74affa07ab2b (patch)
tree482be76d291f8d39dbb9daf3e539a54c9944f477 /std/Byte.bruijn
parent5f13e286d83473e66634fa609c8440cf8d23c6c2 (diff)
General improvements
Diffstat (limited to 'std/Byte.bruijn')
-rw-r--r--std/Byte.bruijn12
1 files changed, 11 insertions, 1 deletions
diff --git a/std/Byte.bruijn b/std/Byte.bruijn
index 3dd8c63..8d75314 100644
--- a/std/Byte.bruijn
+++ b/std/Byte.bruijn
@@ -1,6 +1,6 @@
# MIT License, Copyright (c) 2022 Marvin Borner
-:import std/Combinator .
+:import std/Logic .
:import std/List .
@@ -10,5 +10,15 @@ b0 false
# bit 1
b1 true
+# returns true if two bytes are equal
+eq? &&( .. (zip-with xnor?)
+
+(=?) eq?
+
+:test ('a' =? 'a') (true)
+:test ('a' =? 'b') (false)
+
# generates a byte with correct endianness
byte [[[[[[[[0 : (1 : (2 : (3 : (4 : (5 : (6 : (7 : empty)))))))]]]]]]]]
+
+:test (byte b0 b1 b1 b0 b0 b0 b0 b1) ('a')