- reverse-list->string char-listprocedure
Semantically equivalent to (compose list->string reverse):
(reverse-list->string '(#\a #\B #\c)) ⇒ "cBa"
This is a common idiom in the epilogue of string-processing loops that accumulate their result using a list in reverse order. (See also string-concatenate-reverse for the "chunked" variant.)