Skip to content

Commit 9696c32

Browse files
ktlint format
1 parent 180b5d0 commit 9696c32

File tree

1 file changed

+2
-1
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,8 @@ public fun <T> InsertClause<T>.before(column: ColumnSelector<T, *>): DataFrame<T
394394
* before which the new column will be inserted.
395395
* @return A new [DataFrame] with the inserted column placed before the specified column.
396396
*/
397-
public fun <T> InsertClause<T>.before(column: String): DataFrame<T> = df.add(this.column).move(this.column).before(column)
397+
public fun <T> InsertClause<T>.before(column: String): DataFrame<T> =
398+
df.add(this.column).move(this.column).before(column)
398399

399400
internal fun <T> InsertClause<T>.beforeImpl(columnPath: ColumnPath): DataFrame<T> {
400401
val dstPath = ColumnPath(columnPath.removeAt(columnPath.size - 1) + column.name())

0 commit comments

Comments
 (0)