Skip to content

Commit 67d9ce8

Browse files
committed
Add links to new topics in DataRow website docs to KDoc helpers
1 parent 2ccd07c commit 67d9ce8

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation/DocumentationUrls.kt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,20 @@ internal interface DocumentationUrls {
3535
/** [See Row Expressions on the documentation website.]({@include [Url]}/datarow.html#row-expressions) */
3636
typealias RowExpressions = Nothing
3737

38+
/** [See RowExpression on the documentation website.]({@include [Url]}/datarow.html#rowexpression) */
39+
typealias RowExpression = Nothing
40+
41+
/** [See RowValueExpression on the documentation website.]({@include [Url]}/datarow.html#rowvalueexpression) */
42+
typealias RowValueExpression = Nothing
43+
3844
/** [See Row Conditions on the documentation website.]({@include [Url]}/datarow.html#row-conditions) */
3945
typealias RowConditions = Nothing
46+
47+
/** [See RowFilter on the documentation website.]({@include [Url]}/datarow.html#rowfilter) */
48+
typealias RowFilter = Nothing
49+
50+
/** [See RowValueFilter on the documentation website.]({@include [Url]}/datarow.html#rowvaluefilter) */
51+
typealias RowValueFilter = Nothing
4052
}
4153

4254
/** [See `drop` on the documentation website.]({@include [Url]}/drop.html) */

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation/ExpressionsGivenRow.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ internal interface ExpressionsGivenRow {
5757
@ExcludeFromSources
5858
typealias AddDataRowNote = Nothing
5959

60-
/** Provide a new value for every selected cell given its row using a [row expression][DfRowExpression]. */
60+
/**
61+
* Provide a new value for every selected cell given its row using a [row expression][DfRowExpression].
62+
*
63+
* Fore more information, {@include [DocumentationUrls.DataRow.RowExpression]}
64+
*/
6165
interface RowExpression {
6266

6367
/**
@@ -79,6 +83,8 @@ internal interface ExpressionsGivenRow {
7983

8084
/** Provide a new value for every selected cell given its row and its previous value using a
8185
* [row value expression][DfRowValueExpression].
86+
*
87+
* Fore more information, {@include [DocumentationUrls.DataRow.RowValueExpression]}
8288
*/
8389
interface RowValueExpression {
8490

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation/SelectingRows.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ internal interface SelectingRows {
4141
* including through [extension properties][AccessApis.ExtensionPropertiesApi]
4242
* for convenient and type-safe access.
4343
*
44-
* Fore more information, {@include [DocumentationUrls.DataRow.RowConditions]}
44+
* Fore more information, {@include [DocumentationUrls.DataRow.RowFilter]}
4545
*/
4646
@ExcludeFromSources
4747
typealias RowFilterSnippet = Nothing
@@ -60,7 +60,7 @@ internal interface SelectingRows {
6060
* including through [extension properties][AccessApis.ExtensionPropertiesApi]
6161
* for convenient and type-safe access.
6262
*
63-
* Fore more information, {@include [DocumentationUrls.DataRow.RowConditions]}
63+
* Fore more information, {@include [DocumentationUrls.DataRow.RowValueFilter]}
6464
*/
6565
@ExcludeFromSources
6666
typealias RowValueFilterSnippet = Nothing

0 commit comments

Comments
 (0)