Last active
November 6, 2021 21:56
-
-
Save Morfly/8ebfbfbad1fafb2034fe99e383bd7033 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
typealias Destinations = Map<Class<out FeatureEntry>, @JvmSuppressWildcards FeatureEntry> | |
inline fun <reified T : FeatureEntry> Destinations.find(): T = | |
this[T::class.java] as T |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment