Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 639 Bytes

File metadata and controls

5 lines (4 loc) · 639 Bytes

This directory contains code from Point-Free Episode: Observable Architecture: Sneak Peek

One of the core tenets of the Composable Architecture is that you should be able to model your application’s state using simple value types, like structs and enums. However, the @Observable macro does not work with value types at all, and so in order to enhance the Composable Architecture with Observation we will need to contend with this issue and explore what it means for a struct to be observable.