-
Notifications
You must be signed in to change notification settings - Fork 307
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
Resolve Contains_key Closes #305 #603
Conversation
* Update PULL_REQUEST_TEMPLATE.md Added a new line referencing prompting the user to add or update examples * Update PULL_REQUEST_TEMPLATE.md updated wording
SPEC.md
Outdated
### ✨ `contains_key` | ||
|
||
``` | ||
Map[P, Y], P), Boolean contains_key(Map[P?, Y], P?) |
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.
Looks like a bad merge here. Check the original diff: https://github.com/openwdl/wdl/compare/cf597dc07eb88d2fe727bbeb10473569f7b412d8..1af834fa053360f9c84dea734abcfc6bf202bb0c
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.
Still something messed up with the signature codeblock. Other than that lgtm.
SPEC.md
Outdated
### ✨ `contains_key` | ||
|
||
``` | ||
Map[P, Y], Boolean contains_key(Map[P?, Y], P?) |
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.
Still something weird going on here. See for e.g. min
and max
for other functions with multiple variants.
Should be:
* Boolean contains_key(Map[P, Y], P)
* Boolean contains_key(Object, String)
* Boolean contains_key(Map[String, Y]|Struct|Object, Array[String])
Checklist