May 30, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8166

           Summary: retro() of splitter() too
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: bearophile_hugs@eml.cc


--- Comment #0 from bearophile_hugs@eml.cc 2012-05-30 04:59:23 PDT ---
This is an operation I'd like to do:

import std.range, std.algorithm;
void main() {
    auto p = std.array.splitter("this is a message").retro();
}


DMD 2.060alpha gives:

test.d(3): Error: template std.range.retro does not match any function template
declaration
...\dmd2\src\phobos\std\range.d(1292): Error: template std.range.retro(Range)
if (isBidirectionalRange!(Unqual!(Range))) cannot deduce template function from
argument types !()(Result)


I think a splitter of a narrow string can be a BidirectionalRange.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
October 22, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=8166


monarchdodra@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |monarchdodra@gmail.com
         AssignedTo|nobody@puremagic.com        |monarchdodra@gmail.com


--- Comment #1 from monarchdodra@gmail.com 2012-10-22 02:40:24 PDT ---
(In reply to comment #0)
> This is an operation I'd like to do:
> 
> import std.range, std.algorithm;
> void main() {
>     auto p = std.array.splitter("this is a message").retro();
> }
> 
> 
> DMD 2.060alpha gives:
> 
> test.d(3): Error: template std.range.retro does not match any function template
> declaration
> ...\dmd2\src\phobos\std\range.d(1292): Error: template std.range.retro(Range)
> if (isBidirectionalRange!(Unqual!(Range))) cannot deduce template function from
> argument types !()(Result)
> 
> 
> I think a splitter of a narrow string can be a BidirectionalRange.

I'll take this.

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