January 20, 2006
Hi all.

After long pause I resumed development in D and first thing I've done is
documentation of some part of code to investigate how ddoc works. Great, but
there is one lack of feature I discovered and was astonished. Consider:
/**
Returns: Whether passed basis is orthonormal.
Params:
r, s, t =   Vectors that form a basis.
relprec, absprec = Parameters passed to equal function while calculations.
Have the same meaning as in equal function.
References:
$(LINK http://en.wikipedia.org/wiki/Orthonormal_basis)
*/

I have empty params section after generation. Well, this is because parameters are not described separately but enumerated in comma list. Is there any reasons why ddoc can't correctly process this?

--
Victor (aka nail) Nakoryakov
nail-mail<at>mail<dot>ru

Krasnoznamensk, Moscow, Russia
January 20, 2006
Victor Nakoryakov wrote:
> Hi all.
> 
> After long pause I resumed development in D and first thing I've done is
> documentation of some part of code to investigate how ddoc works. Great, but
> there is one lack of feature I discovered and was astonished. Consider:
> /**
> Returns: Whether passed basis is orthonormal.
> Params:
> r, s, t =   Vectors that form a basis.
> relprec, absprec = Parameters passed to equal function while calculations.
> Have the same meaning as in equal function.
> References:
> $(LINK http://en.wikipedia.org/wiki/Orthonormal_basis)
> */
> 
> I have empty params section after generation. Well, this is because parameters
> are not described separately but enumerated in comma list. Is there any reasons
> why ddoc can't correctly process this?

It probably just wasn't considered. Hopefully Walter will see this, but I think he reads more of the posts in digitalmars.D.bugs than he does in this NG.

Chris