kotlin.collections.Iterable

Iterable

inline fun <T> Iterable(
    crossinline iterator: () -> Iterator<T>
): Iterable<T>

Given an iterator function constructs an Iterable instance that returns values through the Iterator provided by that function.

© 2010–2017 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.登录查看完整内容