Thread overview
[Issue 681] New: Array -- Implicit type doc updates needed
Dec 13, 2006
d-bugmail
Dec 13, 2006
d-bugmail
Dec 27, 2006
d-bugmail
December 13, 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@digitalmars.com
        ReportedBy: braddr@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.


-- 

December 13, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=681


braddr@puremagic.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|http://http://www.digitalmar|http://www.digitalmars.com/d
                   |s.com/d/arrays.html         |/arrays.html




------- Comment #1 from braddr@puremagic.com  2006-12-12 22:21 -------
Ignore this part.. I misread it at first:

The first sentence is rather redundant with the table immediately after it saying the same thing plus more.

It's not redundant, though maybe adding a <br> or <p> to make all three blocks distinct might help.


-- 

December 27, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=681


bugzilla@digitalmars.com changed:

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




------- Comment #2 from bugzilla@digitalmars.com  2006-12-27 02:03 -------
Fixed DMD 0.178


--