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

--- Comment #1 from Sobirari Muhomori <[email protected]> ---
One const method looks enough in your case:

    List tail() const
    {
        assert(root);
        auto n = root.next;
        return List(n);
    }

--

Reply via email to