We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On current moment nor KDoc specify this is possible or not, nor IDE or Dokka resolves cases like this:
/** * [T.toInt] - unresolved * [T.hashCode] - unresolved */ class Storage<T: Number>
While Javadoc allows such usages:
/** * {@link T#intValue()} - resolved * <p> * {@link T#hashCode()} - resolved */ public class Storage<T extends Number> {}
and produces following result:
We need to decide at some point if there are good use cases for such syntax.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On current moment nor KDoc specify this is possible or not, nor IDE or Dokka resolves cases like this:
While Javadoc allows such usages:
and produces following result:
We need to decide at some point if there are good use cases for such syntax.
The text was updated successfully, but these errors were encountered: