Skip to content

Commit c7db2b5

Browse files
committed
removed Move into annotations, as the compiler plugin cannot handle those cases well yet
1 parent 0a3be0c commit c7db2b5

File tree

1 file changed

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

1 file changed

+0
-4
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/move.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,6 @@ public fun <T> DataFrame<T>.moveToEnd(vararg columns: KProperty<*>): DataFrame<T
400400
* @param [column] The [Column With Path Selector][ColumnsSelector] used to specify
401401
* a path in the [DataFrame] to move columns.
402402
*/
403-
@Refine
404-
@Interpretable("MoveInto1")
405403
public fun <T, C> MoveClause<T, C>.into(
406404
column: ColumnsSelectionDsl<T>.(ColumnWithPath<C>) -> AnyColumnReference,
407405
): DataFrame<T> =
@@ -440,8 +438,6 @@ public fun <T, C> MoveClause<T, C>.into(column: String): DataFrame<T> = pathOf(c
440438
* @param [column] The [Column With Path Selector And Indices][ColumnsSelector] used to specify
441439
* a path in the [DataFrame] to move columns.
442440
*/
443-
@Refine
444-
@Interpretable("MoveInto2")
445441
public fun <T, C> MoveClause<T, C>.intoIndexed(
446442
newPathExpression: ColumnsSelectionDsl<T>.(ColumnWithPath<C>, Int) -> AnyColumnReference,
447443
): DataFrame<T> {

0 commit comments

Comments
 (0)