I am adding KDoc to my library which is basically just a whole bunch of wrapper functions around a Java library, to better leverage operator overloading, nullability, and inline lambdas. The majority of my documentation currently consists of @see
. But I’m running into an issue - I don’t know how to @see
a constructor. I can @see
a class, but not the constructor for that class which is what I’m intending to link to. How would I do that?
My second question: It feels kind of silly to have documentation which is one giant link to someone else’s documentation. Is there any parallel to Java’s {@inheritDoc}
?