Arseniy Zhizhelev

Results 9 comments of Arseniy Zhizhelev

For deriving a custom `Validate` from existing one we might need an equivalence relation: ```scala final class Equivalence[A, B] private val equivalenceInstance = new Equivalence[Any, Any] type ``[A, B] =...

I found some strange behavior of Scala 3 inline of `*:`. Here is a small example: https://scastie.scala-lang.org/9GwHy3bOTsKDwd89bULfeA Error message (super helpful, btw) contains detailed information about the tree that quill...

This requires adding a finalizer to all stream steps. Then in every stream executor, these finalizers should be respected and appended to `io`.

Signature might look like ```go stream.Finally[A any](stm stream.Stream[A], func () io.IOUnit) stream.Stream[A] ```

There are two FStreams - one that is just a pair of stream and IO to finalize, and another one - IO of such pair. The difference is that IO...

Good idea. Meanwhile, I was trying to invoke each function in some test. So tests should provide some ideas on how to use the functions.

Hey, @wayddmldbzz, Thank you for your interest in this framework. Your stream-based Java-example looks nice. The Java DSL uses an important language feature. `Stream` interface approximately looks like this: ```java...

This might be complicated if at all possible. Moving to subpackage creates circular dependency.

I'll try take your suggestion into account in one of the next blog items.