www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 24589] New: [std.sreaching] take functions seem to be missing

https://issues.dlang.org/show_bug.cgi?id=24589

          Issue ID: 24589
           Summary: [std.sreaching] take functions seem to be missing
                    range overload/version
           Product: D
           Version: D2
          Hardware: All
               URL: http://dlang.org/phobos/
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P3
         Component: phobos
          Assignee: nobody puremagic.com
          Reporter: crazymonkyyy gmail.com

```
import std;
auto takeUntil(R)(R base,R other){
    static struct Result{
        R base;
        R other;
        alias base this;
        bool empty()=>base==other;
    }
    return Result(base,other);
}
unittest{
    iota(5).takeUntil(iota(5).drop(3)).writeln;
}
```

--
Jun 05