Re: Do findSplit, findSplitBefore, and findSplitAfter make until unnecessary?

2011-02-20 Thread Andrei Alexandrescu
On 2/20/11 12:20 AM, Jonathan M Davis wrote: With the most recent release, we got findSplit, findSplitBefore, and findSplitAfter in std.algorithm, which are all very useful and cool. However, in light of what they can do, I'm wondering if we really need std.algorithm.until? It seems to me that t

Re: Do findSplit, findSplitBefore, and findSplitAfter make until unnecessary?

2011-02-20 Thread Tomek Sowiński
Jonathan M Davis napisał: > Does anyone have a good reason why the findSplit* functions don't make until > obsolete and unnecessary? Until is lazy, findSplit* are not. -- Tomek

Do findSplit, findSplitBefore, and findSplitAfter make until unnecessary?

2011-02-19 Thread Jonathan M Davis
With the most recent release, we got findSplit, findSplitBefore, and findSplitAfter in std.algorithm, which are all very useful and cool. However, in light of what they can do, I'm wondering if we really need std.algorithm.until? It seems to me that the findSplit* functions give you that funct