Adam Fraser
Adam Fraser
@tewecske Thanks for following up! I think it is a little bit up to you. We can open issues for these things and wait for them to be added or...
Yeah it seems like this is probably out of scope for us. I thought the idea here was just to be able to say doing some particular operation doesn't make...
@fniephaus Thanks for your help with this! Yes, it may make sense to open an issue for improved support in general. We definitely have some users using GraalVM Native Image...
@senia-psm This is a really interesting effort to unify the classic and smart assertions. I think the big issue here is that I think our plan has been to deprecate...
Can you just adjust the time before your test? ```scala test("can be adjusted before") { for { time
Yes, there are actually two issues here. First, which is actually unrelated to autoblocking, is that the blocking pool will start rejecting requests above a certain point. I think we...
@sideeffffect @Badmoonz How about this? ```scala def collectFirst[G[+_]: IdentityBoth: AssociativeEither: Covariant, A, B](fa: F[A])(f: A => G[B]): G[Option[B]] = foldLeft[G[Option[B]], A](fa)(None.succeed)((s, a) => s.orElse(f(a).map(Some(_)))) ``` I guess my overall perspective...
I will work on this.
There is definitely a version of functor for what you described. ```scala trait Invariant[F[_]] { self => def invmap[A, B](ab: A => B, ba: B => A): F[A] => F[B]...