@@ -24,6 +24,7 @@ import org.jetbrains.kotlinx.dataframe.impl.headPlusArray
2424import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL
2525import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_COLS
2626import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_COLS_REPLACE
27+ import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_REPLACE
2728import org.jetbrains.kotlinx.dataframe.util.DEPRECATED_ACCESS_API
2829import kotlin.reflect.KProperty
2930
@@ -250,7 +251,7 @@ public interface ColsColumnsSelectionDsl<out _UNUSED> {
250251 public fun <C > ColumnSet<C>.cols (predicate : ColumnFilter <C >): ColumnSet <C > =
251252 colsInternal(predicate as ColumnFilter <* >).cast()
252253
253- @Deprecated(COLS_TO_ALL , ReplaceWith (COLS_TO_ALL_COLS_REPLACE ), DeprecationLevel .ERROR )
254+ @Deprecated(COLS_TO_ALL , ReplaceWith (COLS_TO_ALL_REPLACE ), DeprecationLevel .ERROR )
254255 public fun <C > ColumnSet<C>.cols (): ColumnSet <C > = cols { true }
255256
256257 /* * @include [ColumnSetColsPredicateDocs] */
@@ -278,7 +279,7 @@ public interface ColsColumnsSelectionDsl<out _UNUSED> {
278279 public fun ColumnsSelectionDsl <* >.cols (predicate : ColumnFilter <* >): ColumnSet <* > =
279280 this .asSingleColumn().colsInternal(predicate)
280281
281- @Deprecated(COLS_TO_ALL , ReplaceWith (COLS_TO_ALL_COLS_REPLACE ), DeprecationLevel .ERROR )
282+ @Deprecated(COLS_TO_ALL , ReplaceWith (COLS_TO_ALL_REPLACE ), DeprecationLevel .ERROR )
282283 public fun ColumnsSelectionDsl <* >.cols (): ColumnSet <* > = cols { true }
283284
284285 /* * @include [ColumnsSelectionDslColsPredicateDocs] */
0 commit comments