chickadee » srfi-207 » bytestring->list

bytestring->list bytevector #!optional start endprocedure

Converts all or part of bytevector into a list of the same length containing characters for elements in the range 32 to 127 and exact integers for all other elements.

(bytestring->list #u8(#x41 #x42 1 2) 1 3) ⇒ (#\B 1)