Instance Propertyswift-composable-architecture 1.18.0ComposableArchitecture
startIndex
NavigationStack+Observation.swift:491var startIndex: Int { get }
var startIndex: Int { get }
s22ComposableArchitecture10StackStateV8PathViewV10startIndexSivp
What are these?3JKSB
import ComposableArchitecture
The Composable Architecture (TCA, for short) is a library for building applications in a consistent and understandable way, with composition, testing, and ergonomics in mind. It can be used in SwiftUI, UIKit, and more, and on any Apple platform (iOS, macOS, tvOS, and watchOS).
struct PathView
struct StackState<Element>
A list of data representing the content of a navigation stack.
@frozen struct Int
A signed integer value type.
init()
var endIndex: Int { get }
subscript(position: Int) -> Component { get set }
func index(after i: Int) -> Int
func index(before i: Int) -> Int
mutating func replaceSubrange(_ subrange: Range<Int>, with newElements: some Collection<Component>)