We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6511e44 commit 01a2852Copy full SHA for 01a2852
experiments/idris/src/Fathom/Base.idr
@@ -52,20 +52,28 @@ public export
52
BitStream : Type
53
BitStream = Colist Bool
54
55
+%name BitStream stream
56
+
57
58
||| A possibly infinite stream of bytes
59
public export
60
ByteStream : Type
61
ByteStream = Colist Bits8
62
63
+%name ByteStream stream
64
65
66
||| A finite bit buffer
67
68
BitBuffer : Type
69
BitBuffer = List Bool
70
71
+%name BitBuffer buffer
72
73
74
||| A finite byte buffer
75
76
ByteBuffer : Type
77
ByteBuffer = List Bits8
78
79
+%name ByteBuffer buffer
0 commit comments