Skip to content

Commit c49baf9

Browse files
Automated commit of generated code
1 parent 9661de9 commit c49baf9

File tree

4 files changed

+758
-8
lines changed

4 files changed

+758
-8
lines changed

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/aggregation/AggregateDsl.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package org.jetbrains.kotlinx.dataframe.aggregation
22

33
import org.jetbrains.kotlinx.dataframe.DataFrame
4+
import org.jetbrains.kotlinx.dataframe.annotations.AccessApiOverload
45
import org.jetbrains.kotlinx.dataframe.annotations.HasSchema
56
import org.jetbrains.kotlinx.dataframe.annotations.Interpretable
67
import org.jetbrains.kotlinx.dataframe.api.ColumnSelectionDsl
@@ -9,6 +10,7 @@ import org.jetbrains.kotlinx.dataframe.columns.ColumnAccessor
910
import org.jetbrains.kotlinx.dataframe.impl.aggregation.ValueWithDefault
1011
import org.jetbrains.kotlinx.dataframe.impl.aggregation.receivers.internal
1112
import org.jetbrains.kotlinx.dataframe.impl.columnName
13+
import org.jetbrains.kotlinx.dataframe.util.DEPRECATED_ACCESS_API
1214
import kotlin.reflect.KProperty
1315
import kotlin.reflect.typeOf
1416

@@ -21,9 +23,13 @@ public abstract class AggregateDsl<out T> :
2123
public inline infix fun <reified R> R.into(name: String): NamedValue =
2224
internal().yield(pathOf(name), this, typeOf<R>())
2325

26+
@Deprecated(DEPRECATED_ACCESS_API)
27+
@AccessApiOverload
2428
public inline infix fun <reified R> R.into(column: ColumnAccessor<R>): NamedValue =
2529
internal().yield(pathOf(column.name()), this, typeOf<R>())
2630

31+
@Deprecated(DEPRECATED_ACCESS_API)
32+
@AccessApiOverload
2733
public inline infix fun <reified R> R.into(column: KProperty<R>): NamedValue =
2834
internal().yield(pathOf(column.columnName), this, typeOf<R>())
2935

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ import kotlin.reflect.KProperty
1919
// region DataFrame
2020

2121
/**
22-
* Groups the specified [columns] within the [DataFrame].
22+
* Groups the specified [columns] within the [DataFrame] into
23+
* [column group][ColumnGroup].
2324
*
2425
* This function does not immediately group the columns but instead select columns to group and
2526
* returns a [GroupClause],
@@ -142,7 +143,8 @@ internal interface GroupDocs {
142143
}
143144

144145
/**
145-
* Groups the specified [columns] within the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame].
146+
* Groups the specified [columns] within the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] into
147+
* [column group][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup].
146148
*
147149
* This function does not immediately group the columns but instead select columns to group and
148150
* returns a [GroupClause][org.jetbrains.kotlinx.dataframe.api.GroupClause],
@@ -197,7 +199,8 @@ internal interface GroupDocs {
197199
public fun <T, C> DataFrame<T>.group(columns: ColumnsSelector<T, C>): GroupClause<T, C> = GroupClause(this, columns)
198200

199201
/**
200-
* Groups the specified [columns] within the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame].
202+
* Groups the specified [columns] within the [DataFrame][org.jetbrains.kotlinx.dataframe.DataFrame] into
203+
* [column group][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup].
201204
*
202205
* This function does not immediately group the columns but instead select columns to group and
203206
* returns a [GroupClause][org.jetbrains.kotlinx.dataframe.api.GroupClause],

0 commit comments

Comments
 (0)