Is there a standard way to write documentation comment in the Swift language? Something equivalent to javadoc (Java) or docstrings (Python)?
example:
Yes there is.
Swift includes "///" comment handling (although probably not everything yet).
Write something like:
/// Hey! func bof(a: Int) { }
Then option-click on the func name and voilà :)