sitepodmatt
fun main(argv: Array<String>) { listOf(1,2,3,4,5).asSequence().filterUntil2 { it == 3 }.map { it * 2}.forEach { println(it) } }`