Are there any plans to have a complete API for Kot...
# announcements
e
Are there any plans to have a complete API for Kotlin similar to https://docs.oracle.com/javase/8/docs/api/ For example, I was poking around on https://kotlinlang.org/api/latest/jvm/stdlib/ but I find this format less useful than the standard javadoc page. In particular, I cannot easily search for things. For example, I was reading http://jamie.mccrindle.org/2013/01/a-functional-iterate-for-kotlin.html and thought I would try some of the code. But when I copy/pasted the code compiles with Error:(35, 20) Kotlin: Unresolved reference: iterate I then went on a hunt to see where the iterate function was defined, but cannot find it anywhere. My best guess is that this has been deprecated and no longer exists, but I cannot confirm. Anyway, I am finding that my established skills at figuring things out with Java are failing me with Kotlin, and lamenting that the old ways don't work any more.