You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: resources/function_help/json/array_slice
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
{
2
2
"name": "array_get",
3
3
"type": "function",
4
-
"description": "Returns a portion of the array. The slice is defined by the startPos and endPos arguments. A slice that ",
4
+
"description": "Returns a portion of the array. The slice is defined by the start_pos and end_pos arguments.",
5
5
"arguments": [{
6
6
"arg": "array",
7
7
"description": "an array"
8
8
},
9
9
{
10
-
"arg": "startPos",
11
-
"description": "the index of the start position of the slice (0 based). The startPos index is included in the slice. If you use a negative startPos, the index is counted from the end of the list (-1 based)."
10
+
"arg": "start_pos",
11
+
"description": "the index of the start position of the slice (0 based). The start_pos index is included in the slice. If you use a negative start_pos, the index is counted from the end of the list (-1 based)."
12
12
},
13
13
{
14
-
"arg": "endPos",
15
-
"description": "the index of the start position of the slice (0 based). The endPos index is included in the slice. If you use a negative endPos, the index is counted from the end of the list (-1 based)."
14
+
"arg": "end_pos",
15
+
"description": "the index of the end position of the slice (0 based). The end_pos index is included in the slice. If you use a negative end_pos, the index is counted from the end of the list (-1 based)."
0 commit comments