Files
macOS-MenuBar-MatchTicker/Pods/SwiftSoup/Sources/ArrayExt.swift
T
2018-10-09 00:30:51 +02:00

22 lines
436 B
Swift

//
// ArrayExt.swift
// SwifSoup
//
// Created by Nabil Chatbi on 05/10/16.
// Copyright © 2016 Nabil Chatbi.. All rights reserved.
//
import Foundation
extension Array where Element : Equatable {
func lastIndexOf(_ e: Element) -> Int {
for pos in (0..<self.count).reversed() {
let next = self[pos]
if (next == e) {
return pos
}
}
return -1
}
}