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

2016-11-01 Thread David Storrs
On Tue, Nov 1, 2016 at 1:34 PM, John Clements wrote: > > > On Nov 1, 2016, at 8:02 AM, David Storrs wrote: > > > ... > > > Is it possible to jump right into a list at a certain item of > > > the list and to start processing there? > > > > Yes.

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

2016-11-01 Thread Meino . Cramer
Hi Jon, thank you for your mind reading! :::))) Exactly! Now I know, that racket passes references under the hood and the world is getting a better place again. Cheers Meino Jon Zeppieri [16-11-01 04:40]: > On Mon, Oct 31, 2016 at 11:28 PM, wrote:

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

2016-11-01 Thread Meino . Cramer
Hi David, thanks for your...:) DOCUMENTATION PROJECT :).!!! Whow! Now I have a lot to read! Cheers Meino David Storrs [16-11-01 18:47]: > Hi Meino, > > Good news! There are built-ins that will do almost all of this for you: > > On Mon, Oct 31, 2016 at 10:53

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

2016-11-01 Thread Meino . Cramer
'John Clements' via Racket Users [16-11-01 18:47]: > > > On Nov 1, 2016, at 8:02 AM, David Storrs wrote: > > > ... > > > Is it possible to jump right into a list at a certain item of > > > the list and to start processing there? > > > >

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

2016-11-01 Thread 'John Clements' via Racket Users
> On Nov 1, 2016, at 8:02 AM, David Storrs wrote: > ... > > Is it possible to jump right into a list at a certain item of > > the list and to start processing there? > > Yes. What you want is list-ref > > (define my-list '(a b c d e f g)) > > (list-ref (list 'a 'b

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

2016-11-01 Thread David Storrs
Hi Meino, Good news! There are built-ins that will do almost all of this for you: 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

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

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]: >

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.

[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