Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

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

  1. fromList :: Enum a => [a] -> EnumSet a

    ghc-lib-parser GHC.Data.EnumSet

    No documentation available.

  2. fromList :: Word -> [a] -> FlatBag a

    ghc-lib-parser GHC.Data.FlatBag

    Store the list in a flattened memory representation, avoiding the memory overhead of a linked list. The size n needs to be smaller or equal to the length of the list. If it is smaller than the length of the list, overflowing elements are discarded. It is undefined behaviour to set n to be bigger than the length of the list.

  3. fromList :: forall (m :: Type -> Type) a . Monad m => [a] -> Stream m a ()

    ghc-lib-parser GHC.Data.Stream

    Turn a list into a Stream, by yielding each element in turn.

  4. fromList :: [(Key, a)] -> Word64Map a

    ghc-lib-parser GHC.Data.Word64Map.Internal

    Create a map from a list of key/value pairs.

    fromList [] == empty
    fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")]
    fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
    

  5. fromList :: [(Key, a)] -> Word64Map a

    ghc-lib-parser GHC.Data.Word64Map.Lazy

    Create a map from a list of key/value pairs.

    fromList [] == empty
    fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")]
    fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
    

  6. fromList :: [(Key, a)] -> Word64Map a

    ghc-lib-parser GHC.Data.Word64Map.Strict

    Create a map from a list of key/value pairs.

    fromList [] == empty
    fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")]
    fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
    

  7. fromList :: [(Key, a)] -> Word64Map a

    ghc-lib-parser GHC.Data.Word64Map.Strict.Internal

    Create a map from a list of key/value pairs.

    fromList [] == empty
    fromList [(5,"a"), (3,"b"), (5, "c")] == fromList [(5,"c"), (3,"b")]
    fromList [(5,"c"), (3,"b"), (5, "a")] == fromList [(5,"a"), (3,"b")]
    

  8. fromList :: [Key] -> Word64Set

    ghc-lib-parser GHC.Data.Word64Set

    Create a set from a list of integers.

  9. fromList :: [Key] -> Word64Set

    ghc-lib-parser GHC.Data.Word64Set.Internal

    Create a set from a list of integers.

  10. fromList :: [(TargetPath, FileInfo)] -> FileMap

    hackage-security Hackage.Security.TUF.FileMap

    No documentation available.

Page 13 of many | Previous | Next