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
Right now a type ZIO[..., Dataset[A]] will need a double map to change to ZIO[..., Dataset[B]]
ZIO[..., Dataset[A]]
ZIO[..., Dataset[B]]
.map(_.map(...))
That would be nice to have a map shortcut that convert directly from ZDS[A] to ZDS[B].
ZDS[A]
ZDS[B]
The text was updated successfully, but these errors were encountered:
This is the WIP branch https://github.com/leobenkel/Zparkio/tree/map_shortcuts
Sorry, something went wrong.
No branches or pull requests
Right now a type
ZIO[..., Dataset[A]]
will need a double map to change toZIO[..., Dataset[B]]
That would be nice to have a map shortcut that convert directly from
ZDS[A]
toZDS[B]
.The text was updated successfully, but these errors were encountered: