Skip to content

Instance Method

sequencedFlatMapEachCompact(_:)

Variant of sequencedFlatMapEach(_:) which provides compactMap() semantics by allowing result values to be nil. Such results are not included in the output array.
func sequencedFlatMapEachCompact<Result>(_ transform: @escaping (Value.Element) -> EventLoopFuture<Result?>) -> EventLoopFuture<[Result]>

See Also

EventLoopFuture