@@ -24,6 +24,7 @@ import org.jetbrains.kotlinx.dataframe.impl.headPlusArray
24
24
import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL
25
25
import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_COLS
26
26
import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_COLS_REPLACE
27
+ import org.jetbrains.kotlinx.dataframe.util.COLS_TO_ALL_REPLACE
27
28
import org.jetbrains.kotlinx.dataframe.util.DEPRECATED_ACCESS_API
28
29
import kotlin.reflect.KProperty
29
30
@@ -250,7 +251,7 @@ public interface ColsColumnsSelectionDsl<out _UNUSED> {
250
251
public fun <C > ColumnSet<C>.cols (predicate : ColumnFilter <C >): ColumnSet <C > =
251
252
colsInternal(predicate as ColumnFilter <* >).cast()
252
253
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 )
254
255
public fun <C > ColumnSet<C>.cols (): ColumnSet <C > = cols { true }
255
256
256
257
/* * @include [ColumnSetColsPredicateDocs] */
@@ -278,7 +279,7 @@ public interface ColsColumnsSelectionDsl<out _UNUSED> {
278
279
public fun ColumnsSelectionDsl <* >.cols (predicate : ColumnFilter <* >): ColumnSet <* > =
279
280
this .asSingleColumn().colsInternal(predicate)
280
281
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 )
282
283
public fun ColumnsSelectionDsl <* >.cols (): ColumnSet <* > = cols { true }
283
284
284
285
/* * @include [ColumnsSelectionDslColsPredicateDocs] */
0 commit comments