[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Physical Copy of a structure?
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
- Subject: Re: Physical Copy of a structure?
- From: gat@aig.jpl.nasa.gov (Erann Gat)
- Date: Wed, 10 Apr 1996 09:15:23 -0700 (PDT)
> How can i make a physical copy of a structure?
>
Use COPY-structure-name. In your case:
(setq other (copy-test one))
Look at section 19.5 in CLTL2 for more info.
E.