-
-
Save cbeust/1713d854cd4601997c0c285b58bbf9e8 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
fun <T, U> displayGraphGeneric(roots: List<T>, | |
children: (T) -> List<T>, | |
value: (T) -> U, | |
indent: String = “”) { | |
roots.forEach { | |
println(indent + value(it)) | |
displayGraphGeneric(children(it), children, value, | |
indent + “ “) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment