[Issue 4087] Static Node struct of std.range.SListRange

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Mon Jan 26 17:15:29 PST 2015


https://issues.dlang.org/show_bug.cgi?id=4087

bearophile_hugs at eml.cc changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |---

--- Comment #3 from bearophile_hugs at eml.cc ---
(In reply to AndyC from comment #2)
> I cannot find any reference to SListRange in code, it must be gone by now. 
> Closing.

Reopened. They are named SList/DList now, of course:


struct SList(T)
{
    import std.exception : enforce;
    import std.range : Take;
    import std.range.primitives;
    import std.traits;

    private struct Node
    {
        Node * _next;
        T _payload;
    }

--


More information about the Digitalmars-d-bugs mailing list