Method extracts the elements from list, between two specified indices, and returns the a new list.
OutputVar := instance.SubList([startIndex, endIndex, leftToRight])
Method extracts the elements from list, between two specified indices, and returns the a new list.
startIndex
Optional. Default value is 0. The zero-based starting index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.
endIndex
Optional. Default value is null which includes all elements from startIndex to end of list. The zero-based endIndex index to start reading elements from.
Can be var integer or any type that matches IsIntegerNumber.
leftToRight
Optional, Default value is false.
If true sublist elements are selected from start of list towards end of list; Otherwise elements are selected from end of list towards start of list.
Can be boolean var or instance of MfBool.
Returns a new instance of MfByteList the is a SubList of elements
If startIndex is greater than endIndex, this method will swap the two arguments, meaning lst.SubList(1, 4) == lst.SubList(4, 1).
If either startIndex or endIndex is less than 0, it is treated as if it were 0.
s := "23FE4A5C93FE9D35BC"
lst := MfNibConverter.FromHex(s)
sl := lst.SubList(4, 12)
MsgBox % sl.ToString() ; 4A5C93FE
sl := lst.SubList(4, 12, false)
MsgBox % sl.ToString() ; D9EF39C5