I haven't done that volume but I have written a few thousand lines including this branch of a GCD wrapper library which uses generics to allow return values to be passed between the closures running on the different threads in a typesafe way: https://github.com/josephlord/Async.legacy/blob/argumentsAnd...
It was a nightmare getting it all building right (generic methods on generic classes took me a bit of time to sort out) but I think it works well now.
As for performance noting the amount of Swift you've done (and your activity on the DevForums) I expect you know all this but I've done quite a bit on speeding someone else's code up. There are certainly plenty of ways to accidentally slow down code:
I regard Swift's inconsistent runtime performance and over-reliance on compiler optimizations as a major problem with the current state of the language.
It does not help that some slowdowns are due to bugs, and some due to questionable implementation details that require knowledge of how the runtime operates.
Of course, knowing about the runtime is necessary for all micro-optimization regardless of language, but Swift currently requires it almost all of the time.
The difference between Swift and ObjC/C is glaringly obvious.
Your GCD wrapper examples use only the simplest form of generics, with no constraints at all. Magnify the problems you had to get this to work by x10.000 and you get how easy it is to do anything complex with Swift's generics. It's a maze of missing features and bugs.
I think it's very understandable that Owens got fed up with it.
It was a nightmare getting it all building right (generic methods on generic classes took me a bit of time to sort out) but I think it works well now.
As for performance noting the amount of Swift you've done (and your activity on the DevForums) I expect you know all this but I've done quite a bit on speeding someone else's code up. There are certainly plenty of ways to accidentally slow down code:
Summary of the optimisations taking someone's project from 10fps to about 1500. http://blog.human-friendly.com/swift-optimisation-number-ios...
Presentation on how to make Swift go fast: http://blog.human-friendly.com/london-swift-presentation-swi...