dlangBugzillaToGithub / migration_test

0 stars 0 forks source link

std.algorithm.nWayUnion(Tuple) too? #99

Closed dlangBugzillaToGithub closed 6 days ago

dlangBugzillaToGithub commented 11 years ago

bearophile_hugs reported this on 2013-02-27T15:12:43Z

Transfered from https://issues.dlang.org/show_bug.cgi?id=9611

CC List

Description

In some cases I have had to merge ranges of different type. So maybe for such situations it's worth supporting nWayUnion of a Tuple of ranges:

import std.algorithm: nWayUnion, map; import std.range: iota; import std.typecons: tuple; void main() { auto a = iota(10); auto b = [3, 6, 9]; auto c = iota(11).map!q{a * a}; auto r = nWayUnion(tuple(a, b, c)); }

Note: in all such of my usage cases the number of the ranges was limited, 2 or 3. So when the input of nWayUnion is a tuple I think there is no need for nWayUnion to keep the ranges inside with a BinaryHeap.


Current workaround, suggested by Ali Çehreli:

import std.algorithm: nWayUnion, map; import std.range: iota, InputRange, inputRangeObject; void main() { InputRange!int a = inputRangeObject(iota(10)); InputRange!int b = inputRangeObject([3, 6, 9]); InputRange!int c = inputRangeObject(iota(11).map!q{a * a}); auto r = nWayUnion([a, b, c]); }

dlangBugzillaToGithub commented 11 years ago

zshazz commented on 2013-02-27T17:13:37Z

(In reply to comment #0)

Current workaround, suggested by Ali Çehreli:

import std.algorithm: nWayUnion, map; import std.range: iota, InputRange, inputRangeObject; void main() { InputRange!int a = inputRangeObject(iota(10)); InputRange!int b = inputRangeObject([3, 6, 9]); InputRange!int c = inputRangeObject(iota(11).map!q{a * a}); auto r = nWayUnion([a, b, c]); }

A function that does the conversion to InputRange!E could easily be created and added to Phobos to handle this type of situation. Ranges such as nWayUnion could call this (currently poorly named) tupWrapper when isTuple!T returns true.


import std.stdio, std.range, std.typecons, std.algorithm;

void main() { auto tup = tuple(iota(5), repeat(1).take(3), [5,9,30]);

foreach(e; tupWrapper(tup).nWayUnion())
    writeln(e);

}

auto tupWrapper(Tup)(Tup tup) { alias E = ElementType!(Tup.Types[0]); InputRange!E[] arr; foreach(T; Tup.Types) static assert(is(ElementType!T == E));

foreach(ref e; tup)
    arr ~= inputRangeObject(e);

return arr;

}


Currently, that solution isn't too robust. Ideally it would figure out the most powerful range type (either InputRange, ForwardRange, ..., RandomAccessRange) that all the types in the Tuple.Types support and it would return that.

dlangBugzillaToGithub commented 11 years ago

bearophile_hugs commented on 2013-02-27T17:24:55Z

(In reply to comment #1)

A function that does the conversion to InputRange!E could easily be created and added to Phobos to handle this type of situation.

I think InputRange and inputRangeObject are not needed to solve this. A "static foreach" on the Tuple fields (that contain ranges) looking for the smallest value seems enough to me.

dlangBugzillaToGithub commented 11 years ago

andrei (@andralex) commented on 2013-02-27T17:43:45Z

Yah, this should be added. Suffice to add a one-argument member function to SortedRange.