Thread overview
[Issue 3242] New: splitter does not handle input range made of a unique separator correctly
August 10, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3242

           Summary: splitter does not handle input range made of a unique
                    separator correctly
           Product: D
           Version: unspecified
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Phobos
        AssignedTo: nobody@puremagic.com
        ReportedBy: baptiste.lepilleur@gmail.com


Notes: I found this while porting the splitter range algo to C++. Notes that I don't know D, so I may have missed something.

Below is an additional unit test that fails when porting the algorithm to C++:

unittest
{
    auto s6 = ",";
    auto sp6 = splitter(s6, ',');
    assert(equal(sp6, ["", ""][]));
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
August 10, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3242


Andrei Alexandrescu <andrei@metalanguage.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
                 CC|                            |andrei@metalanguage.com
         AssignedTo|nobody@puremagic.com        |andrei@metalanguage.com




--- Comment #1 from Andrei Alexandrescu <andrei@metalanguage.com>  2009-08-10 08:24:22 PDT ---
Thanks, will look into it.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
August 28, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3242


Andrei Alexandrescu <andrei@metalanguage.com> changed:

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




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