What is kotlinx?

What is the kotlinx package? I can’t find any information about this.

Also, why don’t many of the kotlinx libraries have any documentation? See here. Many of those libraries don’t have even have a sentence describing what the library is, much less zero sentences describing what any of the functions or classes inside the libraries do.

kotlinx contains projects that aren’t part of the standard library but serve as extensions of it. As such, you won’t find their documentation in the stdlib docs.

They usually have their own docs found in their respective repository or github-pages site like coroutines and serialization.

1 Like