mpskowron
mpskowron
This doesn't compile for Scala 3.0.1 ``` import eu.timepit.refined.generic.Equal import eu.timepit.refined.collection.Size import eu.timepit.refined.refineV val size = 2 val arr = refineV[Size[Equal[size.type]]](Array(1, 2)) ``` Error message: ``` |val arr = refineV[Size[Equal[size.type]]](Array(1,...
Hello! Looks like adding Scala 3 support for the library is straightforward, but I couldn't make the tests work. I have been experimenting a little bit to solve compilation issues,...
Hi, I had a code like this: ``` let (mut sender, stream) = mpsc::channel(1000); tokio::task::spawn(async move { while { let item = ... sender.send(item).await.unwrap(); } }); let stream2 = pipe(Arc::new(Desync::new(0)),...