Skip to content

Commit eac6a31

Browse files
Automated commit of generated code
1 parent 2411386 commit eac6a31

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,5 @@ public class ReducedGroupBy<T, G>(
115115
}
116116

117117
@PublishedApi
118-
internal fun <T, G> GroupBy<T, G>.reduce(reducer: Selector<DataFrame<G>, DataRow<G>?>) = ReducedGroupBy(this, reducer)
118+
internal fun <T, G> GroupBy<T, G>.reduce(reducer: Selector<DataFrame<G>, DataRow<G>?>): ReducedGroupBy<T, G> =
119+
ReducedGroupBy(this, reducer)

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ public class ReducedPivot<T>(
268268
}
269269

270270
@PublishedApi
271-
internal fun <T> Pivot<T>.reduce(reducer: Selector<DataFrame<T>, DataRow<T>?>) = ReducedPivot(this, reducer)
271+
internal fun <T> Pivot<T>.reduce(reducer: Selector<DataFrame<T>, DataRow<T>?>): ReducedPivot<T> =
272+
ReducedPivot(this, reducer)
272273

273274
@PublishedApi
274275
internal inline fun <T> Pivot<T>.delegate(crossinline body: PivotGroupBy<T>.() -> DataFrame<T>): DataRow<T> =

core/generated-sources/src/main/kotlin/org/jetbrains/kotlinx/dataframe/io/html.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ public fun <T> DataFrame<T>.toHTML(
533533
configuration: DisplayConfiguration = DisplayConfiguration.DEFAULT,
534534
cellRenderer: CellRenderer = DefaultCellRenderer,
535535
getFooter: (DataFrame<T>) -> String? = { "DataFrame [${it.size}]" },
536-
) = toHtml(configuration, cellRenderer, getFooter)
536+
): DataFrameHtmlData = toHtml(configuration, cellRenderer, getFooter)
537537

538538
@Deprecated(TO_STANDALONE_HTML, ReplaceWith(TO_STANDALONE_HTML_REPLACE), DeprecationLevel.ERROR)
539539
public fun <T> DataFrame<T>.toStandaloneHTML(

0 commit comments

Comments
 (0)