Search Results

12
votes

Does any Common Lisp function return 3 values?

Yes, such functions exist. Here is the complete list of functions in the COMMON-LISP package that return exactly three values, as declared in SBCL source code: COMPILE …
6
votes

How to convert byte array to string in Common Lisp?

There are two portable libraries for this conversion: flexi-streams, already mentioned in another answer. This library is older and has more features, in particular the ext …
3
votes

How can I reuse a gethash lookup in Common Lisp?

Don't do anything special, because the implementation does it for you. Of course, this approach is implementation-specific, and hash table performance varies between implementations. (But …
1
vote

How do I iterate through a directory in Common Lisp?

The modern Common Lisp library implementing directory listing is IOLIB. It works like this: CL-USER> (i …