How are they different? I get a bit confused because they seem to be similar concepts.
How does understanding them help with optimizing compilation time?
How are they different? I get a bit confused because they seem to be similar concepts.
How does understanding them help with optimizing compilation time?
Copyright © 2021 Jogjafile Inc.
From Swift's own documentation:
Type Safety
Swift is a type-safe language. A type safe language encourages you to be clear about the types of values your code can work with. If part of your code expects a String, you can’t pass it an Int by mistake.
Type Inference
If you don’t specify the type of value you need, Swift uses type inference to work out the appropriate type. Type inference enables a compiler to deduce the type of a particular expression automatically when it compiles your code, simply by examining the values you provide.
Type Safety & Type Inference together
Tricky example for protocols with associated types:
Imagine the following protocol
You would adopt it like this:
However you can also adopt it like this:
You can remove the
typealias
. The compiler will still infer the type.For more see Generics - Associated Types
Type-safety and Generics
Suppose you have the following code:
T
can be anything that's numeric e.g.Int
,Double
,Int64
, etc.However as soon as you type
let h = Helper(num: 10)
the compiler will assume thatT
is anInt
. It won't acceptDouble
,Int64
, for itsadder
func anymore. It will only acceptInt
.This is again because of type-inference and type-safety.
Int
.T
is set to be of typeInt
, it will no longer acceptInt64
,Double
...As you can see in the screenshot the signature is now changed to only accept a parameter of type
Int
Pro tip to optimize compiler performance:
The less type inference your code has to do the faster it compiles. Hence it's recommended to avoid collection literals. And the longer a collection gets, the slower its type inference becomes...
not bad
good
For more see this answer.
Also see Why is Swift compile time so slow?
The solution helped his compilation time go down from 10/15 seconds to a single second.