Thread overview
[Issue 6301] New: Cannot 'zip'/'retro'/'stride' etc. a range having 'ulong' length.
Jul 12, 2011
kennytm@gmail.com
Jul 12, 2011
kennytm@gmail.com
Jul 16, 2011
kennytm@gmail.com
July 12, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6301

           Summary: Cannot 'zip'/'retro'/'stride' etc. a range having
                    'ulong' length.
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Mac OS X
            Status: NEW
          Keywords: rejects-valid
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: kennytm@gmail.com


--- Comment #0 from kennytm@gmail.com 2011-07-12 14:24:57 PDT ---
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);
}
----------------------

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
July 12, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6301



--- Comment #1 from kennytm@gmail.com 2011-07-12 15:21:17 PDT ---
Phobos pull #142.

https://github.com/D-Programming-Language/phobos/pull/142

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
July 16, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6301


kennytm@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


--- Comment #2 from kennytm@gmail.com 2011-07-16 01:02:31 PDT ---
https://github.com/D-Programming-Language/phobos/commit/70418fac9ec114acb5a0b9c436d746a0d03d7525

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------