zhihuitang
1/18/2019 - 9:38 AM

Collection extension

Returns the element at the specified index if it is within bounds, otherwise nil.

public extension Collection {

    /// Returns the element at the specified index if it is within bounds, otherwise nil.
    subscript (safe index: Index) -> Element? {
        return indices.contains(index) ? self[index] : nil
    }
}