1. The document discusses functions in Swift including defining functions, parameters, return values, argument labels, and default parameter values.
2. Functions are defined using the func keyword followed by a function name and parameters. The function body contains the code to be executed.
3. Parameters pass information into a function and can be single or multiple, labeled or unlabeled. Return values return data from the function.