Hoogle Search
Within LTS Haskell 24.3 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
head :: Monad m => Producer ByteString m () -> m (Maybe Word8)pipes-bytestring Pipes.ByteString Retrieve the first Word8
head :: Foldable f => f a -> Maybe aprotolude Protolude.List No documentation available.
head :: HasCallStack => [a] -> aprotolude Protolude.Partial Extract the first element of a list, which must be non-empty. To disable the warning about partiality put {-# OPTIONS_GHC -Wno-x-partial -Wno-unrecognised-warning-flags #-} at the top of the file. To disable it throughout a package put the same options into ghc-options section of Cabal file. To disable it in GHCi put :set -Wno-x-partial -Wno-unrecognised-warning-flags into ~/.ghci config file. See also the migration guide.
Examples
>>> head [1, 2, 3] 1
>>> head [1..] 1
>>> head [] *** Exception: Prelude.head: empty list
-
recursion-schemes Data.Functor.Base No documentation available.
head :: HasCallStack => [a] -> aghc-internal GHC.Internal.Data.List Warning: This is a partial function, it throws an error on empty lists. Use pattern matching, uncons or listToMaybe instead. Consider refactoring to use Data.List.NonEmpty.
head :: HasCallStack => [a] -> aghc-internal GHC.Internal.Data.OldList Warning: This is a partial function, it throws an error on empty lists. Use pattern matching, uncons or listToMaybe instead. Consider refactoring to use Data.List.NonEmpty.
head :: HasCallStack => [a] -> aghc-internal GHC.Internal.List Warning: This is a partial function, it throws an error on empty lists. Use pattern matching, uncons or listToMaybe instead. Consider refactoring to use Data.List.NonEmpty.
-
infinite-list Data.List.Infinite Get the first elements of an infinite list.
-
jsaddle Data.JSString O(1) Returns the first character of a JSString, which must be non-empty. Subject to fusion.
head :: HasCallStack => Stream Char -> Charjsaddle Data.JSString.Internal.Fusion.Common O(1) Returns the first character of a Stream Char, which must be non-empty. This is a partial function, consider using uncons. Properties
head . stream = head