Created
December 22, 2019 13:00
-
-
Save zsoltk/3fbc0fe97fe79107f9524e67e2a66a0d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
class Entry<T>(val element: T) { | |
val children: MutableMap<Any, BackStack<*>> = mutableMapOf() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment