PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Attribute Function: subList

Returns a portion of the supplied List.

Syntax

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 element position <endPosition>.

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

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

Examples

  1. 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].
  2. 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]".

 

  • No labels