Ferrite-backup/Ferrite/Extensions/Collection.swift
kingbri e2792a0f00 Ferrite: Add code up to alpha 1
Working alpha version of Ferrite

Signed-off-by: kingbri <bdashore3@gmail.com>

part2
2022-07-21 00:01:41 -04:00

15 lines
357 B
Swift

//
// Collection.swift
// Ferrite
//
// Created by Brian Dashore on 7/4/22.
//
import Foundation
extension Collection {
// From https://stackoverflow.com/questions/25329186/safe-bounds-checked-array-lookup-in-swift-through-optional-bindings
subscript(safe index: Index) -> Element? {
indices.contains(index) ? self[index] : nil
}
}