episode-code-samples
episode-code-samples copied to clipboard
💾 Point-Free episode code.
Where you able to run the `DesigningDependencies` app ([episode 113](https://github.com/pointfreeco/episode-code-samples/tree/main/0113-designing-depencies-pt4)) on an actual iOS device? For me, there's the following linker issue (tested in both Xcode 12 beta 4 &...
https://github.com/pointfreeco/episode-code-samples/blob/6da776dac5c78a908f7e880501c92046ae59baa4/0212-navigation-stacks-pt2/Inventory/Sources/InventoryFeature/Inventory.swift#L105
Added the missing argument `reducer` in `Store`'s initializer 🙂
I have a pretty simple feature: ``` public struct MaintainFeature: ReducerProtocol { public struct State: Equatable { // This is the domain we're working on here. var profile: Profile var...
When using Xcode 14.2, Fish playground from episode 2 doesn't compile in line 120 because of `Ambiguous use of 'init(utf8String:)'` for >=> example
## Steps to reproduce it 1. Open `Standups` project at git commit id `f8a3513fac4e0949d729650c8b7c956c72e65f51` 2. Run test case `testAddStandup` from test suite `StandupsListTests` 3. Crash! ## Screenshots ## Try to...
Fix the access modifier in the example code from episode 73 of ComposableArchitecture. The following function should be declared as public: ``` func view( _ f: @escaping (Value) -> LocalValue...