I would like to create ScalaDoc entries to every val and def of my class. The problem is that the vals lie inside a pattern definition, and don't know how to use the /** */
syntax.
Example:
class C(id: String) {
val (part1, part2) = {
.....
(expr1, expr2)
}
}
How do I document part1 and part2?
I've read before asking this documentation about ScalaDoc.