Simon Vergauwen

Results 206 comments of Simon Vergauwen
trafficstars

Hey @rishabhdeepsingh, This is already possible by combining Kotlin's nullable syntax with `Either`. ```kotlin fun doSomething( drawable: Either? = null ) { drawable?.let { // drawable is Null }.ifLeft{ //...

Seems I forgot to use proper `?.` syntax in some cases. Do these work? ```kotlin fun doSomething( drawable: Either? = null ) { drawable?.ifLeft{ // Int is passed }?.ifRight {...

@dotCipher @andre-krueger we're absolutely open to such contributions! This is currently not high on our own priority list however. If someone prefers to build it outside of this repo, we'd...

Design doc: The internal implementation of `Resource` has heavily changed, and the public API has been adjusted to be in line with the DSL oriented changes we're making for Arrow...

Thanks for sharing your thoughts @serras šŸ™Œ > I think Resource is a good name, especially because resourceA.use { ... } maps very clearly to "I'm using a resource". I...

@serras, I can also revert the naming changes and then we can keep this PR contained to the API. All new signatures can be back-ported to 1.1.x, and then we...

Yes, that makes more sense. I’m going to revert the naming changes šŸ‘

@serras, not to block this PR but I have given this some more thought on the naming and I am back to leaning for `Scope` šŸ˜… My rationale being the...

> To me backporting this PR feels less important than having a nice API in Arrow 2.x Agreed, but most of these APIs can be very easily back ported to...

Hey @rougsig, > If needed, i can add the iframe flag for include diagram only, without extra layout. > Also i can add extra operators from arrow to diagram, if...