max -package:threepenny-gui

Combinator for the max attribute. Example:
div ! max "bar" $ "Hello."
Result:
<div max="bar">Hello.</div>
Max value seen
Max value seen
Maximum of a group
Longest execution time.
We are not able to implement a full Ord instance including Eq superclass and comparisons, but we need to compute maxima.
max x y z means max x y = z.
Maximum value.
Combines two multisets, returning the max count of each element.
We are not able to implement a full Ord instance including Eq superclass and comparisons, but we need to compute maxima.
The Max Monoid and Semigroup always choose the bigger element as by the Ord instance and max of the contained type.

Examples

>>> Max 42 <> Max 3
Max {getMax = 42}
>>> sconcat $ Max 1 :| [ Max n | n <- [2 .. 100]]
Max {getMax = 100}