Y
Hacker News
new
|
ask
|
show
|
jobs
by
kainosnoema
3062 days 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...
1 comments
thefounder
3062 days 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"
link
plorkyeran
3062 days ago
You only have to qualify what module something is from if it would otherwise be ambiguous.
link