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
:nodoc:
If you define an enum with a :nodoc: member, like:
enum Test FOO # :nodoc: BAR end
The member itself will be hidden, but the autogenerated bar? method ill not:
bar?
I think it would make sense to also hide the method.
The text was updated successfully, but these errors were encountered:
Pretty hard, the regular compiler doesn't know about doc comments.
Sorry, something went wrong.
What would be a use case for a nodoc enum member anyways?
What I said doesn't make sense, sorry.
Regex options are one place where there are nodoc values.
Yea Regex::Options is where i noticed it. Granted, probably a bit of an edge case.
Regex::Options
Copy docs from enum members to their helper methods (crystal-lang#11333)
1e3aac8
Successfully merging a pull request may close this issue.
If you define an enum with a
:nodoc:
member, like:The member itself will be hidden, but the autogenerated
bar?
method ill not:I think it would make sense to also hide the method.
The text was updated successfully, but these errors were encountered: