Why isn't `extension` abbreviated `ext`?

I'm a fan of using the full word. It seems that Swift usually favours clarity over brevity (within reason), and I like that feature of the language.

func and var are a different case, because they might appear dozens of times within a source file. Abbreviating extension is going to save far less typing overall, but it is going to make your code less readable.

6 Likes