File tree Expand file tree Collapse file tree
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/documentation Expand file tree Collapse file tree Original file line number Diff line number Diff 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) */
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments