Re: [racket-users] Re: Recursive stepping down a list patially?

2016-10-31 Thread Vincent St-Amour
FWIW, your `find-it` is a thin wrapper over `memf` from `racket/base`. Vincent On Tue, 01 Nov 2016 05:06:47 +0100, George Neuner wrote: > > On Tue, 1 Nov 2016 04:28:26 +0100, > meino.cra...@gmx.de wrote: > > > > >Hi Jon, > > > >thanks for reply! :) > > > >My plan was, to return only one eleme

[racket-users] [OT]: Receiving doubled mail and mutt (Linux/UNIX mailclient)

2016-10-31 Thread Meino . Cramer
Hi, not a Racket thing... >From all threads I started or posted to I receive each mail twice. I am using "mutt", the lInux mail client, to write and compose mails. Mutt knows about mailinglists. Normally "r"eplaying to a posting of a mailinglist, mutt asked "Reply tp list? [yes]/no" and hitting

Re: [racket-users] Re: Recursive stepping down a list patially?

2016-10-31 Thread Meino . Cramer
Hi George, thanks for your reply! :) THAT HELPS! Thanks for the look inside of racket! Cheers Meino George Neuner [16-11-01 05:20]: > On Tue, 1 Nov 2016 04:28:26 +0100, > meino.cra...@gmx.de wrote: > > > > >Hi Jon, > > > >thanks for reply! :) > > > >My plan was, to return only one element f

[racket-users] Re: Recursive stepping down a list patially?

2016-10-31 Thread George Neuner
On Tue, 1 Nov 2016 04:28:26 +0100, meino.cra...@gmx.de wrote: > >Hi Jon, > >thanks for reply! :) > >My plan was, to return only one element from that list and >possibly some extra informations and pass that to the processing >function so it could right jump onto that train... > >Is that possible?

Re: [racket-users] Recursive stepping down a list patially?

2016-10-31 Thread Jon Zeppieri
On Mon, Oct 31, 2016 at 11:28 PM, wrote: > > Hi Jon, > > thanks for reply! :) > > My plan was, to return only one element from that list and > possibly some extra informations and pass that to the processing > function so it could right jump onto that train... > > Is that possible? > > I think I

Re: [racket-users] Recursive stepping down a list patially?

2016-10-31 Thread Meino . Cramer
Hi Jon, thanks for reply! :) My plan was, to return only one element from that list and possibly some extra informations and pass that to the processing function so it could right jump onto that train... Is that possible? Cheers Meino Jon Zeppieri [16-11-01 04:20]: > On Mon, Oct 31, 2016 a

Re: [racket-users] Recursive stepping down a list patially?

2016-10-31 Thread Jon Zeppieri
On Mon, Oct 31, 2016 at 10:53 PM, wrote: > Hi, > > I have a lng list of something. And I have a recursive serach > function to crawl down the list and search for a previously determined > item. > When found, the search processes stops and returns that item of the > list. > > In a second step,

[racket-users] Recursive stepping down a list patially?

2016-10-31 Thread Meino . Cramer
Hi, I have a lng list of something. And I have a recursive serach function to crawl down the list and search for a previously determined item. When found, the search processes stops and returns that item of the list. In a second step, I want to process the list starting with that certain item

[racket-users] Call for Workshop Proposals: ICFP 2017

2016-10-31 Thread 'Lindsey Kuper' via users-redirect
CALL FOR WORKSHOP AND CO-LOCATED EVENT PROPOSALS ICFP 2017 22nd ACM SIGPLAN International Conference on Functional Programming September 3-9, 2017 Oxford, United Kingdom http://conf.researchr.org/home/i

Re: [racket-users] Using the graph library

2016-10-31 Thread Stephen Chang
Hi Lawrence, Can you provide some more context? Are you looking to learn about graphs in general, or specifically about the graph library API. For the former, any well known algorithms textbook should have a decent introduction. I used CLRS [1] as a guide when developing the library. For the la