mirror of
https://github.com/stoatchat/for-ios.git
synced 2026-07-18 16:04:32 -04:00
13 lines
217 B
Swift
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
|
|
}
|
|
}
|