CoreClasses Xojo Plugin

StringArray Class (console safe)

StringArray is a high speed relocatable string array class.

The string array is different from Xojo array since a string array can be inherited, strings can be sorted, items can be swapped, plugins can use it for cross talk, and it has a iterator interface.

This class supports Xojo’s For each syntax when on Xojo 2019r2 or later.

Object
   StringArray

class StringArray implements

IStringIterator

Iterable

Iterator

Constructors

StringArrayThe default constructor for the StringArray class.
StringArrayUse this constructor to construct a instance of the array and have influence on the grow rate of the array.

Methods

AddItemsUse this method to add multiple strings from any container that implements the IStringIterator interface.
AppendUse this method to append a string to the array.
CombineWithAppends the passed in StringArray to the current StringArray.
CountUse this function to get the element count from the array.
GetNextUse to get next item from the StringArray.
HasNextUse to get info if there are more items in the StringArray.
IndexOfReturns a index of a element in the array.
InsertUse this method to insert a string to the array.
ItemUse this setter/getter function to read or write to a item in the array.
MapMaps the StringArray to a new array doing translation for each element of the array in a delegate method that is passed in.
MoveFirstUse to reset the iterator in the StringArray.
Operator_RedimImplements the Redim operator.
Operator_SubscriptImplements operator to read from the array with the ( ) indexer operator.
Operator_SubscriptImplements operator to write to the array with the ( ) indexer operator.
PeekNextUse this function to peek at next item from the StringArray without causing iteration.
RemoveUse this method to remove a single string from the array.
RemoveUse this method to remove strings from the array.
ResizeUse this method to resize the array.
SortUse this method to sort the array.
SwapUse this method to swap two objects in the array.
WalkCalls the given delegate routine for each element in the array.

Delegates

MapStringArrayDelegate (console safe) A delegate for the Map method on this class.
WalkStringArrayDelegate (console safe) A delegate for the Walk method on this class.

Supported Platforms:

  • macOS Intel 64 bit
  • macOS Apple Silicon
  • Windows 32 bit
  • Windows 64 bit
  • Windows ARM 64 bit
  • Linux 32 bit
  • Linux 64 bit
  • Linux ARM 32 bit
  • Linux ARM 64 bit
  • iOS