Closed vnntsu closed 4 years ago
As we discussed, we might need to update our template to omit return here a bit. What we are currently doing:
var input: ModuleInput { return presenter } var output: ModuleOutput { get { return presenter.output } set { presenter.output = newValue } }
And what we could do with Swift 5.1
var input: ModuleInput { presenter } var output: ModuleOutput { get { presenter.output } set { presenter.output = newValue } }
return
18
What's Happened
As we discussed, we might need to update our template to omit return here a bit. What we are currently doing:
And what we could do with Swift 5.1
Insight
return