Skip to content

Commit 66c8a36

Browse files
Automated commit of generated code
1 parent 9af7357 commit 66c8a36

File tree

1 file changed

+4
-0
lines changed
  • core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+4
-0
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/split.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,8 @@ public fun <T, C, R> SplitWithTransform<T, C, R>.inward(
295295
vararg otherNames: KProperty<*>,
296296
): DataFrame<T> = inward(listOf(firstName.columnName) + otherNames.map { it.columnName })
297297

298+
@Refine
299+
@Interpretable("SplitIterableInward")
298300
public inline fun <T, C : Iterable<R>, reified R> Split<T, C>.inward(
299301
vararg names: String,
300302
noinline extraNamesGenerator: ColumnNamesGenerator<C>? = null,
@@ -306,6 +308,8 @@ public fun <T, C : DataFrame<R>, R> Split<T, C>.inward(
306308
extraNamesGenerator: ColumnNamesGenerator<C>? = null,
307309
): DataFrame<T> = by { it.rows() }.inward(names.toList(), extraNamesGenerator)
308310

311+
@Refine
312+
@Interpretable("SplitPairInward")
309313
public fun <T, A, B> Split<T, Pair<A, B>>.inward(firstCol: String, secondCol: String): DataFrame<T> =
310314
by { listOf(it.first, it.second) }.inward(firstCol, secondCol)
311315

0 commit comments

Comments
 (0)