Tag Archives: variadic-swift

Variadic Functions in Swift
Variadic Functions are those which accept from zero to N number of parameters. The most common function which you use almost daily is the print() method You can do print(“abc”) or you can also do print(“a”,”b”,”c”,”d”) or any number of parameters and it will print it all. Let’s see how you can create your own […]