Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pavankataria/cdffc27e7ea7147e9ffa4eebc1704ac3 to your computer and use it in GitHub Desktop.
Save pavankataria/cdffc27e7ea7147e9ffa4eebc1704ac3 to your computer and use it in GitHub Desktop.
// In the flatmap method it would look something like this
switch self {
case .some(let unwrapped):
return transform(unwrappedValue)
case .none:
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment