Created
March 14, 2016 15:12
-
-
Save broomburgo/e2609d60b0d3e245d0ca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
func collectFeedbackModelChange() -> Signal<FeedbackModelChange> { | |
return pageFactory.signalMakeMainPage | |
.flatMap { $0.signalPolarizedChanged } | |
.map(FeedbackModel.transformWithPolarized) | |
+ pageFactory.signalMakeSelectionPage | |
.flatMap { $0.signalSelection } | |
.map(FeedbackModel.transformWithFeedback) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment