1234567891011121314151617 |
- //
- // ExtensionCollection.swift
- // MCPlus
- //
- // Created by seo ha on 15/02/2019.
- // Copyright © 2019 KangSH. All rights reserved.
- //
- import Foundation
- 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
- }
- }
|