Search Results

0
votes

What is quicker, switch on string or elseif on type?

Switch on string basically gets compiled into a if-else-if ladder. Try decompiling a simple one. In any case, testing string equailty should be cheaper since they are interned and all that would be …