Hoogle Search

Within LTS Haskell 24.36 (ghc-9.10.3)

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

  1. fromList :: Ord a => [a] -> Heap a

    heaps Data.Heap

    O(n). Build a heap from a list of values.

    fromList . toListid
    toList . fromListsort
    

  2. toUnsortedList :: Heap a -> [a]

    heaps Data.Heap

    O(n). Returns the elements in the heap in some arbitrary, very likely unsorted, order.

    >>> toUnsortedList (fromList [3,1,2])
    [1,3,2]
    
    fromList . toUnsortedListid
    

  3. module Data.HeteroParList

    No documentation available.

  4. class FromList (ss :: [k])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  5. class HomoList (s :: k) (ss :: [k])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  6. class HomoListN (n :: Num k)

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  7. class ToListT2 k1 k2 (ss :: [(k1, k2)])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  8. class ToListT3 k1 k2 k3 (ss :: [(k1, k2, k3)])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  9. class ToListWithC (c :: k -> Constraint) (ss :: [k])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  10. class ToListWithC2 (c :: k -> Constraint) (sss :: [[k]])

    hetero-parameter-list Data.HeteroParList

    No documentation available.

Page 144 of many | Previous | Next