Simple CSV parser (#383)

This commit is contained in:
Nikolay Igotti
2017-03-23 17:15:39 +03:00
committed by GitHub
parent afcce921f2
commit c55d0cd674
7 changed files with 344 additions and 5 deletions
@@ -2256,10 +2256,8 @@ public inline fun <T> Iterable<T>.asIterable(): Iterable<T> {
/**
* Creates a [Sequence] instance that wraps the original collection returning its elements when being iterated.
*/
@FixmeSequences
public fun <T> Iterable<T>.asSequence(): Sequence<T> {
//return Sequence { this.iterator() }
TODO()
return Sequence { this.iterator() }
}
/**