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 cf1d216 commit 5844371Copy full SHA for 5844371
qbase64.lisp
@@ -58,10 +58,11 @@
58
(end1 (length bytes))
59
(start2 0)
60
(end2 (length string)))
61
- (((bytes (simple-array (unsigned-byte 8))) (string simple-string))
+ (((bytes (simple-array (unsigned-byte 8))) (string simple-base-string))
62
+ ((bytes (simple-array (unsigned-byte 8))) (string simple-string))
63
((bytes (simple-array (unsigned-byte 8))) (string string))
- ((bytes (array (unsigned-byte 8))) (string string))
64
- ((bytes (array (unsigned-byte 8))) (string simple-string))
+ ((bytes array) (string simple-base-string))
65
+ ((bytes array) (string simple-string))
66
((bytes array) (string string)))
67
(declare (type scheme scheme))
68
(declare (type positive-fixnum start1 end1 start2 end2))
0 commit comments