I have a function similar to this:
func stamp(documentURL: NSURL, saveURL: NSURL) {
...}
I'd like to be able to allow someone to set both of those parameters if they want. But if they only set the first parameter, I'd like saveURL = documentURL. Is there any way to do this in the function declaration?