Files
2024-06-28 02:41:50 +01:00

13 lines
217 B
Swift

//
// Collection.swift
// Revolt
//
// Created by Angelo on 19/06/2024.
//
extension Collection {
subscript (safe index: Index) -> Element? {
return indices.contains(index) ? self[index] : nil
}
}