Kotlin Futures
I have been experimenting with Kotlin (a new JVM language) from the makers of Intellij (the IDE). If you are someone who writes a lot of code for Android and are languishing in the Java 6.5
-ish world - then checkout Kotlin. It’s a breath of fresh air.
I am working on an implementation of Future
‘s for Kotlin. The objectives of this module are:
- Be minimal and simple.
- Help clean callback ridden code (and support higher combinators like
map
andflatMap
).
Here is the basic implementation and a quick-start. If you have ideas or suggestions, pull requests are welcome.