Hoogle Search

Within LTS Haskell 22.21 (ghc-9.6.5)

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

  1. words :: String -> [String]

    base Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  2. words :: String -> [String]

    amazonka-core Amazonka.Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  3. words :: String -> [String]

    hedgehog Hedgehog.Internal.Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  4. words :: String -> [String]

    ghc GHC.Prelude.Basic

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  5. words :: String -> [String]

    rio RIO.Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  6. words :: String -> [String]

    Cabal-syntax Distribution.Compat.Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  7. words :: String -> [String]

    ghc-lib-parser GHC.Prelude.Basic

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  8. words :: String -> [String]

    numhask NumHask.Prelude

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

  9. words :: String -> [String]

    prelude-compat Prelude2010

    No documentation available.

  10. words :: String -> [String]

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    words breaks a string up into a list of words, which were delimited by white space (as defined by isSpace). This function trims any white spaces at the beginning and at the end.

    >>> words "Lorem ipsum\ndolor"
    ["Lorem","ipsum","dolor"]
    
    >>> words " foo bar "
    ["foo","bar"]
    

Page 1 of many | Next