range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 11:29 UTC)
|
Re: range->vector
John Cowan
(01 Sep 2020 15:29 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 15:45 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(01 Sep 2020 16:33 UTC)
|
Re: range->vector
John Cowan
(01 Sep 2020 17:12 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 17:27 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(01 Sep 2020 17:34 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 17:36 UTC)
|
Re: range->vector
Arthur A. Gleckler
(01 Sep 2020 17:37 UTC)
|
Re: range->vector Marc Nieper-Wißkirchen (01 Sep 2020 17:38 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(01 Sep 2020 17:46 UTC)
|
Re: range->vector
John Cowan
(01 Sep 2020 18:23 UTC)
|
Re: range->vector
Arthur A. Gleckler
(01 Sep 2020 18:40 UTC)
|
Re: range->vector
John Cowan
(01 Sep 2020 18:42 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 18:52 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(01 Sep 2020 19:22 UTC)
|
Re: range->vector
John Cowan
(03 Sep 2020 00:15 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(03 Sep 2020 02:27 UTC)
|
Re: range->vector
John Cowan
(03 Sep 2020 03:35 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(03 Sep 2020 06:47 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(03 Sep 2020 18:04 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(03 Sep 2020 18:27 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(03 Sep 2020 19:10 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(03 Sep 2020 20:32 UTC)
|
Re: range->vector
Wolfgang Corcoran-Mathe
(03 Sep 2020 07:11 UTC)
|
Re: range->vector
Marc Nieper-Wißkirchen
(03 Sep 2020 07:14 UTC)
|
PS For the final sample implementation, I would case-lambda-single out the 0, 1, and 2-range case, for which more efficient (or even trivial) implementations are possible. Especially the 2-range case will probably be used much more than the rest. Am Di., 1. Sept. 2020 um 19:36 Uhr schrieb Marc Nieper-Wißkirchen <xxxxxx@nieper-wisskirchen.de>: > > Be aware that I haven't run it. :) > > Am Di., 1. Sept. 2020 um 19:34 Uhr schrieb Wolfgang Corcoran-Mathe > <xxxxxx@sigwinch.xyz>: > > > > On 2020-09-01 19:27 +0200, Marc Nieper-Wißkirchen wrote: > > > Thanks! > > > > > > What is the status of > > > > > > (define (range-append . ranges) > > > (let ((lens (map range-length ranges))) > > > (range (fold + 0 lens) > > > (lambda (i) > > > (let f ((i i) (ranges ranges) (lens lens)) > > > (if (< i (car lens)) (range-ref (car ranges) i) (f > > > (- i (car lens)) (cdr ranges) (cdr lens))))))) > > > > Nice implementation! Added in my repository. > > > > -- > > Wolfgang Corcoran-Mathe <xxxxxx@sigwinch.xyz> > > > > "The intellectual advancement of man depends on how often he can > > exchange an old superstition for a new truth." --Robert G. Ingersoll