Skip to content

Commit 6cf984e

Browse files
add docs links
1 parent 3d45cdd commit 6cf984e

File tree

1 file changed

+8
-0
lines changed
  • core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api

1 file changed

+8
-0
lines changed

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/add.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ public typealias AddExpression<T, R> = Selector<AddDataRow<T>, R>
150150
* }
151151
* ```
152152
*
153+
* For more information: {@include [DocumentationUrls.Add]}.
154+
*
153155
* @param name name for a new column.
154156
* If it is empty, a unique column name will be generated.
155157
* Otherwise, it should be unique for original [DataFrame].
@@ -193,6 +195,8 @@ public inline fun <reified R, T> DataFrame<T>.add(
193195
* including [newValue][AddDataRow.newValue] to retrieve already computed values of this column
194196
* in previous rows.
195197
*
198+
* For more information: {@include [DocumentationUrls.Add]}.
199+
*
196200
* Returns a new [DataFrame] with the new column inserted at the given [path].
197201
* {@include [org.jetbrains.kotlinx.dataframe.documentation.ColumnPathCreation]}
198202
*
@@ -351,6 +355,8 @@ public class AddDsl<T>(
351355
* }
352356
* ```
353357
*
358+
* For more information: {@include [DocumentationUrls.Add]}.
359+
*
354360
* @param body An [AddDsl] expression used to define new columns and column groups.
355361
* @return A new [DataFrame] with the added columns.
356362
*/
@@ -391,6 +397,8 @@ public fun <T> DataFrame<T>.add(body: AddDsl<T>.() -> Unit): DataFrame<T> {
391397
* }
392398
* ```
393399
*
400+
* For more information: {@include [DocumentationUrls.Add]}.
401+
*
394402
* @param name name for a new column.
395403
* If it is empty, a unique column name will be generated.
396404
* Otherwise, it should be unique for original group [DataFrame]s.

0 commit comments

Comments
 (0)