diff --git a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/move.kt b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/move.kt index a2e761dfee..c4d6c86ccc 100644 --- a/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/move.kt +++ b/core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/move.kt @@ -191,6 +191,8 @@ private interface CommonMoveToDocs * where the selected columns will be moved. * @param [columns\] The [Columns Selector][ColumnsSelector] used to select the columns of this [DataFrame] to move. */ +@Refine +@Interpretable("MoveTo1") public fun DataFrame.moveTo(newColumnIndex: Int, columns: ColumnsSelector): DataFrame = move(columns).to(newColumnIndex)