We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8920d commit 0d58870Copy full SHA for 0d58870
docs/StardustDocs/topics/add.md
@@ -48,7 +48,7 @@ You can use `newValue()` function to access value that was already calculated fo
48
49
```kotlin
50
df.add("fibonacci") {
51
- if(index() < 2) 1
+ if (index() < 2) 1
52
else prev()!!.newValue<Int>() + prev()!!.prev()!!.newValue<Int>()
53
}
54
```
tests/src/test/kotlin/org/jetbrains/kotlinx/dataframe/samples/api/Modify.kt
@@ -696,7 +696,7 @@ class Modify : TestBase() {
696
fun addRecurrent() {
697
// SampleStart
698
699
700
701
702
// SampleEnd
0 commit comments