Where is the reference documentation for the stdli...
# getting-started
s
Where is the reference documentation for the stdlib? I know about https://kotlinlang.org/api/latest/jvm/stdlib/ but I want more detail. For example, what are all
List
constructors, what are the performance characteristics of
List.plus
etc.
n
I think that's it
the source is super easy to read, though
I do wish the documentation was at the Ludicrous Thoroughness level of the JDK though
s
Hmm that's weird .... the whole documentation page is so well written and I'm sure it took such a long time to get to this state. Too bad there isn't a more detailed version. To the code I guess ...
n
I also lean on IntelliJ's autocomplete quite heavily...like just say
list
and you have all your list constructors.
s
Yeah, that's what I've been doing the last couple of days...