Too many default arguments do slow down build time?

83 Views Asked by At

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?

0

There are 0 best solutions below