-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Document nullability of map type #27182
New issue
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
base: master
Are you sure you want to change the base?
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the documentation for the MAP type by clarifying that map keys are mandatory and map values may be null, ensuring users understand the nullability constraints. Class diagram for updated MAP type documentationclassDiagram
class MAP {
+Key : required
+Value : nullable
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| A map between the given component types. A map is a collection of key-value | ||
| pairs, where each key is associated with a single value. | ||
| pairs, where each key is associated with a single value. Map keys are required, | ||
| and map values can be null. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"and" -> "while" ?
Release notes
(x) This is not user-visible or is docs only, and no release notes are required.
Summary by Sourcery
Documentation: