Bug 6301 – Cannot 'zip'/'retro'/'stride' etc. a range having 'ulong' length.
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
phobos
Product
D
Version
D2
Platform
Other
OS
Mac OS X
Creation time
2011-07-12T14:24:00Z
Last change time
2011-07-16T01:02:31Z
Keywords
rejects-valid
Assigned to
nobody
Creator
kennytm
Comments
Comment #0 by kennytm — 2011-07-12T14:24:57Z
Test case:
----------------------
import std.range;
void f() {
auto LL = iota(1L, 1000L);
auto z = zip(LL, LL);
auto r = retro(LL);
auto pb = popBackN(LL, 2);
auto s = stride(LL, 2);
auto rd = radial(LL);
}
----------------------