mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
14 lines
239 B
Kotlin
Vendored
14 lines
239 B
Kotlin
Vendored
package foo
|
|
|
|
fun mainJdk8(x: List<String>, j6List: Jdk6List<String>) {
|
|
x.stream().filter { it.length > 0 }
|
|
|
|
j6List.size
|
|
// TODO: stream should be available
|
|
j6List.stream()
|
|
|
|
buildList().stream()
|
|
|
|
myFile().toPath()
|
|
}
|