I am beginer with Kotlin, I am readig the official Documentation
My problem is that not sure how can I interpretate the documentation, by ex:
inline fun <T, R> T.let(block: (T) -> R): R
How should read this?
What you have linked here is an api reference in the official documentation.I guess you are having troubles understanding the syntax of Generics here.