2021-02-19 08:28:05 -07:00
|
|
|
//
|
|
|
|
// Collection+safe.swift
|
2021-06-21 14:42:46 -06:00
|
|
|
// mrousavy
|
2021-02-19 08:28:05 -07:00
|
|
|
//
|
|
|
|
// Created by Marc Rousavy on 10.01.21.
|
2021-06-01 05:07:57 -06:00
|
|
|
// Copyright © 2021 mrousavy. All rights reserved.
|
2021-02-19 08:28:05 -07:00
|
|
|
//
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|