Function
public enum Function : CustomStringConvertibleAn enumeration describing a function.
- 
                  
                  A function referred to by its address. DeclarationSwift case address(UnsafeMutableRawPointer)
- 
                  
                  A function referred to by its name and (optionally) image. If imageisnil, it implies that the function may be in any image.DeclarationSwift case symbol(_: String, image: URL?)
- 
                  
                  Equivalent to .symbol(name, image: URL(fileURLWithPath: image))This initializer deliberately requires a non-nil imageparameter, because allowingnilwould cause ambiguity between this method and the enum case when passednilas the second parameter. To use anilimage, invokesymbol(_:String image:URL?)instead, passingURL?.none.DeclarationSwift public static func symbol(_ name: String, image: String) -> FunctionParametersnameThe name of the symbol. imageThe path to the image in which the symbol is located. Return ValueThe described Function.
- 
                  
                  DeclarationSwift public var description: String { get }
 View on GitHub
            View on GitHub
           Install in Dash
            Install in Dash
           Function Enumeration Reference
      Function Enumeration Reference