We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7271809 commit 3f7fcb6Copy full SHA for 3f7fcb6
1 file changed
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/allExcept.kt
@@ -552,8 +552,8 @@ public interface AllExceptColumnsSelectionDsl {
552
* @include [ColumnGroupDocs.ColumnPathArgs]
553
*/
554
@Interpretable("ColumnGroupAllColsExceptColumnPaths")
555
- public fun SingleColumn<DataRow<*>>.allColsExcept(vararg other: ColumnPath): ColumnSet<*> =
556
- allColsExceptInternal(other.toColumnSet())
+ public fun SingleColumn<DataRow<*>>.allColsExcept(vararg others: ColumnPath): ColumnSet<*> =
+ allColsExceptInternal(others.toColumnSet())
557
558
// endregion
559
0 commit comments