Skip to content

steam/advanced-swift-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Advanced Swift Notes

A collection of notes on the excellent book Advanced Swift by Chris Eidhof and Airspeed Velocity.

Swift Style Guide

###Array

Array is a value types but the items it contains may not be. Assigning an Array to a new constant or variable creates a shallow copy unless the items held are also value types in which case it is a deep copy.

SequenceType's map, filter and reduce remove the boiler plate code of a simliar operation allowing the unique transformation code to surface.

It is possible to use sort and contains in interesting ways. ie.

people.contains { $0.age < 18 }

Consider writing extensions for SequenceType when you find yourself writing collection lookup code.

Handy functions

extension SequenceType {
    func findElement (match: Generator.Element->Bool) -> Generator.Element? {
        for element in self where match(element) {
            return element
        }
        return nil
    }
}

Excerpt From: Chris Eidhof. “Advanced Swift.” iBooks.

###Dictionary

Handy functions

extension Dictionary {
    mutating func merge<S: SequenceType
        where S.Generator.Element == (Key,Value)>(other: S) {
        for (k, v) in other {
            self[k] = v
        }
    }
}

###SequenceType (generally)

extension SequenceType where Generator.Element: Hashable {
    func unique() -> [Generator.Element] {
        var seen: Set<Generator.Element> = []
        return filter {
            if seen.contains($0) {
                return false
            } else {
                seen.insert($0)
                return true
            }
        }
    }
}

About

My notes on the objc.io Advanced Swift book.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors