Just curious whether thought was given to a "deep copy" function in the library. Apologies if I missed it. You know the kind...
(define (deep-copy o) (cond ((vector? o) (apply vector (map deep-copy (vector->list o))))) ;; etc. Best regards, John
_______________________________________________ r6rs-discuss mailing list [email protected] http://lists.r6rs.org/cgi-bin/mailman/listinfo/r6rs-discuss
