17 lines
324 B
Swift
17 lines
324 B
Swift
//
|
|
// Collection+Extensions.swift
|
|
// BlobMenu
|
|
//
|
|
// Created by Igor K. on 23.04.2020.
|
|
// Copyright © 2020 Ramotion. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Collection {
|
|
|
|
public func enumeratedArray() -> Array<(offset: Int, element: Self.Element)> {
|
|
return Array(self.enumerated())
|
|
}
|
|
}
|