>>> maximumBy (compare `on` length) ["Hello", "World", "!", "Longest", "bar"] "Longest"WARNING: This function is partial for possibly-empty structures like lists.
>>> bimaximumBy compare (42, 17) 42
>>> bimaximumBy compare (Left 17) 17
>>> bimaximumBy compare (BiList [42, 17, 23] [-5, 18]) 42On empty structures, this function throws an exception:
>>> bimaximumBy compare (BiList [] []) *** Exception: bifoldr1: empty structure ...