The most important use is interacting with other languages ββthat have different keywords.
From Swift, you can call C and Obj-C functions.
Now consider, for example, that you need to call a C function called guard . However, this is a keyword in Swift, so you must tell the compiler that you do not want to use it as a keyword, but as an identifier, for example:
`guard`()
There are several keywords in Swift that are widely used as method / function names, for example. get and set . In many contexts, Swift can make a difference, but not always.
Sulthan
source share