Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Excerpt
hiddentrue

subList(value1, value2, value3, ..., <startPosition>) Returns a portion of the supplied List.


Attribute Function: subList

...

subList([value1, value2, value3,...], <startPosition>)
subList([value1, value2, value3,...], <startPosition>, <endPosition>)

 


ArgumentType
valuenA value of any type
startPositionInteger
endPositionInteger

Usage

subList([value1, value2, value3,...], <startPosition>, <endPosition>)

...

Returns a list, drawn from the given list, starting at element position <startPosition>, and ending at the end of <List>.

Examples

 subList([1,2,3,4,5,6,7,8,9,10],6,9) 

returns the portion of the supplied List between element positions 6 and 9:

[6,7,8,9]

...


subList([1,2,3,4,5,6],3) 

returns the portion of the supplied List from element position 3, to the end of the List:

[3,4,5,6]

...