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. unsafeFromListReverseMutableN :: forall (arr :: Type -> Type) a m . (Contiguous arr, Element arr a, PrimMonad m) => Int -> [a] -> m (Mutable arr (PrimState m) a)

    contiguous Data.Primitive.Contiguous

    Create a mutable array from a list, reversing the order of the elements. If the given length does not match the actual length, this function has undefined behavior.

  2. unsafeFromListReverseN :: (Contiguous arr, Element arr a) => Int -> [a] -> arr a

    contiguous Data.Primitive.Contiguous

    Create an array from a list, reversing the order of the elements. If the given length does not match the actual length, this function has undefined behavior.

  3. unorderedFromList :: Ord k => [(k, v)] -> Map k v

    dhall Dhall.Map

    Create a Map from a list of key-value pairs Any further operations on this map will not retain the order of the keys.

    >>> unorderedFromList []
    fromList []
    
    >>> unorderedFromList [("B",1),("A",2)]  -- The map /doesn't/ preserve order
    fromList [("A",2),("B",1)]
    
    >>> unorderedFromList [("A",1),("A",2)]  -- For duplicates, later values take precedence
    fromList [("A",2)]
    

  4. fileListNewFromList :: (HasCallStack, MonadIO m, IsFile a) => [a] -> m FileList

    gi-gdk4 GI.Gdk.Structs.FileList

    Creates a new files list container from a singly linked list of GFile instances. This function is meant to be used by language bindings Since: 4.8

  5. toHtmlFromList :: HTML a => [a] -> Html

    html Text.Html

    No documentation available.

  6. efromList :: HasCallStack => [a] -> NonEmpty a

    dejafu Test.DejaFu.Internal

    fromList but with a better error message if it fails. Use this only where it shouldn't fail!

  7. homoListFromList :: HomoList s ss => [t s] -> PL t ss

    hetero-parameter-list Data.HeteroParList

    No documentation available.

  8. cfgFromList :: [(SectionName, [(OptionName, OptionValue)])] -> Config

    hsini Data.Ini.Types

    No documentation available.

  9. keyMapFromList :: [(Key, v)] -> KeyMap v

    monad-logger-aeson Control.Monad.Logger.Aeson.Internal

    No documentation available.

  10. cacheFromList :: [Template] -> TemplateCache

    mustache Text.Mustache.Compile

    Flatten a list of Templates into a single TemplateCache

Page 69 of many | Previous | Next