Worst Phobos documentation evar!

Walter Bright via Digitalmars-d digitalmars-d at puremagic.com
Mon Dec 29 15:10:35 PST 2014


On 12/29/2014 1:50 PM, Kiith-Sa wrote:
> Great, width limit messed up the (first version of) the table.
>
>
> | Function Name | Description                                  |
> | ------------- |--------------------------------------------- |
> | #all          | `all!"a > 0"([1, 2, 3, 4])` returns `true`   |
> | #any          | `any!"a > 0"([1, 2, -3, -4])` returns `true` |

Yeah, now have a large table and have one line that's longer.

BTW, you can line table entries up in Ddoc, too:

$(TABLE
$(THDR Function Name, Description                                 )
$(TROW all          , `all!"a > 0"([1, 2, 3, 4])` returns `true`  )
$(TROW any          , `any!"a > 0"([1, 2, -3, -4])` returns `true`)
)


More information about the Digitalmars-d mailing list