GeomAlg-0.2.3: Library of geometric algorithms in HaskellSource codeContentsIndex
GeomAlg.External.QSort
Description

This module implements a sort function using a variation on quicksort. It is stable, uses no concatenation and compares only with <=.

sortLe sorts with a given predicate sort uses the <= method

Author: Lennart Augustsson

Documentation
sortLe :: (a -> a -> Bool) -> [a] -> [a]Source
sort :: Ord a => [a] -> [a]Source
Produced by Haddock version 2.4.2