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 0aa6fd5 commit d0fd8d4Copy full SHA for d0fd8d4
README.md
@@ -23,7 +23,7 @@ kaos> array.merge(a, b)
23
[1, 2, 3, 4, 5, 6]
24
```
25
26
-### list array.insert(list l, any x, num i)
+### list array.insert(list l, any x, num i = -1)
27
28
Inserts a new item `x` into list `l` before index `i`.
29
array.c
@@ -38,7 +38,7 @@ int KAOS_EXPORT Kaos_merge()
38
return 0;
39
}
40
41
-// list array.insert(list l, any x, num i)
+// list array.insert(list l, any x, num i = -1)
42
43
char *insert_params_name[] = {
44
"l",
0 commit comments