forked from JetBrains/kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sequence.kt
69 lines (59 loc) · 2.29 KB
/
Sequence.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Copyright 2010-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package templates
import templates.Family.*
object SequenceOps : TemplateGroupBase() {
val f_asIterable = fn("asIterable()") {
include(Iterables, ArraysOfObjects, ArraysOfPrimitives, Sequences, CharSequences, Maps)
} builder {
doc { "Creates an [Iterable] instance that wraps the original ${f.collection} returning its ${f.element.pluralize()} when being iterated." }
returns("Iterable<T>")
body {
"""
${ when(f) {
ArraysOfObjects, ArraysOfPrimitives -> "if (isEmpty()) return emptyList()"
CharSequences -> "if (this is String && isEmpty()) return emptyList()"
else -> ""
}}
return Iterable { this.iterator() }
"""
}
specialFor(Iterables, Maps) { inlineOnly() }
specialFor(Iterables) {
doc { "Returns this collection as an [Iterable]." }
body { "return this" }
}
body(Maps) { "return entries" }
}
val f_asSequence = fn("asSequence()") {
includeDefault()
include(CharSequences, Maps)
} builder {
doc {
"""
Creates a [Sequence] instance that wraps the original ${f.collection} returning its ${f.element.pluralize()} when being iterated.
"""
}
if (f in listOf(ArraysOfPrimitives, ArraysOfObjects, Iterables))
sample("samples.collections.Sequences.Building.sequenceFrom${f.doc.collection.capitalize()}")
returns("Sequence<T>")
body {
"""
${ when(f) {
ArraysOfObjects, ArraysOfPrimitives -> "if (isEmpty()) return emptySequence()"
CharSequences -> "if (this is String && isEmpty()) return emptySequence()"
else -> ""
}}
return Sequence { this.iterator() }
"""
}
body(Maps) { "return entries.asSequence()" }
specialFor(Sequences) {
doc { "Returns this sequence as a [Sequence]."}
inlineOnly()
body { "return this" }
}
}
}