Efficient
(base64-revappend-encode x acc) → *
We leave this enabled; it would be odd to reason about it.
Function:
(defun base64-revappend-encode (x acc) (declare (xargs :guard (stringp x))) (declare (type string x)) (let ((acl2::__function__ 'base64-revappend-encode)) (declare (ignorable acl2::__function__)) (mbe :logic (revappend-chars (base64-encode x) acc) :exec (b64-encode-str-impl x 0 (length x) acc))))