pawel.barszcz
12/18/2016, 11:41 PMKotlinslang
?
https://github.com/kotlins/kotlinslang
At the moment I’m trying to be more “functional” with ?.
, ?:
, and ?.let{ … }
syntax but I believe that there can be more. In some parts of code I use Result
( https://github.com/kittinunf/Result ) to get rid of multiple nested try-catch blocks. But maybe something more? And someething more to grasp functors/monads concept? (as described here https://dzone.com/articles/functor-and-monad-examples-in-plain-java )
Any recommendations?