<div dir="ltr"><div>Interfacing with ranges across libraries can be tricky due to heavy use of templates. Example cases are when interfacing between D and C++ or when using D shared libraries, that we would like to distribute with di interface files. <br>
</div><div> <br></div><div>I'd like to have something like the following in phobos (see code below).<br></div><div>The code makes an OOP wrapper for ranges, allowing one to use separate compilation model without having to pull in all the source code if we want to use the library with arbitrary ranges of a given element type (see unittest below). This could also greatly benefit compilation time since it enables us to use thin di interface files.</div>
<div><br></div><div>----</div><div><br></div><div>module util.oop;</div><div>import std.range;</div><div><br></div><div>interface InputRange(T){</div><div>  void popFront();</div><div>  T front();</div><div>  bool empty();</div>
<div>  typeof(this) save(); //should actually have a whole OOP hierarchy to support the various range paradigms, with assert(0) when un-implemented</div><div>}</div><div><br></div><div>//TODO:more generic, eg: to!InputRange</div>
<div>auto toInputRange(R)(R a)if(isInputRange!R){</div><div>  alias T=ElementType!R;</div><div>  class A:InputRange!T{</div><div>    R a;</div><div>    this(R a){</div><div>      this.a=a;</div><div>    }</div><div>    void popFront(){a.popFront;}</div>
<div>    T front(){return a.front;}</div><div>    bool empty(){return a.empty;}</div><div>    A save(){return new A(a);}</div><div>  }</div><div>  return new A(a);</div><div>}</div><div><br></div><div>unittest{</div><div>
  auto fun(InputRange!int a){//fun is *not* templated; works with any input range whose element type is int.</div><div>    return a.array;</div><div>  }</div><div>  import std.algorithm:equal;</div><div>  assert(fun(10.iota.map!(a=>a*2).toInputRange).equal(iota(0,20,2)));</div>
<div>}</div><div><br></div></div>