Git Hub
коротко

Collection with safe index

15 июня 2018, 23:41
extension Collection where Indices.Iterator.Element == Index {
    subscript(safe index: Index) -> Iterator.Element? {
        return indices.contains(index) ? self[index] : nil
    }
}
Поделиться
Популярное