@@ -3951,7 +3951,6 @@ public interface ColumnsSelectionDsl<out T> : ColumnSelectionDsl<T>, SingleColum
3951
3951
*
3952
3952
* {@includeArg [CommonRecursivelyDocs.Examples]}
3953
3953
*
3954
- * @param [includeGroups\] Whether to include [column groups][ColumnGroup] in the result. `true` by default.
3955
3954
* @param [includeTopLevel\] Whether to include the top-level columns in the result. `true` by default.
3956
3955
*/
3957
3956
private interface CommonRecursivelyDocs {
@@ -3985,17 +3984,15 @@ public interface ColumnsSelectionDsl<out T> : ColumnSelectionDsl<T>, SingleColum
3985
3984
*
3986
3985
* `df.`[select][DataFrame.select]` { `[colsOf][ColumnSet.colsOf]`<`[String][String]`>().`[recursively][recursively]`() }`
3987
3986
*
3988
- * `df.`[select][DataFrame.select]` { myColumnGroup.`[all][ColumnSet.all]`().`[rec][rec]`(includeGroups = false ) }`
3987
+ * `df.`[select][DataFrame.select]` { myColumnGroup.`[all][ColumnSet.all]`().`[rec][rec]`() }`
3989
3988
*
3990
3989
* `df.`[select][DataFrame.select]` { `[groups][ColumnSet.groups]`().`[recursively][recursively]`(includeTopLevel = false) }`
3991
3990
*
3992
- * @param [includeGroups] Whether to include [column groups][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup] in the result. `true` by default.
3993
3991
* @param [includeTopLevel] Whether to include the top-level columns in the result. `true` by default.
3994
3992
*/
3995
3993
public fun <C > TransformableColumnSet<C>.recursively (
3996
- includeGroups : Boolean = true,
3997
3994
includeTopLevel : Boolean = true,
3998
- ): ColumnSet <C > = recursivelyImpl(includeTopLevel = includeTopLevel, includeGroups = includeGroups )
3995
+ ): ColumnSet <C > = recursivelyImpl(includeTopLevel = includeTopLevel, includeGroups = true )
3999
3996
4000
3997
/* * ## Recursively / Rec
4001
3998
*
@@ -4021,17 +4018,15 @@ public interface ColumnsSelectionDsl<out T> : ColumnSelectionDsl<T>, SingleColum
4021
4018
*
4022
4019
* `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { `[colsOf][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.colsOf]`<`[String][String]`>().`[recursively][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.recursively]`() }`
4023
4020
*
4024
- * `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { myColumnGroup.`[all][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.all]`().`[rec][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.rec]`(includeGroups = false ) }`
4021
+ * `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { myColumnGroup.`[all][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.all]`().`[rec][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.rec]`() }`
4025
4022
*
4026
4023
* `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { `[groups][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.groups]`().`[recursively][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.recursively]`(includeTopLevel = false) }`
4027
4024
*
4028
- * @param [includeGroups] Whether to include [column groups][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup] in the result. `true` by default.
4029
4025
* @param [includeTopLevel] Whether to include the top-level columns in the result. `true` by default.
4030
4026
*/
4031
4027
public fun <C > TransformableColumnSet<C>.rec (
4032
- includeGroups : Boolean = true,
4033
4028
includeTopLevel : Boolean = true,
4034
- ): ColumnSet <C > = recursively(includeTopLevel = includeTopLevel, includeGroups = includeGroups )
4029
+ ): ColumnSet <C > = recursively(includeTopLevel = includeTopLevel)
4035
4030
4036
4031
/* *
4037
4032
* ## Recursively / Rec
@@ -4058,15 +4053,13 @@ public interface ColumnsSelectionDsl<out T> : ColumnSelectionDsl<T>, SingleColum
4058
4053
*
4059
4054
* `df.`[select][DataFrame.select]` { `[first][ColumnSet.first]` { col -> col.`[any][DataColumn.any]` { it == "Alice" } }.`[recursively][recursively]`(includeTopLevel = false) }`
4060
4055
*
4061
- * `df.`[select][DataFrame.select]` { `[single][ColumnSet.single]` { it.name == "myCol" }.`[rec][rec]`(includeGroups = false ) }`
4056
+ * `df.`[select][DataFrame.select]` { `[single][ColumnSet.single]` { it.name == "myCol" }.`[rec][rec]`() }`
4062
4057
*
4063
- * @param [includeGroups] Whether to include [column groups][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup] in the result. `true` by default.
4064
4058
* @param [includeTopLevel] Whether to include the top-level columns in the result. `true` by default.
4065
4059
*/
4066
4060
public fun TransformableSingleColumn <* >.recursively (
4067
- includeGroups : Boolean = true,
4068
4061
includeTopLevel : Boolean = true,
4069
- ): SingleColumn <* > = recursivelyImpl(includeTopLevel = includeTopLevel, includeGroups = includeGroups )
4062
+ ): SingleColumn <* > = recursivelyImpl(includeTopLevel = includeTopLevel, includeGroups = true )
4070
4063
4071
4064
/* * ## Recursively / Rec
4072
4065
*
@@ -4092,15 +4085,13 @@ public interface ColumnsSelectionDsl<out T> : ColumnSelectionDsl<T>, SingleColum
4092
4085
*
4093
4086
* `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { `[first][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.first]` { col -> col.`[any][org.jetbrains.kotlinx.dataframe.DataColumn.any]` { it == "Alice" } }.`[recursively][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.recursively]`(includeTopLevel = false) }`
4094
4087
*
4095
- * `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { `[single][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.single]` { it.name == "myCol" }.`[rec][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.rec]`(includeGroups = false ) }`
4088
+ * `df.`[select][org.jetbrains.kotlinx.dataframe.DataFrame.select]` { `[single][org.jetbrains.kotlinx.dataframe.columns.ColumnSet.single]` { it.name == "myCol" }.`[rec][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl.rec]`() }`
4096
4089
*
4097
- * @param [includeGroups] Whether to include [column groups][org.jetbrains.kotlinx.dataframe.columns.ColumnGroup] in the result. `true` by default.
4098
4090
* @param [includeTopLevel] Whether to include the top-level columns in the result. `true` by default.
4099
4091
*/
4100
4092
public fun TransformableSingleColumn <* >.rec (
4101
- includeGroups : Boolean = true,
4102
4093
includeTopLevel : Boolean = true,
4103
- ): SingleColumn <* > = recursively(includeTopLevel = includeTopLevel, includeGroups = includeGroups )
4094
+ ): SingleColumn <* > = recursively(includeTopLevel = includeTopLevel)
4104
4095
4105
4096
/* *
4106
4097
* ## All Recursively / All Rec
0 commit comments