GlyphIDs
public struct GlyphIDs : RandomAccessCollection
A collection of the glyph ids in a shaping result.
-
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 glyph id at the specified position.
Declaration
Swift
public subscript(index: Int) -> GlyphID { get }
Parameters
index
The position of the element to access.
index
must be greater than or equal tostartIndex
and less thanendIndex
.