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
Often I find myself using mapNotNull for the only purpose of filtering out nulls. So it would be nice to use it like mapNotNull() instead of mapNotNull((x) => x).
The text was updated successfully, but these errors were encountered:
Often I find myself using mapNotNull for the only purpose of filtering out nulls. So it would be nice to use it like mapNotNull() instead of mapNotNull((x) => x).
Often I find myself using mapNotNull for the only purpose of filtering out nulls. So it would be nice to use it like mapNotNull() instead of mapNotNull((x) => x).
There is whereNotNull that fits your case.
Somehow I missed that one, that's exactly what I need. Thanks!
Often I find myself using
mapNotNull
for the only purpose of filtering out nulls. So it would be nice to use it likemapNotNull()
instead ofmapNotNull((x) => x)
.The text was updated successfully, but these errors were encountered: