-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from CombineCommunity/feature/rewrite-statemac…
…hine-dsl Feature/rewrite statemachine dsl
- Loading branch information
Showing
44 changed files
with
1,604 additions
and
796 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,10 @@ | |
"pins": [ | ||
{ | ||
"package": "Feedbacks", | ||
"repositoryURL": "[email protected]:twittemb/Feedbacks.git", | ||
"repositoryURL": "[email protected]:CombineCommunity/Feedbacks.git", | ||
"state": { | ||
"branch": null, | ||
"revision": "ceca7e90a065cbb67346d0234243f598500ddfc5", | ||
"revision": "826c7798699acd5a9d0348049eaeb8917399a94f", | ||
"version": null | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// Counter.swift | ||
// Examples | ||
// | ||
// Created by Thibault Wittemberg on 2021-02-28. | ||
// | ||
|
||
struct Counter: Equatable { | ||
let value: Int | ||
let min: Int | ||
let max: Int | ||
|
||
func decrease() -> Counter { | ||
Counter(value: self.value - 1, min: self.min, max: self.max) | ||
} | ||
|
||
func increase() -> Counter { | ||
Counter(value: self.value + 1, min: self.min, max: self.max) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 0 additions & 56 deletions
56
Examples/Examples/CounterApp/System/CounterApp+Transitions.swift
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
Examples/Examples/GiphyApp/Features/GifDetail/System/GifDetail+Transitions.swift
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.