Files
divkit/client/ios/Core/BaseTinyPublic/CollectionExtensions.swift
T
2023-03-28 12:17:21 +03:00

10 lines
201 B
Swift

// Copyright 2021 Yandex LLC. All rights reserved.
import Foundation
extension Collection {
public func element(at index: Index) -> Element? {
indices.contains(index) ? self[index] : nil
}
}