Thread overview
[Issue 5542] std.string.join() for chars too
Sep 16, 2014
Robert Schadek
Apr 11, 2016
Jack Stouffer
September 16, 2014
https://issues.dlang.org/show_bug.cgi?id=5542

Robert Schadek <rburners@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rburners@gmail.com

--- Comment #2 from Robert Schadek <rburners@gmail.com> ---
superseded by issue 8851

--
September 17, 2014
https://issues.dlang.org/show_bug.cgi?id=5542

--- Comment #3 from bearophile_hugs@eml.cc ---
(In reply to Robert Schadek from comment #2)
> superseded by issue 8851

They are different requests.

--
April 11, 2016
https://issues.dlang.org/show_bug.cgi?id=5542

Jack Stouffer <jack@jackstouffer.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |jack@jackstouffer.com
         Resolution|---                         |WONTFIX

--- Comment #4 from Jack Stouffer <jack@jackstouffer.com> ---
This is a one liner,

    string input = "123";
    auto result = input.roundRobin('x'.repeat(input.length - 1));

Going off of Walter's comments in this PR, https://github.com/D-Programming-Language/phobos/pull/4153, I am marking this as WONTFIX.

--