Thread overview
[Issue 5403] New: foreach requires front to be a function in a range
Jun 16, 2011
yebblies
Jul 03, 2011
yebblies
Jul 15, 2012
Kenji Hara
January 03, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5403

           Summary: foreach requires front to be a function in a range
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: schveiguy@yahoo.com


--- Comment #0 from Steven Schveighoffer <schveiguy@yahoo.com> 2011-01-03 07:25:54 PST ---
This is a valid range:

import std.range;

struct S
{
    int front;
    bool empty;
    void popFront() {empty = true;}
}

static assert(isInputRange!S);  // compiles

But this fails:

void main()
{
    S s;
    foreach(int i; s) { }
}

fails with the following error:

Error: no property 'opApply' for type 'S'
Error: opApply() function for S must return an int

Change front to:

@property int front() {return 0;}

and it compiles.  Clearly empty is not required to be a function, and there is no mention of any function requirements in the spec, it's just stated that they must be properties.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
June 16, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5403


yebblies <yebblies@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |2korden@gmail.com


--- Comment #1 from yebblies <yebblies@gmail.com> 2011-06-15 22:52:08 PDT ---
*** Issue 3295 has been marked as a duplicate of this issue. ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
July 03, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=5403


yebblies <yebblies@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch, rejects-valid
                 CC|                            |yebblies@gmail.com
           Platform|Other                       |All
         OS/Version|Linux                       |All


--- Comment #2 from yebblies <yebblies@gmail.com> 2011-07-03 21:28:43 EST ---
https://github.com/D-Programming-Language/dmd/pull/203

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



--- Comment #3 from github-bugzilla@puremagic.com 2012-07-14 08:55:19 PDT ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/85511f3cca367fa0b1d49a4748f3f047ff138425
Fix Issue 5403 - foreach requires front to be a function in a range
Allow using any reasonable symbol as front/back/empty.
Remove references to the old range interface (head/toe/next/retreat)

https://github.com/D-Programming-Language/dmd/commit/b33914398d44535296d9a80e50a3c3eeba70a0a0 Merge pull request #203 from yebblies/issue5403

Issue 5403 - foreach requires front to be a function in a range

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


Kenji Hara <k.hara.pg@gmail.com> changed:

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


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