aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/StringUtil.kt
blob: d9253cbce39da3462bd2e7b0f5be84ecc1ebee80 (plain)
1
2
3
4
5
6
7
8
9
package moe.nea.firmament.util

object StringUtil {
	fun String.words(): Sequence<String> {
		return splitToSequence(" ") // TODO: better boundaries
	}

	fun Iterable<String>.unwords() = joinToString(" ")
}