Day #60

Implementation of Optionals

This is the implementation behind optionals in swift:

1
2
3
4
enum Optional<T> {
  case some(T)
  case none
}

It is an algebraic data type. Swift has syntax to help make optionals more usable (if let, guard let, etc.)

Originally published 10/15/2021 https://pittcsc.org/, republished 09/20/2022.

Licensed under CC BY-NC-SA 4.0
Last updated on Oct 15, 2021 00:00 UTC
Built with Hugo
Theme Stack designed by Jimmy