Hacker News new | ask | show | jobs
by kuschku 3199 days ago
While Java’s option is quite painful

    Function<Number, Function<Number, Function<Number, Number>>>
The same in Kotlin is actually okayish:

    (Number) -> (Number) -> (Number) -> Number