[Issue 6839] New: documentation for opAssign incorrect

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Oct 22 10:11:47 PDT 2011


http://d.puremagic.com/issues/show_bug.cgi?id=6839

           Summary: documentation for opAssign incorrect
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: websites
        AssignedTo: nobody at puremagic.com
        ReportedBy: chisophugis at gmail.com


--- Comment #0 from Sean Silva <chisophugis at gmail.com> 2011-10-22 10:10:44 PDT ---
The documentation about opAssign seems be incorrect:
http://d-programming-language.org/struct.html

It says:

> Struct assignment t=s is defined to be semantically equivalent to:
>   t = S.opAssign(s);

which I think should be `t.opAssign(s)`.

also, just below, the signature is stated as `S* opAssign(S s)`. According to
this post on the newsgroup
<http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.learn&artnum=30203>,
the correct signature should be `void opAssign(ref const S rhs)`.

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


More information about the Digitalmars-d-bugs mailing list