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
Originally filed by @jeffque as google/quiver-dart#575:
The documentation for the function quiver.core.firstNonNull is being displayed like this:
quiver.core.firstNonNull
firstNonNull(dynamic o1, [ dynamic o2, [ dynamic o3 dynamic o4 ])
with an extra square brakets between o1 and o2. I also noted a lack of comma separating o3 and o4 now. Maybe related?
o1
o2
o3
o4
It can be found at least here and here
But, seeing the code, I would expect something like this
firstNonNull(dynamic o1, dynamic o2, [ dynamic o3, dynamic o4 ])
or this:
firstNonNull(o1, o2, [ o3, o4 ])
The text was updated successfully, but these errors were encountered:
Thanks for the fix!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Originally filed by @jeffque as google/quiver-dart#575:
The documentation for the function
quiver.core.firstNonNull
is being displayed like this:with an extra square brakets between
o1
ando2
. I also noted a lack of comma separatingo3
ando4
now. Maybe related?It can be found at least here and here
But, seeing the code, I would expect something like this
or this:
firstNonNull(o1, o2, [ o3, o4 ])
The text was updated successfully, but these errors were encountered: