forked from JetBrains/kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrdering.kt
387 lines (353 loc) · 11.9 KB
/
Ordering.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
/*
* Copyright 2010-2018 JetBrains s.r.o. 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.*
import templates.SequenceClass.*
object Ordering : TemplateGroupBase() {
val f_reverse = fn("reverse()") {
include(Lists, InvariantArraysOfObjects, ArraysOfPrimitives)
} builder {
doc { "Reverses ${f.element.pluralize()} in the ${f.collection} in-place." }
returns("Unit")
body {
"""
val midPoint = (size / 2) - 1
if (midPoint < 0) return
var reverseIndex = lastIndex
for (index in 0..midPoint) {
val tmp = this[index]
this[index] = this[reverseIndex]
this[reverseIndex] = tmp
reverseIndex--
}
"""
}
specialFor(Lists) {
receiver("MutableList<T>")
on(Platform.JVM) {
body { """java.util.Collections.reverse(this)""" }
}
}
}
val f_reversed = fn("reversed()") {
include(Iterables, ArraysOfObjects, ArraysOfPrimitives, CharSequences, Strings)
} builder {
doc { "Returns a list with elements in reversed order." }
returns("List<T>")
body {
"""
if (this is Collection && size <= 1) return toList()
val list = toMutableList()
list.reverse()
return list
"""
}
body(ArraysOfObjects, ArraysOfPrimitives) {
"""
if (isEmpty()) return emptyList()
val list = toMutableList()
list.reverse()
return list
"""
}
specialFor(CharSequences, Strings) {
returns("SELF")
doc { "Returns a ${f.collection} with characters in reversed order." }
}
body(CharSequences) { "return StringBuilder(this).reverse()" }
specialFor(Strings) { inlineOnly() }
body(Strings) { "return (this as CharSequence).reversed().toString()" }
}
val f_reversedArray = fn("reversedArray()") {
include(InvariantArraysOfObjects, ArraysOfPrimitives)
} builder {
doc { "Returns an array with elements of this array in reversed order." }
returns("SELF")
body(InvariantArraysOfObjects) {
"""
if (isEmpty()) return this
val result = arrayOfNulls(this, size)
val lastIndex = lastIndex
for (i in 0..lastIndex)
result[lastIndex - i] = this[i]
return result
"""
}
body(ArraysOfPrimitives) {
"""
if (isEmpty()) return this
val result = SELF(size)
val lastIndex = lastIndex
for (i in 0..lastIndex)
result[lastIndex - i] = this[i]
return result
"""
}
}
val f_sorted = fn("sorted()") {
includeDefault()
exclude(PrimitiveType.Boolean)
} builder {
doc {
"""
Returns a list of all elements sorted according to their natural sort order.
"""
}
returns("List<T>")
typeParam("T : Comparable<T>")
body {
"""
if (this is Collection) {
if (size <= 1) return this.toList()
@Suppress("UNCHECKED_CAST")
return (toTypedArray<Comparable<T>>() as Array<T>).apply { sort() }.asList()
}
return toMutableList().apply { sort() }
"""
}
body(ArraysOfPrimitives) {
"""
return toTypedArray().apply { sort() }.asList()
"""
}
body(ArraysOfObjects) {
"""
return sortedArray().asList()
"""
}
specialFor(Sequences) {
returns("SELF")
doc {
"Returns a sequence that yields elements of this sequence sorted according to their natural sort order."
}
sequenceClassification(intermediate, stateful)
}
body(Sequences) {
"""
return object : Sequence<T> {
override fun iterator(): Iterator<T> {
val sortedList = [email protected]()
sortedList.sort()
return sortedList.iterator()
}
}
"""
}
}
val f_sortedArray = fn("sortedArray()") {
include(InvariantArraysOfObjects, ArraysOfPrimitives)
exclude(PrimitiveType.Boolean)
} builder {
doc {
"Returns an array with all elements of this array sorted according to their natural sort order."
}
typeParam("T : Comparable<T>")
returns("SELF")
body {
"""
if (isEmpty()) return this
return this.copyOf().apply { sort() }
"""
}
}
val f_sortDescending = fn("sortDescending()") {
include(Lists, ArraysOfObjects, ArraysOfPrimitives)
exclude(PrimitiveType.Boolean)
} builder {
doc { """Sorts elements in the ${f.collection} in-place descending according to their natural sort order.""" }
returns("Unit")
typeParam("T : Comparable<T>")
specialFor(Lists) {
receiver("MutableList<T>")
}
body { """sortWith(reverseOrder())""" }
body(ArraysOfPrimitives) {
"""
if (size > 1) {
sort()
reverse()
}
"""
}
}
val f_sortedDescending = fn("sortedDescending()") {
includeDefault()
exclude(PrimitiveType.Boolean)
} builder {
doc {
"""
Returns a list of all elements sorted descending according to their natural sort order.
"""
}
returns("List<T>")
typeParam("T : Comparable<T>")
body {
"""
return sortedWith(reverseOrder())
"""
}
body(ArraysOfPrimitives) {
"""
return copyOf().apply { sort() }.reversed()
"""
}
specialFor(Sequences) {
returns("SELF")
doc {
"Returns a sequence that yields elements of this sequence sorted descending according to their natural sort order."
}
sequenceClassification(intermediate, stateful)
}
}
val f_sortedArrayDescending = fn("sortedArrayDescending()") {
include(InvariantArraysOfObjects, ArraysOfPrimitives)
exclude(PrimitiveType.Boolean)
} builder {
doc {
"Returns an array with all elements of this array sorted descending according to their natural sort order."
}
typeParam("T : Comparable<T>")
returns("SELF")
body(InvariantArraysOfObjects) {
"""
if (isEmpty()) return this
return this.copyOf().apply { sortWith(reverseOrder()) }
"""
}
body(ArraysOfPrimitives) {
"""
if (isEmpty()) return this
return this.copyOf().apply { sortDescending() }
"""
}
}
val f_sortedWith = fn("sortedWith(comparator: Comparator<in T>)") {
includeDefault()
} builder {
returns("List<T>")
doc {
"""
Returns a list of all elements sorted according to the specified [comparator].
"""
}
body {
"""
if (this is Collection) {
if (size <= 1) return this.toList()
@Suppress("UNCHECKED_CAST")
return (toTypedArray<Any?>() as Array<T>).apply { sortWith(comparator) }.asList()
}
return toMutableList().apply { sortWith(comparator) }
"""
}
body(ArraysOfPrimitives) {
"""
return toTypedArray().apply { sortWith(comparator) }.asList()
"""
}
body(ArraysOfObjects) {
"""
return sortedArrayWith(comparator).asList()
"""
}
specialFor(Sequences) {
returns("SELF")
doc {
"Returns a sequence that yields elements of this sequence sorted according to the specified [comparator]."
}
sequenceClassification(intermediate, stateful)
}
body(Sequences) {
"""
return object : Sequence<T> {
override fun iterator(): Iterator<T> {
val sortedList = [email protected]()
sortedList.sortWith(comparator)
return sortedList.iterator()
}
}
"""
}
}
val f_sortedArrayWith = fn("sortedArrayWith(comparator: Comparator<in T>)") {
include(ArraysOfObjects)
} builder {
doc {
"Returns an array with all elements of this array sorted according the specified [comparator]."
}
returns("SELF")
body {
"""
if (isEmpty()) return this
return this.copyOf().apply { sortWith(comparator) }
"""
}
}
val f_sortBy = fn("sortBy(crossinline selector: (T) -> R?)") {
include(Lists, ArraysOfObjects)
} builder {
inline()
doc { """Sorts elements in the ${f.collection} in-place according to natural sort order of the value returned by specified [selector] function.""" }
returns("Unit")
typeParam("R : Comparable<R>")
specialFor(Lists) { receiver("MutableList<T>") }
body { """if (size > 1) sortWith(compareBy(selector))""" }
}
val f_sortedBy = fn("sortedBy(crossinline selector: (T) -> R?)") {
includeDefault()
} builder {
inline()
returns("List<T>")
typeParam("R : Comparable<R>")
doc {
"""
Returns a list of all elements sorted according to natural sort order of the value returned by specified [selector] function.
"""
}
specialFor(Sequences) {
returns("SELF")
doc {
"Returns a sequence that yields elements of this sequence sorted according to natural sort order of the value returned by specified [selector] function."
}
sequenceClassification(intermediate, stateful)
}
body {
"return sortedWith(compareBy(selector))"
}
}
val f_sortByDescending = fn("sortByDescending(crossinline selector: (T) -> R?)") {
include(Lists, ArraysOfObjects)
} builder {
inline()
doc { """Sorts elements in the ${f.collection} in-place descending according to natural sort order of the value returned by specified [selector] function.""" }
returns("Unit")
typeParam("R : Comparable<R>")
specialFor(Lists) { receiver("MutableList<T>") }
body {
"""if (size > 1) sortWith(compareByDescending(selector))""" }
}
val f_sortedByDescending = fn("sortedByDescending(crossinline selector: (T) -> R?)") {
includeDefault()
} builder {
inline()
returns("List<T>")
typeParam("R : Comparable<R>")
doc {
"""
Returns a list of all elements sorted descending according to natural sort order of the value returned by specified [selector] function.
"""
}
specialFor(Sequences) {
returns("SELF")
doc {
"Returns a sequence that yields elements of this sequence sorted descending according to natural sort order of the value returned by specified [selector] function."
}
sequenceClassification(intermediate, stateful)
}
body {
"return sortedWith(compareByDescending(selector))"
}
}
}