<div dir="ltr"><div><div><div><div><div>Just a side question:<br></div>Would it be a bad idea to make a separate library that uses the normal names without f, so that people can write<br></div>#lang racket<br></div>(require racket/flist)<br>

<br>?<br></div>or even use `prefix-in&#39; if they prefer?<br><br></div>Laurent<br><div><div><br><br></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Mar 9, 2013 at 4:28 PM, Eli Barzilay <span dir="ltr">&lt;<a href="mailto:eli@barzilay.org" target="_blank">eli@barzilay.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Two days ago, Asumu Takikawa wrote:<br>
&gt; We were considering the following set of names:<br>
&gt;<br>
&gt;   takef, dropf, takef-right, dropf-right, splitf, splitf-right<br>
<br>
I did most of this, and there are three important comments:<br>
<br>
1. Name: `splitf&#39; is not right, since it&#39;s missing the &quot;-at&quot;.  I<br>
   eventually went with `splitf-at&#39; (since adding the `f&#39; at the end<br>
   makes it unreadable).<br>
<br>
2. Argument order: I think that it is important to be able to switch<br>
   from (for example) `take&#39; to `takef&#39; and the index by a predicate.<br>
   For this analogy to work, the order of arguments needs to be the<br>
   same for both.  Given that `take&#39; etc already exist, it&#39;s the new<br>
   functions that need to change.  This is unfortunate:<br>
   0. It goes against `take&#39; in Haskell and in lazy (not new).<br>
   1. Clojure joins that other party.<br>
   2. It also goes against `member&#39; and `find&#39; where the list is the<br>
      second argument, so the &quot;f&quot; similarity between `findf&#39; and<br>
      `takef&#39; can be confusing.<br>
   Personally, I think that this has been a PITA for such a long time<br>
   and I&#39;d prefer seeing `take&#39; etc change to join the winning party.<br>
   I think that srfi-1 made a mistake, not just that it chose the path<br>
   that ended up being unpopular, because it made an inconsistent<br>
   choice with other functionality that it provides.<br>
<br>
   Regardless of this, if it&#39;s uniform interface vs good order, I<br>
   prefer going with the uniform interface and the existing bad<br>
   order.  So I think that I should switch the order, protest myself<br>
   silently, and continue.<br>
<br>
3. `takef-right&#39; etc.  I started implementing these, but maybe they<br>
   shouldn&#39;t.  The following explanation is probably only for people<br>
   who are interested in what gets added (ie, Asumu), or maybe if you<br>
   like a dead-end puzzle.  For the others, it&#39;s probably enough to<br>
   note that there are no such things in drfi-1/clojure/etc that I<br>
   see.<br>
<br>
   Here&#39;s why I think it might be useless:<br>
<br>
   For just `takef-right&#39;, it&#39;s possible to do something smart that<br>
   scans the list in order, keeping a pointer to the beginning of the<br>
   &quot;current good block&quot;.  This avoids a double scan *but* the payment<br>
   is in applying the predicate on all emlements.  There might be a<br>
   point in that in some cases, but probably in most cases it&#39;s best<br>
   to apply it in reverse order, get the index, then do the usual<br>
   thing.<br>
<br>
   That&#39;s mildly useful in a completely unexciting way, but when it<br>
   gets to the other *f-right functions, it gets worse in that the<br>
   first approach won&#39;t work.<br>
<br>
   So for all of these, the best that I see is: reverse the list[*],<br>
   look for the place where the predicate flips to #f, then use one of<br>
   the non-f from-right functions to do the work.  So they&#39;re all just<br>
   a little bit better than a reverese + non-f + reverse combination.<br>
<br>
   ([*] Not a strict reverse, to make these functions work with<br>
   improper lists -- which is in-line with other questionable srfi-1<br>
   inheritance.)<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
          ((lambda (x) (x x)) (lambda (x) (x x)))          Eli Barzilay:<br>
                    <a href="http://barzilay.org/" target="_blank">http://barzilay.org/</a>                   Maze is Life!<br>
_________________________<br>
  Racket Developers list:<br>
  <a href="http://lists.racket-lang.org/dev" target="_blank">http://lists.racket-lang.org/dev</a><br>
</font></span></blockquote></div><br></div>