Conversation
how would you use a curried function in practice? Haven’t heard anyone talk about these Yep. Another good use case:
animate(duration: Double, curve: Curve, etc)(animations: () -> Void) oh thats a great example! *nods* You can make e.g.
struct Style {
static let defaultAnimate = animate(duration: 0.5, curve: .Bounce)
} Ah okay. Thought you knew something we didn’t.