AS
Size: a a a
AS
SV
S
AS
KS
AS
I
S
AS
S
AS
AS
S
S
AS
AS
КС
Д
extension Int: Identifiable {
public typealias ID = Int
public var id: Int {
return self
}
}
extension ForEach where Data == Range<Int>, ID == Int, Content : View {
/// Creates an instance that computes views on demand over a *constant*
/// range.
///
/// This instance only reads the initial value of data and so it does not
/// need to identify views across updates.
///
/// To compute views on demand over a dynamic range use
/// ForEach(_:id:content:).
public init(_ data: Range<Int>, @ViewBuilder content: @escaping (Int) -> Content)
}
Д
the initial value of data
?Д