Tag

protocol

Posts filed under this topic.

24/01/2016

Strange Swift Protocol

Swift protocol is very interesting yet very weird. Sometimes it behaves very strangely. {% highlight swift %} import Foundation protocol Command {} struct TLDRCommand: Command {} // Works func getOk() [Command] { return...