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
children
Really interesting ideas from @kubukoz:
type ElemOfS[A] = A match { case fs2.Stream[_, a] => a } type ElemOfL[A] = A match { case List[a] => a } children[ElemOfL[ElemOfS[stream.type]]] <-- stream
The text was updated successfully, but these errors were encountered:
Another idea we discussed, for posterity:
case class Data(id: Int, text: String) val stream: Stream[IO, List[Data]] children <-- stream.map { _.map(data => data.id -> div(data.text)) }
Sorry, something went wrong.
Ah yes, I think I serialized that in #85 :)
No branches or pull requests
Really interesting ideas from @kubukoz:
The text was updated successfully, but these errors were encountered: