Re: sanity check (coding style)




josephoswaldgg@xxxxxxxxxxx wrote:

> You could also do something like,
>
> (defun digest2string (v)
> (let ((*print-base* 16))
> (with-output-to-string (s)
> (map nil #'(lambda (e) (princ e s)) v)
> s)))


This of course has the same problem with non-two-digit vector elements
that Pascal Bourguignon pointed out on another example using format
"~x".

Ugh.

.