Collection+Extension.swift 305 B

123456789101112131415
  1. //
  2. // Collection+Extension.swift
  3. // TUIRoomKit
  4. //
  5. // Created by janejntang on 2023/3/21.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. import Foundation
  9. extension Collection {
  10. subscript (safe index: Index) -> Element? {
  11. return indices.contains(index) ? self[index] : nil
  12. }
  13. }