Files
swiftpm-stencil/Sources/_SwiftSupport.swift
2020-05-27 00:58:28 +02:00

10 lines
185 B
Swift

import Foundation
#if !swift(>=4.2)
extension ArraySlice where Element: Equatable {
func firstIndex(of element: Element) -> Int? {
return index(of: element)
}
}
#endif