diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-06-07 10:17:00 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-06-07 10:17:00 -0300 |
commit | 4b893ffeeb5582b861ef74c8ff320c4f30201c25 (patch) | |
tree | a7a4bd532ec38880645d69d5ae8433e4b56303b2 /doc | |
parent | a21eb2b89dca54bcda4cb923d9e1ac01359aec27 (diff) | |
parent | 1e068d34f4cb70c949aa7425c2b83169d745fd6b (diff) |
Merge pull request #4861 from brakhane/negative-indexing
Add support for Python-like negative indexing
Diffstat (limited to 'doc')
-rw-r--r-- | doc/base/classes.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 1beda5f2d0..9b8940bc50 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -4349,7 +4349,7 @@ Generic array datatype. </brief_description> <description> - Generic array, contains several elements of any type, accessible by numerical index starting at 0. Arrays are always passed by reference. + Generic array, contains several elements of any type, accessible by numerical index starting at 0. Negative indices can be used to count from the right, like in Python. Arrays are always passed by reference. </description> <methods> <method name="append"> |