Elements
public struct Elements : Collection, Sendable
A collection with the elements of an access effect set.
-
Declaration
Swift
public typealias Index = UInt8 -
Declaration
Swift
public typealias Element = AccessEffect -
The contents of the set being iterated over.
Declaration
Swift
private let base: AccessEffectSet -
Creates an iterator over
s.Declaration
Swift
public init(_ s: AccessEffectSet) -
Declaration
Swift
public var isEmpty: Bool { get } -
Declaration
Swift
public var startIndex: UInt8 { get } -
Declaration
Swift
public var endIndex: UInt8 { get } -
Declaration
Swift
public func index(after position: UInt8) -> UInt8 -
Declaration
Swift
public subscript(position: UInt8) -> AccessEffect { get }
View on GitHub