You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wait() would then discard all nil results without an error and dereference the pointers.
The alternative to this that I am currently using is a wrapper type, that I then filter and map to the original type, but a native solution would be preferable.
Should I open a PR for this?
The text was updated successfully, but these errors were encountered:
There are tasks where not having a result is not the error case. For these cases I propose extending the set of Pools with
Wait()
would then discard allnil
results without an error and dereference the pointers.The alternative to this that I am currently using is a wrapper type, that I then filter and map to the original type, but a native solution would be preferable.
Should I open a PR for this?
The text was updated successfully, but these errors were encountered: