Curious: why do you use classes instead of structs for implementations in swiftz?
Conversation
no reason. I'm probably going to end up switching them to structs where I can.
1
2
Wait, do structs actually have better performance than objects in Swift?
1
Replying to
Yes, just like in C. No malloc, no virtual dispatch.


