Files
Stephen Celis dcecad3fe2 Soft-deprecate Store.ifLet (#3382)
* Soft-deprecate `Store.ifLet`

We can prefer `observe` and `if let store.scope` now.

* wip

* wip

* Update MigratingTo1.7.md

* wip
2024-09-13 13:51:00 -07:00

676 B

ComposableArchitecture/Store

Topics

Creating a store

  • init(initialState:reducer:withDependencies:)
  • StoreOf

Accessing state

  • state-1qxwl
  • subscript(dynamicMember:)-655ef
  • withState(_:)

Sending actions

  • send(_:)
  • send(_:animation:)
  • send(_:transaction:)
  • StoreTask

Scoping stores

  • scope(state:action:)-90255
  • scope(state:action:fileID:filePath:line:column:)-3yvuf
  • scope(state:action:fileID:filePath:line:column:)-2ym6k
  • case

Scoping store bindings

  • SwiftUI/Binding

Combine integration

  • StorePublisher

Deprecated interfaces