https://kotlinlang.org logo
Title
r

raulraja

02/15/2018, 12:09 PM
For those of you getting initiated into FP and wanting to learn what you can use
Try
for: https://twitter.com/arrow_kt/status/964099546103123969
b

benleggiero

02/19/2018, 4:36 AM
If only there were language-level error handling like this… https://github.com/Kotlin/KEEP/pull/81
t

tschuchort

02/19/2018, 10:37 AM
Imo the better approach would be to enable operator overloading for type constructors:
type operator T|S = Either<T,S>
and monad comprehensions like in haskell. That's much more flexible, but we're quickly approaching scala-levels of language complexity
p

pakoito

02/19/2018, 10:39 AM
which is not our objective 😄 No linear types, no scoped implicits.