Re: [racket-users] Applying functions to mutable lists

2015-04-09 Thread Matthew Flatt
At Thu, 9 Apr 2015 08:22:12 -0700 (PDT), Jerry Jackson wrote: > The compatibility/mlist module has lots of support functions but I'd > like to be able to apply racket functions to the lists I've > constructed and I don't see any "mapply". I understand that the use > of mutable cons cells is discour

Re: [racket-users] Applying functions to mutable lists

2015-04-09 Thread Jerry Jackson
On Thursday, April 9, 2015 at 9:28:54 AM UTC-6, Justin Zamora wrote: > Why not use streams? http://docs.racket-lang.org/reference/streams.html > > Justin > > On Apr 9, 2015 11:22 AM, "Jerry Jackson" wrote: > Hello, > > > > I'm building a language with racket that includes lazy lists. I'm buil

Re: [racket-users] Applying functions to mutable lists

2015-04-09 Thread Justin Zamora
Why not use streams? http://docs.racket-lang.org/reference/streams.html Justin On Apr 9, 2015 11:22 AM, "Jerry Jackson" wrote: > Hello, > > I'm building a language with racket that includes lazy lists. I'm building > lazy lists with mcons cells. The compatibility/mlist module has lots of > suppo

[racket-users] Applying functions to mutable lists

2015-04-09 Thread Jerry Jackson
Hello, I'm building a language with racket that includes lazy lists. I'm building lazy lists with mcons cells. The compatibility/mlist module has lots of support functions but I'd like to be able to apply racket functions to the lists I've constructed and I don't see any "mapply". I understand