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: generated/experimental/category_docs.yaml
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1425,8 +1425,8 @@ list:
1425
1425
src: Source list to copy and modify.
1426
1426
start_index: Starting index of the slice to remove (inclusive).
1427
1427
end_index: Ending index of the slice to remove (inclusive).
1428
-
tooltip: Returns a copy of the list src with the slice from start to end (inclusive) removed. Negative indices count backward from the end of the list. If start is greater than end, the deletion excludes
1429
-
the specified range.
1428
+
tooltip: Returns a copy of the list src with the slice from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the list. If start_index is greater than end_index,
1429
+
the deletion excludes the specified range.
1430
1430
llGetListEntryType( list src, integer index ) -> integer:
1431
1431
src: Source list containing the element of interest.
1432
1432
index: Zero-based index of the entry.
@@ -3631,19 +3631,19 @@ string:
3631
3631
src: Source string to modify.
3632
3632
start_index: Starting codepoint index of the substring to remove (inclusive). Supports negative indexing.
3633
3633
end_index: Ending codepoint index of the substring to remove (inclusive). Supports negative indexing.
3634
-
tooltip: Returns a copy of the string src with the characters from start to end (inclusive) removed. Negative indices count backward from the end of the string. If start is greater than end, the deletion
3635
-
excludes the specified range.
3634
+
tooltip: Returns a copy of the string src with the characters from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the string. If start_index is greater
3635
+
than end_index, the deletion excludes the specified range.
start_index: Starting codepoint index (inclusive). Supports negative indexing.
3639
3639
end_index: Ending codepoint index (inclusive). Supports negative indexing.
3640
-
tooltip: Returns a copy of the substring from src within the inclusive codepoint range start..end. Negative indices count backward from the end of the string. If start is greater than end, the substring
tooltip: Returns a copy of the substring from src within the inclusive codepoint range start_index..end_index. Negative indices count backward from the end of the string. If start_index is greater than
Copy file name to clipboardExpand all lines: generated/lsl_keywords_pretty.xml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11481,7 +11481,7 @@ If another state is defined before the default state, the compiler will report a
11481
11481
<key>sleep</key>
11482
11482
<real>0.0</real>
11483
11483
<key>tooltip</key>
11484
-
<string>Returns a copy of the list src with the slice from start to end (inclusive) removed. Negative indices count backward from the end of the list. If start is greater than end, the deletion excludes the specified range.</string>
11484
+
<string>Returns a copy of the list src with the slice from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the list. If start_index is greater than end_index, the deletion excludes the specified range.</string>
11485
11485
</map>
11486
11486
<key>llDeleteSubString</key>
11487
11487
<map>
@@ -11522,7 +11522,7 @@ If another state is defined before the default state, the compiler will report a
11522
11522
<key>sleep</key>
11523
11523
<real>0.0</real>
11524
11524
<key>tooltip</key>
11525
-
<string>Returns a copy of the string src with the characters from start to end (inclusive) removed. Negative indices count backward from the end of the string. If start is greater than end, the deletion excludes the specified range.</string>
11525
+
<string>Returns a copy of the string src with the characters from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the string. If start_index is greater than end_index, the deletion excludes the specified range.</string>
11526
11526
</map>
11527
11527
<key>llDerezObject</key>
11528
11528
<map>
@@ -15051,7 +15051,7 @@ If another state is defined before the default state, the compiler will report a
15051
15051
<key>sleep</key>
15052
15052
<real>0.0</real>
15053
15053
<key>tooltip</key>
15054
-
<string>Returns a copy of the substring from src within the inclusive codepoint range start..end. Negative indices count backward from the end of the string. If start is greater than end, the substring is the excluded range.</string>
15054
+
<string>Returns a copy of the substring from src within the inclusive codepoint range start_index..end_index. Negative indices count backward from the end of the string. If start_index is greater than end_index, the substring is the excluded range.</string>
15055
15055
</map>
15056
15056
<key>llGetSunDirection</key>
15057
15057
<map>
@@ -15822,7 +15822,7 @@ If another state is defined before the default state, the compiler will report a
15822
15822
</map>
15823
15823
</map>
15824
15824
<map>
15825
-
<key>pos</key>
15825
+
<key>index</key>
15826
15826
<map>
15827
15827
<key>tooltip</key>
15828
15828
<string>Codepoint index where insertion starts.</string>
@@ -15847,7 +15847,7 @@ If another state is defined before the default state, the compiler will report a
15847
15847
<key>sleep</key>
15848
15848
<real>0.0</real>
15849
15849
<key>tooltip</key>
15850
-
<string>Returns a copy of dst with src inserted at codepoint index pos.</string>
15850
+
<string>Returns a copy of dst with src inserted at the given codepoint index.</string>
Copy file name to clipboardExpand all lines: generated/lua_keywords_pretty.xml
+22-22Lines changed: 22 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -14960,7 +14960,7 @@ Returns true if result is non-zero.</string>
14960
14960
</map>
14961
14961
</map>
14962
14962
<map>
14963
-
<key>start</key>
14963
+
<key>start_index</key>
14964
14964
<map>
14965
14965
<key>tooltip</key>
14966
14966
<string>Starting byte index (inclusive), or 1 if omitted. Supports negative indexing (optional, defaults to 1).</string>
@@ -14969,7 +14969,7 @@ Returns true if result is non-zero.</string>
14969
14969
</map>
14970
14970
</map>
14971
14971
<map>
14972
-
<key>end</key>
14972
+
<key>end_index</key>
14973
14973
<map>
14974
14974
<key>tooltip</key>
14975
14975
<string>Ending byte index (inclusive), or i if omitted. Supports negative indexing (optional, defaults to i).</string>
@@ -14985,7 +14985,7 @@ Returns true if result is non-zero.</string>
14985
14985
<key>sleep</key>
14986
14986
<real>0.0</real>
14987
14987
<key>tooltip</key>
14988
-
<string>Returns the numeric code of every byte in the range start..end in the string src. Negative indices count backward from the end of the string.</string>
14988
+
<string>Returns the numeric code of every byte in the range start_index..end_index in the string src. Negative indices count backward from the end of the string.</string>
14989
14989
</map>
14990
14990
<key>string.char</key>
14991
14991
<map>
@@ -15033,7 +15033,7 @@ Returns true if result is non-zero.</string>
15033
15033
</map>
15034
15034
</map>
15035
15035
<map>
15036
-
<key>start</key>
15036
+
<key>start_index</key>
15037
15037
<map>
15038
15038
<key>tooltip</key>
15039
15039
<string>Byte index to start the search from, or 1 if omitted. Supports negative indexing (optional, defaults to 1).</string>
@@ -15058,7 +15058,7 @@ Returns true if result is non-zero.</string>
15058
15058
<key>sleep</key>
15059
15059
<real>0.0</real>
15060
15060
<key>tooltip</key>
15061
-
<string>Returns the start and end byte indices of the first occurrence of pattern inside the string src, followed by any regex-captured substrings. Returns nil if not found. Negative indices count backward from the end of the string.</string>
15061
+
<string>Returns the start and end byte indices of the first occurrence of pattern inside the string src, followed by any regex-captured substrings. Search starts from start_index. Returns nil if not found. Negative indices count backward from the end of the string.</string>
15062
15062
</map>
15063
15063
<key>string.format</key>
15064
15064
<map>
@@ -15243,7 +15243,7 @@ Returns true if result is non-zero.</string>
15243
15243
</map>
15244
15244
</map>
15245
15245
<map>
15246
-
<key>start</key>
15246
+
<key>start_index</key>
15247
15247
<map>
15248
15248
<key>tooltip</key>
15249
15249
<string>Byte index to start at, or 1 if omitted. Supports negative indexing (optional, defaults to 1).</string>
@@ -15259,7 +15259,7 @@ Returns true if result is non-zero.</string>
15259
15259
<key>sleep</key>
15260
15260
<real>0.0</real>
15261
15261
<key>tooltip</key>
15262
-
<string>Returns all occurences of the regex pattern inside the string src. Returns nil if no match is found. Negative indices count backward from the end of the string.</string>
15262
+
<string>Returns all occurences of the regex pattern inside the string src, starting from start_index. Returns nil if no match is found. Negative indices count backward from the end of the string.</string>
15263
15263
</map>
15264
15264
<key>string.pack</key>
15265
15265
<map>
@@ -15417,7 +15417,7 @@ Returns true if result is non-zero.</string>
15417
15417
</map>
15418
15418
</map>
15419
15419
<map>
15420
-
<key>start</key>
15420
+
<key>start_index</key>
15421
15421
<map>
15422
15422
<key>tooltip</key>
15423
15423
<string>Starting byte index (inclusive). Supports negative indexing.</string>
@@ -15426,7 +15426,7 @@ Returns true if result is non-zero.</string>
15426
15426
</map>
15427
15427
</map>
15428
15428
<map>
15429
-
<key>end</key>
15429
+
<key>end_index</key>
15430
15430
<map>
15431
15431
<key>tooltip</key>
15432
15432
<string>Ending byte index (inclusive), or the end of the string if omitted. Supports negative indexing (optional, defaults to #src).</string>
@@ -15442,7 +15442,7 @@ Returns true if result is non-zero.</string>
15442
15442
<key>sleep</key>
15443
15443
<real>0.0</real>
15444
15444
<key>tooltip</key>
15445
-
<string>Returns a copy of the substring from src within the inclusive byte range start..end. Negative indices count backward from the end of the string.</string>
15445
+
<string>Returns a copy of the substring from src within the inclusive byte range start_index..end_index. Negative indices count backward from the end of the string.</string>
15446
15446
</map>
15447
15447
<key>string.unpack</key>
15448
15448
<map>
@@ -16277,7 +16277,7 @@ Returns true if result is non-zero.</string>
16277
16277
</map>
16278
16278
</map>
16279
16279
<map>
16280
-
<key>start</key>
16280
+
<key>start_index</key>
16281
16281
<map>
16282
16282
<key>tooltip</key>
16283
16283
<string>Starting byte index (inclusive), or 1 if omitted. Supports negative indexing (optional, defaults to 1).</string>
@@ -16286,7 +16286,7 @@ Returns true if result is non-zero.</string>
16286
16286
</map>
16287
16287
</map>
16288
16288
<map>
16289
-
<key>end</key>
16289
+
<key>end_index</key>
16290
16290
<map>
16291
16291
<key>tooltip</key>
16292
16292
<string>Ending byte index (inclusive), or i if omitted. Supports negative indexing (optional, defaults to i).</string>
@@ -16302,7 +16302,7 @@ Returns true if result is non-zero.</string>
16302
16302
<key>sleep</key>
16303
16303
<real>0.0</real>
16304
16304
<key>tooltip</key>
16305
-
<string>Returns the ordinals (Unicode copepoint integers) of the characters in the inclusive byte range start..end in the string src. Negative indices count backward from the end of the string.</string>
16305
+
<string>Returns the ordinals (Unicode copepoint integers) of the characters in the inclusive byte range start_index..end_index in the string src. Negative indices count backward from the end of the string.</string>
16306
16306
</map>
16307
16307
<key>utf8.codes</key>
16308
16308
<map>
@@ -16341,7 +16341,7 @@ Returns true if result is non-zero.</string>
16341
16341
</map>
16342
16342
</map>
16343
16343
<map>
16344
-
<key>start</key>
16344
+
<key>start_index</key>
16345
16345
<map>
16346
16346
<key>tooltip</key>
16347
16347
<string>Starting byte index (inclusive), or 1 if omitted. Supports negative indexing (optional, defaults to 1).</string>
@@ -16350,7 +16350,7 @@ Returns true if result is non-zero.</string>
16350
16350
</map>
16351
16351
</map>
16352
16352
<map>
16353
-
<key>end</key>
16353
+
<key>end_index</key>
16354
16354
<map>
16355
16355
<key>tooltip</key>
16356
16356
<string>Ending byte index (inclusive), or the end of the string if omitted. Supports negative indexing (optional, defaults to #str).</string>
@@ -16366,7 +16366,7 @@ Returns true if result is non-zero.</string>
16366
16366
<key>sleep</key>
16367
16367
<real>0.0</real>
16368
16368
<key>tooltip</key>
16369
-
<string>Returns the number of Unicode codepoints in the inclusive byte range start..end of the string src. If the string is not utf8, returns (nil, error index) instead. Negative indices count backward from the end of the string.</string>
16369
+
<string>Returns the number of Unicode codepoints in the inclusive byte range start_index..end_index of the string src. If the string is not utf8, returns (nil, error index) instead. Negative indices count backward from the end of the string.</string>
16370
16370
</map>
16371
16371
<key>utf8.offset</key>
16372
16372
<map>
@@ -16391,7 +16391,7 @@ Returns true if result is non-zero.</string>
16391
16391
</map>
16392
16392
</map>
16393
16393
<map>
16394
-
<key>start</key>
16394
+
<key>start_index</key>
16395
16395
<map>
16396
16396
<key>tooltip</key>
16397
16397
<string>Starting byte index, or 1 if omitted. Supports negative indexing (optional, defaults to if n >= 0 then 1 else #str + 1).</string>
@@ -18158,7 +18158,7 @@ Returns true if result is non-zero.</string>
18158
18158
<key>sleep</key>
18159
18159
<real>0.0</real>
18160
18160
<key>tooltip</key>
18161
-
<string>Returns a copy of the list src with the slice from start to end (inclusive) removed. Negative indices count backward from the end of the list. If start is greater than end, the deletion excludes the specified range.</string>
18161
+
<string>Returns a copy of the list src with the slice from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the list. If start_index is greater than end_index, the deletion excludes the specified range.</string>
18162
18162
</map>
18163
18163
<key>ll.DeleteSubString</key>
18164
18164
<map>
@@ -18199,7 +18199,7 @@ Returns true if result is non-zero.</string>
18199
18199
<key>sleep</key>
18200
18200
<real>0.0</real>
18201
18201
<key>tooltip</key>
18202
-
<string>Returns a copy of the string src with the characters from start to end (inclusive) removed. Negative indices count backward from the end of the string. If start is greater than end, the deletion excludes the specified range.</string>
18202
+
<string>Returns a copy of the string src with the characters from start_index to end_index (inclusive) removed. Negative indices count backward from the end of the string. If start_index is greater than end_index, the deletion excludes the specified range.</string>
18203
18203
</map>
18204
18204
<key>ll.DerezObject</key>
18205
18205
<map>
@@ -21734,7 +21734,7 @@ Returns true if result is non-zero.</string>
21734
21734
<key>sleep</key>
21735
21735
<real>0.0</real>
21736
21736
<key>tooltip</key>
21737
-
<string>Returns a copy of the substring from src within the inclusive codepoint range start..end. Negative indices count backward from the end of the string. If start is greater than end, the substring is the excluded range.</string>
21737
+
<string>Returns a copy of the substring from src within the inclusive codepoint range start_index..end_index. Negative indices count backward from the end of the string. If start_index is greater than end_index, the substring is the excluded range.</string>
21738
21738
</map>
21739
21739
<key>ll.GetSunDirection</key>
21740
21740
<map>
@@ -22507,7 +22507,7 @@ Returns true if result is non-zero.</string>
22507
22507
</map>
22508
22508
</map>
22509
22509
<map>
22510
-
<key>pos</key>
22510
+
<key>index</key>
22511
22511
<map>
22512
22512
<key>tooltip</key>
22513
22513
<string>Codepoint index where insertion starts.</string>
@@ -22532,7 +22532,7 @@ Returns true if result is non-zero.</string>
22532
22532
<key>sleep</key>
22533
22533
<real>0.0</real>
22534
22534
<key>tooltip</key>
22535
-
<string>Returns a copy of dst with src inserted at codepoint index pos.</string>
22535
+
<string>Returns a copy of dst with src inserted at the given codepoint index.</string>
0 commit comments