File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,18 @@ public fun <T> DataColumn<Collection<T>>.concat(): List<T> = values.flatten()
19
19
20
20
// region DataRow
21
21
22
- public fun <T > DataRow<T>.concat (vararg other : DataRow <T >): DataFrame <T > = (listOf (this ) + other ).concat()
22
+ public fun <T > DataRow<T>.concat (vararg rows : DataRow <T >): DataFrame <T > = (listOf (this ) + rows ).concat()
23
23
24
24
// endregion
25
25
26
26
// region DataFrame
27
27
28
- public fun <T > DataFrame<T>.concat (vararg other : DataFrame <T >): DataFrame <T > = concatImpl(listOf (this ) + other)
28
+ public fun <T > DataFrame<T>.concat (vararg frames : DataFrame <T >): DataFrame <T > = concatImpl(listOf (this ) + frames)
29
+
30
+ @JvmName(" concatT" )
31
+ public fun <T > DataFrame<T>.concat (rows : Iterable <DataRow <T >>): DataFrame <T > = (rows() + rows).concat()
32
+
33
+ public fun <T > DataFrame<T>.concat (frames : Iterable <DataFrame <T >>): DataFrame <T > = (listOf (this ) + frames).concat()
29
34
30
35
// endregion
31
36
You can’t perform that action at this time.
0 commit comments