Hoogle Search

Within LTS Haskell 24.60 (ghc-9.10.3)

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

  1. data TQList a b

    containers Data.Sequence.Internal.Sorting

    No documentation available.

  2. fromAscList :: Eq a => [a] -> Set a

    containers Data.Set

    Build a set from an ascending list in linear time. The precondition (input list is ascending) is not checked.

  3. fromDescList :: Eq a => [a] -> Set a

    containers Data.Set

    Build a set from a descending list in linear time. The precondition (input list is descending) is not checked.

  4. fromDistinctAscList :: [a] -> Set a

    containers Data.Set

    Build a set from an ascending list of distinct elements in linear time. The precondition (input list is strictly ascending) is not checked.

  5. fromDistinctDescList :: [a] -> Set a

    containers Data.Set

    Build a set from a descending list of distinct elements in linear time. The precondition (input list is strictly descending) is not checked.

  6. fromList :: Ord a => [a] -> Set a

    containers Data.Set

    Create a set from a list of elements. If the elements are ordered, a linear-time implementation is used.

  7. toAscList :: Set a -> [a]

    containers Data.Set

    Convert the set to an ascending list of elements. Subject to list fusion.

  8. toDescList :: Set a -> [a]

    containers Data.Set

    Convert the set to a descending list of elements. Subject to list fusion.

  9. toList :: Set a -> [a]

    containers Data.Set

    Convert the set to a list of elements. Subject to list fusion.

  10. fromAscList :: Eq a => [a] -> Set a

    containers Data.Set.Internal

    Build a set from an ascending list in linear time. The precondition (input list is ascending) is not checked.

Page 46 of many | Previous | Next