In Swift, a function can have default values for a parameter like this:
func init(name: String = "foo"){...}
Can a function with a completion handler have a default value so that when calling a function there is no need to specify the completionHandler as nil, similar to the below?
func foo(completion: (success: Bool) -> void = nil){...}