Re: [Haskell-cafe] Re: Large data structures

2006-12-12 Thread Alex Queiroz
Hallo, On 12/12/06, Benjamin Franksen <[EMAIL PROTECTED]> wrote: Alex Queiroz wrote: > On 12/11/06, Stefan O'Rear <[EMAIL PROTECTED]> wrote: >> No. Haskell's lists are linked lists, enlarge creates a single new link >> without modifying (and copying) the original. > Thanks. Is there a way

[Haskell-cafe] Re: Large data structures

2006-12-11 Thread Benjamin Franksen
Alex Queiroz wrote: > On 12/11/06, Stefan O'Rear <[EMAIL PROTECTED]> wrote: >> No. Haskell's lists are linked lists, enlarge creates a single new link >> without modifying (and copying) the original. > Thanks. Is there a way to mimic this behaviour with my own code? It is the default for any