It is impossible (or isn't it?) to document variables separately in tuple declaration. For example:
/** LaLaLa */val (l1, l2) = myList.span(...)
This results in "LaLaLa" appearing next to both l1 and l2 in generated documentation. However, I would like to document the variables separately.
It is impossible (or isn't it?) to document variables separately in tuple declaration. For example:
/** LaLaLa */
val (l1, l2) = myList.span(...)
This results in "LaLaLa" appearing next to both l1 and l2 in generated documentation. However, I would like to document the variables separately.