Created
August 19, 2016 15:48
-
-
Save aembleton/fa153aa356a12284d48a2fb10dd59953 to your computer and use it in GitHub Desktop.
Find map keys that start with a given String
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 <V> Map<String,V>.startsWith(search:String):V? { | |
val reducedMap = this.toSortedMap().tailMap(search) | |
if (!reducedMap.isEmpty() && reducedMap.firstKey().startsWith(search)) { | |
return reducedMap.values.first() | |
} | |
return null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment