react-native-vision-camera/ios/Extensions/Collection+safe.swift
Marc Rousavy 00c8970366 Add iOS
2021-02-19 16:28:05 +01:00

19 lines
386 B
Swift

//
// Collection+safe.swift
// Cuvent
//
// Created by Marc Rousavy on 10.01.21.
// Copyright © 2021 Facebook. 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
}
}