ibaker 873ec1544e Remove nested import of Player.Events from PlayerExtensions.listen
This makes it clearer that the part inside and outside the parentheses
are clearly different, and not "just" a reference to `Player.Events`.
Specifically this syntax is showing that the function has a `Player`
"receiver", **and** is a function from `Player.Events` to `Unit`.

https://kotlinlang.org/docs/lambdas.html#function-types

PiperOrigin-RevId: 663293405
2024-08-15 07:07:48 -07:00
..

Common Kotlin Extensions module

Provides Kotlin-specific common code and utilities. Examples include extension functions and properties, named parameters and coroutines. They help provide idiomatic Kotlin APIs to be used by Media3 consumers.