Skip to content

Commit 46a18d5

Browse files
committed
adding something to each CS dsl interface
1 parent 721b390 commit 46a18d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+257
-38
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import org.jetbrains.kotlinx.dataframe.documentation.DslGrammarTemplateColumnsSe
1313
import org.jetbrains.kotlinx.dataframe.documentation.Indent
1414
import org.jetbrains.kotlinx.dataframe.documentation.LineBreak
1515
import org.jetbrains.kotlinx.dataframe.documentation.SelectingColumns
16+
import org.jetbrains.kotlinx.dataframe.impl.DataFrameReceiver
1617
import org.jetbrains.kotlinx.dataframe.impl.columns.ColumnsList
1718
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_LIST_DATACOLUMN_GET
1819
import org.jetbrains.kotlinx.dataframe.util.COL_SELECT_DSL_LIST_DATACOLUMN_GET_REPLACE

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,11 @@ public fun <T> DataFrame<T>.all(predicate: RowFilter<T>): Boolean = rows().all {
8383

8484
// region ColumnsSelectionDsl
8585

86-
// TODO replace allX(ColumnAccessor) with allX { ColumnAccessor } similar to allExcept
86+
/**
87+
* ## All Flavors of All (Cols) [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
88+
*
89+
* See [Grammar] for all functions in this interface.
90+
*/
8791
public interface AllColumnsSelectionDsl {
8892

8993
/**

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ import kotlin.reflect.KProperty
3838

3939
// region ColumnsSelectionDsl
4040

41+
/**
42+
* ## (All) (Cols) Except [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
43+
*
44+
* See [Grammar] for all functions in this interface.
45+
*/
4146
public interface AllExceptColumnsSelectionDsl {
4247

4348
/**

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ import kotlin.reflect.KProperty
2121
// region ColumnsSelectionDsl
2222

2323
/**
24-
* See [Grammar]
24+
* ## And [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
25+
*
26+
* See [Grammar] for all functions in this interface.
2527
*/
2628
public interface AndColumnsSelectionDsl {
2729

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,11 @@ import kotlin.reflect.KProperty
2626

2727
// region ColumnsSelectionDsl
2828

29-
/** See [Grammar] */
29+
/**
30+
* ## Col [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
31+
*
32+
* See [Grammar] for all functions in this interface.
33+
*/
3034
public interface ColColumnsSelectionDsl {
3135

3236
/**

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ import kotlin.reflect.KProperty
2828

2929
// region ColumnsSelectionDsl
3030

31+
/**
32+
* ## Column Group [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
33+
*
34+
* See [Grammar] for all functions in this interface.
35+
*/
3136
public interface ColGroupColumnsSelectionDsl {
3237

3338
/**

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ import kotlin.reflect.KProperty
2525

2626
// region ColumnsSelectionDsl
2727

28-
/** See [Grammar] */
28+
/**
29+
* ## Column Groups [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
30+
*
31+
* See [Grammar] for all functions in this interface.
32+
*/
2933
public interface ColGroupsColumnsSelectionDsl {
3034

3135
/**

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ import org.jetbrains.kotlinx.dataframe.impl.columns.transformSingle
2424
import org.jetbrains.kotlinx.dataframe.impl.headPlusArray
2525
import kotlin.reflect.KProperty
2626

27+
/**
28+
* ## Cols [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
29+
*
30+
* See [Grammar] for all functions in this interface.
31+
*/
2732
public interface ColsColumnsSelectionDsl {
2833

2934
/**

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,11 @@ import kotlin.reflect.KType
2929

3030
// region ColumnsSelectionDsl
3131

32+
/**
33+
* ## Cols At Any Depth [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
34+
*
35+
* See [Grammar] for all functions in this interface.
36+
*/
3237
public interface ColsAtAnyDepthColumnsSelectionDsl {
3338

3439
// region atAnyDepth

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ import kotlin.reflect.KProperty
2525

2626
// region ColumnsSelectionDsl
2727

28+
/**
29+
* ## Cols in Groups [Columns Selection DSL][org.jetbrains.kotlinx.dataframe.api.ColumnsSelectionDsl]
30+
*
31+
* See [Grammar] for all functions in this interface.
32+
*/
2833
public interface ColsInGroupsColumnsSelectionDsl {
2934

3035
/**

0 commit comments

Comments
 (0)