chickadee » generalized-arrays » array-write

array-write #!optional portprocedure

Writes an array (similar to write) to the provided port, or (current-output-port) if port is not specified. The array is written out using the optional reader syntax provided with this library:

 
;; #a for array
;; 2 for rank 2
;; v for vector-storage-class (short-id of the storage-class)
#a2v((1 2 3)
     (4 5 6)
     (7 8 9))