What's the # symbol in swift documentation

Hi.

I see a # symbol allot in swift documentation, as in definition below what it means ? Kindest Regards

import <#module#>
Accepted Answer

It means you have to replace what is between <# #> by the relevant information.

In this case, it means you have to give the module name. Such as:

import SwiftUI

or

import UIKit
import AVFoundation

When you use generics, it asks you to provide the type…

Thanks allot, but it’s not related to generics definition correct ? Didn’t see any generic definitions using this symbol ?

Ok. Thanks allot.

What's the # symbol in swift documentation
 
 
Q