We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
parallelMap(_:)
func parallelMap<T>(_ transform: (Element) throws -> T) throws -> [T]
parallelCompactMap(transform:)
func parallelCompactMap<T>(transform: (Element) throws -> T?) throws -> [T]
parallelFlatMap(transform:)
func parallelFlatMap<T>(transform: (Element) throws -> [T]) throws -> [T]
parallelForEach(_:)
func parallelForEach(_ body: (Element) throws -> Void) throws