Difference between revisions of "Template:LSL Function/negative index/range"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 19: Line 19:
</div>
</div>
The easiest way to work with negative indexes is to think of them in positive index form.
The easiest way to work with negative indexes is to think of them in positive index form.
<div style="display: table;">
<div style="display: inherit;">
*If '''{{{1}}}''' <= '''{{{2}}}''' then the range operated on starts at '''{{{1}}}''' and ends at '''{{{2}}}'''. ['''{{{1}}}''', '''{{{2}}}''']
*If '''{{{1}}}''' <= '''{{{2}}}''' then the range operated on starts at '''{{{1}}}''' and ends at '''{{{2}}}'''. ['''{{{1}}}''', '''{{{2}}}''']
*If '''{{{1}}}''' > '''{{{2}}}''' then the range operated on starts at '''0''' and goes to '''{{{2}}}''' and then starts again at '''{{{1}}}''' and goes to '''-1'''. ['''0''', '''{{{2}}}'''] + ['''{{{1}}}''', '''-1''']
*If '''{{{1}}}''' > '''{{{2}}}''' then the range operated on starts at '''0''' and goes to '''{{{2}}}''' and then starts again at '''{{{1}}}''' and goes to '''-1'''. ['''0''', '''{{{2}}}'''] + ['''{{{1}}}''', '''-1''']

Revision as of 14:58, 17 April 2009

#var value
p_start_desc start index
p_end_desc end index
spec
Index Positive Negative
First 0 -length
Last length - 1 -1

The easiest way to work with negative indexes is to think of them in positive index form.

  • If {{{1}}} <= {{{2}}} then the range operated on starts at {{{1}}} and ends at {{{2}}}. [{{{1}}}, {{{2}}}]
  • If {{{1}}} > {{{2}}} then the range operated on starts at 0 and goes to {{{2}}} and then starts again at {{{1}}} and goes to -1. [0, {{{2}}}] + [{{{1}}}, -1]

Positive indexes past the length (after the last index), or negative indexes past the beginning (before the first index) are valid. The effects are predictable, the entries are treated as if they were there but were removed just before output.

See negative indexes for more information.