VisualRuns

public struct VisualRuns : RandomAccessCollection

A collection of visually ordered runs in a line.

  • The number of elements in the collection.

    Declaration

    Swift

    public let count: Int
  • The index to the first element.

    Declaration

    Swift

    public var startIndex: Int { get }
  • The index after the last element.

    Declaration

    Swift

    public var endIndex: Int { get }
  • Accesses the bidirectional run at the specified position.

    Declaration

    Swift

    public subscript(index: Int) -> BidiRun { get }

    Parameters

    index

    The position of the element to access. index must be greater than or equal to startIndex and less than endIndex.