Publishes the minimum value received from the upstream publisher, using the provided error-throwing closure to order the items.
SDKs
- iOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Framework
- Combine
Declaration
func tryMin(by areInIncreasingOrder: @escaping (Upstream.Output, Upstream.Output) throws -> Bool) -> Publishers.Try Comparison<Publishers.Share<Upstream>>
Parameters
areInIncreasingOrder
A throwing closure that receives two elements and returns
true
if they are in increasing order. If this closure throws, the publisher terminates with aFailure
.
Return Value
A publisher that publishes the minimum value received from the upstream publisher, after the upstream publisher finishes.
Discussion
After this publisher receives a request for more than 0 items, it requests unlimited items from its upstream publisher.