It's clear as hell in Java :slightly_smiling_face:...
# getting-started
c
It's clear as hell in Java 🙂 - This is a porting excercise - rethinking the code is out-of-scope. Let me hack on this a bit more
a
You could use a typealias
typealias MyConsumer = (String) -> Unit
, then you end up with
Map<String, (SomeObject) -> MyConsumer>
👍 1