ForEach
public struct ForEach<T> : CodeRepresentable where T : RandomAccessCollection
A struct that enables interation through a collection.
-
Initializer
Declaration
Swift
public init(_ elements: T, @CodeBuilder _ builder: @escaping (T.Element) -> CodeRepresentable)Parameters
elementsThe collection of elements
builderThe CodeBuilder closure executed on each element of the collection
-
A collection of elements to be iterated on
Declaration
Swift
public let elements: T -
The closure executed on each element that produces a CodeRepresentable
Declaration
Swift
public let builder: (T.Element) -> CodeRepresentable -
The CodeRepresentables created by the builder are joined together with line breaks in between
Declaration
Swift
@inlinable public var asCode: Code { get }
View on GitHub
Install in Dash
ForEach Structure Reference