top | item 16227331

(no title)

kainosnoema | 8 years ago

Most Swift code is divided nicely up into modules, which are compiled together and have their own namespace. https://developer.apple.com/library/content/documentation/Sw...

discuss

order

thefounder|8 years ago

For some reasons most of the swift code I've seen doesn't use any namespace/prefix when it calls various functions from different "modules". It's used just like C "include"

plorkyeran|8 years ago

You only have to qualify what module something is from if it would otherwise be ambiguous.