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
Hello, I'm running into this issue, not sure if I'm doing something wrong or not.
import $ivy.`io.trane::arrows-stdlib:0.1.22` import arrows.stdlib._ import scala.concurrent._ import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.duration._ Await.result(Future.sequence(List(Future.firstCompletedOf(List(Future.successful(1))))), Duration.Inf) // List(1) Task.sequence(List(Task.firstCompletedOf(List(Task.async(Future.successful(1)))))).run(()) // java.lang.ClassCastException: java.base/[Ljava.lang.Object; cannot be cast to [Lscala.concurrent.Future; // arrows.stdlib.ArrowImpl$Sequence.runSync(ArrowImpl.scala:226) // arrows.stdlib.ArrowRun$.apply(ArrowRun.scala:186) // arrows.stdlib.Arrow.run(Arrow.scala:90)
The text was updated successfully, but these errors were encountered:
Seems weird, I retested my script and it worked until...
Sorry, something went wrong.
No branches or pull requests
Hello, I'm running into this issue, not sure if I'm doing something wrong or not.
The text was updated successfully, but these errors were encountered: