min<A> function

BaseSemigroup<A> min<A>(
  1. Ord<A> order
)

Creates a semigroup that uses an Ord instance to pick the minimum of two elements.

Implementation

BaseSemigroup<A> min<A>(Ord<A> order) => _MinSemigroup<A>(order);