[Issue 681] New: Array -- Implicit type doc updates needed

d-bugmail at puremagic.com d-bugmail at puremagic.com
Tue Dec 12 20:11:11 PST 2006


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

           Summary: Array -- Implicit type doc updates needed
           Product: D
           Version: 0.177
          Platform: All
               URL: http://http://www.digitalmars.com/d/arrays.html
        OS/Version: All
            Status: NEW
          Keywords: spec
          Severity: normal
          Priority: P2
         Component: www.digitalmars.com
        AssignedTo: bugzilla at digitalmars.com
        ReportedBy: braddr at puremagic.com


The current text:
========
Implicit Conversions

A pointer T* can be implicitly converted to a void* . A static array T[dim] can
be implicitly converted to one of the following:

    * T*
    * T[]
    * void*
    * void[] 

A dynamic array T[] can be implicitly converted to one of the following:

    * T*
    * void*
    * void[]
    * U[]

Where U is a base class of T.
========

The first sentence is rather redundant with the table immediately after it
saying the same thing plus more.  Also, the [] to/from * conversions are gone
now.


-- 



More information about the Digitalmars-d-bugs mailing list