Hoogle Search

Within LTS Haskell 24.59 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. sortV :: Ord a => Vector a -> Vector a

    harpie Harpie.Sort

    return the sorted array

    >>> sortV (V.fromList [3,1,4,2,0,5::Int])
    [0,1,2,3,4,5]
    

  2. sort :: Ord a => Vector a -> Vector a

    rrb-vector Data.RRBVector

    Sort the vector in ascending order. The sort is stable, meaning the order of equal elements is preserved.

  3. vectorSort :: (Vector v e, Ord e) => v e -> v e

    mono-traversable Data.Sequences

    Sort a vector.

  4. vectorSort :: (Vector v e, Ord e) => v e -> v e

    classy-prelude-yesod ClassyPrelude.Yesod

    Sort a vector.

  5. gsort :: (Ord e, Vector v e) => v e -> v e

    statistics Statistics.Function

    Sort a vector.

Page 1 of 1