-
Notifications
You must be signed in to change notification settings - Fork 29
Function
A function declaration.
public struct Function: Declaration, Hashable, Codable
Declaration
, Hashable
, Codable
, ExpressibleBySyntax
, CustomStringConvertible
Creates an instance initialized with the given syntax node.
public init(_ node: FunctionDeclSyntax)
let context: String?
The declaration attributes.
let attributes: [Attribute]
The declaration modifiers.
let modifiers: [Modifier]
The declaration keyword ("func"
).
let keyword: String
The function identifier.
let identifier: String
The function signature.
let signature: Signature
The generic parameters for the declaration.
let genericParameters: [GenericParameter]
For example,
the following declaration of function f
has a single generic parameter
whose identifier
is "T"
and type
is "Equatable"
:
func f<T: Equatable>(value: T) {}
The generic parameter requirements for the declaration.
let genericRequirements: [GenericRequirement]
For example,
the following declaration of function f
has a single requirement
that its generic parameter identified as "T"
conforms to the type identified as "Hahable"
:
func f<T>(value: T) where T: Hashable {}
Whether the function is an operator.
var isOperator: Bool
var description: String
Generated at 2020-08-02T12:14:07+0000 using swift-doc 1.0.0-beta.3.
Types
- AssociatedType
- Attribute
- Attribute.Argument
- Class
- ConditionalCompilationBlock
- ConditionalCompilationBlock.Branch
- DeclarationCollector
- Deinitializer
- Enumeration
- Enumeration.Case
- Extension
- Function
- Function.Parameter
- Function.Signature
- GenericParameter
- GenericRequirement
- GenericRequirement.Relation
- Import
- Initializer
- Modifier
- Operator
- Operator.Kind
- PrecedenceGroup
- PrecedenceGroup.Associativity
- PrecedenceGroup.Relation
- Protocol
- Structure
- Subscript
- Typealias
- Variable
- Variable.Accessor
- Variable.Accessor.Kind