vavr-kotlin
vavr-kotlin copied to clipboard
Vavr integration for Kotlin
Hi! It would be awesome with support for kotlin coroutines, to able to call suspending functions from eg. `Try.flatMap`. /d
When i use `Try.getOrElseThrow`, i get the following error:  This is the code in question: ```kotlin val flow = Try { flowDao.save(Flow(source.name, source.applicationId)) } .getOrElseThrow { FlowNameAlreadyInUse() } ```...
Reproduce issue #17 Try overload resolution ambiguity. Not sure if we want to merge this test, but at least I prove the issue exist with it.
Java collections in Kotlin can be easily converted to arrays using reified generics, and it would be nice to have the same functionality directly on Vavr collections. The implementation can...