Convenience function for creating an OutputRangeObject with a base range * of type R that accepts types E.
import std.array; auto app = appender!(uint[])(); auto appWrapped = outputRangeObject!(uint, uint[])(app); static assert(is(typeof(appWrapped) : OutputRange!(uint[]))); static assert(is(typeof(appWrapped) : OutputRange!(uint)));
See Implementation
Convenience function for creating an OutputRangeObject with a base range * of type R that accepts types E.