Given the following initialiser:
init(a1: String? = nil, a2: String? = nil, .... a16: String? = nil) {
...
}
With some simple mathematics all the possible initialisers are 2^16 = 65536
Question:
Is it true that adding too many default arguments increase build time or has bad performance?