Skip to content

Commit 34d90d6

Browse files
Automated commit of generated code
1 parent 319191c commit 34d90d6

File tree

20 files changed

+158
-73
lines changed

20 files changed

+158
-73
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/all.kt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
222222
* @see [ColumnsSelectionDsl.cols]
223223
*/
224224
@Suppress("UNCHECKED_CAST")
225+
@Interpretable("All0")
225226
public fun <C> ColumnSet<C>.all(): TransformableColumnSet<C> = allColumnsInternal() as TransformableColumnSet<C>
226227

227228
/**
@@ -272,7 +273,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
272273
* @see [ColumnsSelectionDsl.allExcept]
273274
* @see [ColumnsSelectionDsl.cols]
274275
*/
275-
@Interpretable("All0")
276+
@Interpretable("All1")
276277
public fun ColumnsSelectionDsl<*>.all(): TransformableColumnSet<*> = asSingleColumn().allColumnsInternal()
277278

278279
/**
@@ -323,6 +324,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
323324
* @see [ColumnsSelectionDsl.allExcept]
324325
* @see [ColumnsSelectionDsl.cols]
325326
*/
327+
@Interpretable("All2")
326328
public fun SingleColumn<DataRow<*>>.allCols(): TransformableColumnSet<*> =
327329
ensureIsColumnGroup().allColumnsInternal()
328330

@@ -783,6 +785,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
783785
* @param [column] The specified column after which all columns should be taken. This column can be referenced
784786
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
785787
*/
788+
@Interpretable("AllAfter0")
786789
public fun <C> ColumnSet<C>.allAfter(column: AnyColumnReference): ColumnSet<C> = allAfter(column.path())
787790

788791
/** ## All (Cols) After
@@ -904,6 +907,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
904907
* @param [column] The specified column after which all columns should be taken. This column can be referenced
905908
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
906909
*/
910+
@Interpretable("AllAfter1")
907911
public fun <T> ColumnsSelectionDsl<T>.allAfter(column: ColumnSelector<T, *>): ColumnSet<*> =
908912
asSingleColumn().allColsAfter(column)
909913

@@ -1085,6 +1089,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
10851089
* @param [column] The specified column after which all columns should be taken. This column can be referenced
10861090
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
10871091
*/
1092+
@Interpretable("AllAfter2")
10881093
public fun ColumnsSelectionDsl<*>.allAfter(column: AnyColumnReference): ColumnSet<*> = allAfter(column.path())
10891094

10901095
/** ## All (Cols) After
@@ -2677,6 +2682,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
26772682
* @param [column] The specified column from which all columns should be taken. This column can be referenced
26782683
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
26792684
*/
2685+
@Interpretable("AllFrom0")
26802686
public fun <C> ColumnSet<C>.allFrom(column: AnyColumnReference): ColumnSet<C> = allFrom(column.path())
26812687

26822688
/** ## All (Cols) From
@@ -2797,6 +2803,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
27972803
* @param [column] The specified column from which all columns should be taken. This column can be referenced
27982804
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
27992805
*/
2806+
@Interpretable("AllFrom1")
28002807
public fun <T> ColumnsSelectionDsl<T>.allFrom(column: ColumnSelector<T, *>): ColumnSet<*> =
28012808
asSingleColumn().allColsFrom(column)
28022809

@@ -2978,6 +2985,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
29782985
* @param [column] The specified column from which all columns should be taken. This column can be referenced
29792986
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
29802987
*/
2988+
@Interpretable("AllFrom2")
29812989
public fun ColumnsSelectionDsl<*>.allFrom(column: AnyColumnReference): ColumnSet<*> =
29822990
asSingleColumn().allColsFrom(column)
29832991

@@ -4569,6 +4577,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
45694577
* @param [column] The specified column before which all columns should be taken. This column can be referenced
45704578
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
45714579
*/
4580+
@Interpretable("AllBefore0")
45724581
public fun <C> ColumnSet<C>.allBefore(column: AnyColumnReference): ColumnSet<C> = allBefore(column.path())
45734582

45744583
/** ## All (Cols) Before
@@ -4690,6 +4699,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
46904699
* @param [column] The specified column before which all columns should be taken. This column can be referenced
46914700
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
46924701
*/
4702+
@Interpretable("AllBefore1")
46934703
public fun <T> ColumnsSelectionDsl<T>.allBefore(column: ColumnSelector<T, *>): ColumnSet<*> =
46944704
asSingleColumn().allColsBefore(column)
46954705

@@ -4872,6 +4882,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
48724882
* @param [column] The specified column before which all columns should be taken. This column can be referenced
48734883
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
48744884
*/
4885+
@Interpretable("AllBefore2")
48754886
public fun ColumnsSelectionDsl<*>.allBefore(column: AnyColumnReference): ColumnSet<*> = allBefore(column.path())
48764887

48774888
/** ## All (Cols) Before
@@ -6462,6 +6473,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
64626473
* @param [column] The specified column up to which all columns should be taken. This column can be referenced
64636474
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
64646475
*/
6476+
@Interpretable("AllUpTo0")
64656477
public fun <C> ColumnSet<C>.allUpTo(column: AnyColumnReference): ColumnSet<C> = allUpTo(column.path())
64666478

64676479
/** ## All (Cols) Up To
@@ -6582,6 +6594,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
65826594
* @param [column] The specified column up to which all columns should be taken. This column can be referenced
65836595
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
65846596
*/
6597+
@Interpretable("AllUpTo1")
65856598
public fun <T> ColumnsSelectionDsl<T>.allUpTo(column: ColumnSelector<T, *>): ColumnSet<*> =
65866599
asSingleColumn().allColsUpTo(column)
65876600

@@ -6763,6 +6776,7 @@ public interface AllColumnsSelectionDsl<out _UNUSED> {
67636776
* @param [column] The specified column up to which all columns should be taken. This column can be referenced
67646777
* to both relatively to the current [ColumnsResolver][org.jetbrains.kotlinx.dataframe.columns.ColumnsResolver] and absolutely.
67656778
*/
6779+
@Interpretable("AllUpTo2")
67666780
public fun ColumnsSelectionDsl<*>.allUpTo(column: AnyColumnReference): ColumnSet<*> =
67676781
asSingleColumn().allColsUpTo(column)
67686782

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/colGroups.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import org.jetbrains.kotlinx.dataframe.AnyRow
44
import org.jetbrains.kotlinx.dataframe.DataFrame
55
import org.jetbrains.kotlinx.dataframe.DataRow
66
import org.jetbrains.kotlinx.dataframe.Predicate
7+
import org.jetbrains.kotlinx.dataframe.annotations.Interpretable
78
import org.jetbrains.kotlinx.dataframe.columns.ColumnGroup
89
import org.jetbrains.kotlinx.dataframe.columns.ColumnPath
910
import org.jetbrains.kotlinx.dataframe.columns.ColumnReference
@@ -175,6 +176,7 @@ public interface ColGroupsColumnsSelectionDsl {
175176
* @see [ColumnsSelectionDsl.frameCols]
176177
* @see [ColumnsSelectionDsl.valueCols]
177178
*/
179+
@Interpretable("ColGroups0")
178180
public fun ColumnSet<*>.colGroups(filter: Predicate<ColumnGroup<*>> = { true }): TransformableColumnSet<AnyRow> =
179181
columnGroupsInternal(filter)
180182

@@ -210,6 +212,7 @@ public interface ColGroupsColumnsSelectionDsl {
210212
* @see [ColumnsSelectionDsl.frameCols]
211213
* @see [ColumnsSelectionDsl.valueCols]
212214
*/
215+
@Interpretable("ColGroups1")
213216
public fun ColumnsSelectionDsl<*>.colGroups(
214217
filter: Predicate<ColumnGroup<*>> = { true },
215218
): TransformableColumnSet<AnyRow> = asSingleColumn().columnGroupsInternal(filter)
@@ -246,6 +249,7 @@ public interface ColGroupsColumnsSelectionDsl {
246249
* @see [ColumnsSelectionDsl.frameCols]
247250
* @see [ColumnsSelectionDsl.valueCols]
248251
*/
252+
@Interpretable("ColGroups2")
249253
public fun SingleColumn<DataRow<*>>.colGroups(
250254
filter: Predicate<ColumnGroup<*>> = { true },
251255
): TransformableColumnSet<AnyRow> = this.ensureIsColumnGroup().columnGroupsInternal(filter)

0 commit comments

Comments
 (0)