Versions Compared

Key

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

SRP Lists are an alternative replacement to BASIC+ lists and can greatly enhance performance for large processes.

MethodDescriptionAdded
AddAdds an element to the end of an SRP List.
ClearRemoves all values from an SRP List.2.1.10
CreateCreates an SRP List.
CreateFromFastArrayCreates an SRP List initialized to a list within the given SRP Fast Array.
CountGets the number of elements in the list.
GetAtGets the element from an SRP List at the given index.
GetVariableConverts an SRP List back into a BASIC+ variable.
InsertAtInserts an element into an SRP List at the given index position.
LocateLocates a value in an SRP List.
MatchFinds the index of the first element from the starting index that matches the given string.
ReduceCreates a new list containing only those elements that match the given string.
ReleaseReleases the handle to an SRP List.
RemoveAtRemoves an element from an SRP List at the given index position.
SetAtSets an element into an SRP List at the given index position.

List Defined 

In this documentation, the term List refers to a single-dimensional dynamic array. For multi-dimensional array support, see SRP FastArray.

...