Upgrade to Pro — share decks privately, control downloads, hide ads and more …

[WIP] How to contribute to Swift

d_date
March 09, 2018

[WIP] How to contribute to Swift

2018/03/09 try!Swift After talks Day 2

d_date

March 09, 2018
Tweet

More Decks by d_date

Other Decks in Programming

Transcript

  1. static func rejectNilHeaders(_ source: [String: Any?]) -> [String: String] {

    var destination = [String: String]() for (key, nillableValue) in source { if let value: Any = nillableValue { destination[key] = "\(value)" } } return destination }