mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
10 lines
201 B
Swift
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
|
|
}
|
|
}
|