Reading List

Swift Proposal: Opt-in Strict Memory Safety Checking from Michael Tsai RSS feed.

Swift Proposal: Opt-in Strict Memory Safety Checking

SE-0458: For example, Swift solves null references with optional types. Statically, Swift prevents you from using an optional reference without checking it first. If you’re sure it’s non-null, you can use the ! operator, which is safe because Swift will dynamically check for nil. If you really can’t afford that dynamic check, you can use […]