From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: f4fd2,23202754c9ce78dd X-Google-Attributes: gidf4fd2,public X-Google-Thread: fac41,15edb893ef79e231 X-Google-Attributes: gidfac41,public X-Google-Thread: 103376,15edb893ef79e231 X-Google-Attributes: gid103376,public X-Google-Thread: 114809,15edb893ef79e231 X-Google-Attributes: gid114809,public X-Google-ArrivalTime: 2002-01-21 21:35:26 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: raffael@mediaone.net (Raffael Cavallaro) Newsgroups: comp.lang.lisp,comp.lang.ada,comp.lang.eiffel,comp.lang.smalltalk Subject: Re: True faiths ( was Re: The true faith ) Date: 21 Jan 2002 21:35:26 -0800 Organization: http://groups.google.com/ Message-ID: References: <76be8851.0201101909.9db0718@posting.google.com> <9jtu3u8cq92b05j47uat3412tok6hqu1ki@4ax.com> <3C3F8689.377A9F0F@brising.com> <3219936759616091@naggum.net> <3C483CE7.D61D1BF@removeme.gst.com> <3C4863C5.6040406@mail.com> <3C48AE35.BA38ED04@adaworks.com> <3C4A58B8.10304@mail.com> <3C4B720F.F77B2552@adaworks.com> <3C4BE556.7040707@mail.com> NNTP-Posting-Host: 65.96.132.93 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1011677726 32552 127.0.0.1 (22 Jan 2002 05:35:26 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 22 Jan 2002 05:35:26 GMT Xref: archiver1.google.com comp.lang.lisp:24922 comp.lang.ada:19162 comp.lang.eiffel:5490 comp.lang.smalltalk:18401 Date: 2002-01-22T05:35:26+00:00 List-Id: Hyman Rosen wrote in message news:<3C4BE556.7040707@mail.com>... > Well, the normal semantics of a copy are that the source and destination > are not tied to each other after the copy is made. Of course, internally > that might not be true, because you could be maintaining reference > counts, and doing copy-on-write. You would place all that information > into the routine name? Why not? clone (returns a deep copy, with no references to original) link (shallow copy - just another reference to the original) clone-on-write (what it suggests - starts as a "link," but becomes a "clone" when a client attempts to write to it.)