diff options
Diffstat (limited to 'std/Byte.bruijn')
-rw-r--r-- | std/Byte.bruijn | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/std/Byte.bruijn b/std/Byte.bruijn deleted file mode 100644 index 8dcbb7b..0000000 --- a/std/Byte.bruijn +++ /dev/null @@ -1,24 +0,0 @@ -# MIT License, Copyright (c) 2022 Marvin Borner - -:import std/Logic . -:import std/Combinator . -:import std/List . - -# bit 0 -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') |