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.

  1. unwords :: [String] -> String

    base Prelude

    unwords joins words with separating spaces (U+0020 SPACE). unwords is neither left nor right inverse of words:

    >>> words (unwords [" "])
    []
    
    >>> unwords (words "foo\nbar")
    "foo bar"
    

    Examples

    >>> unwords ["Lorem", "ipsum", "dolor"]
    "Lorem ipsum dolor"
    
    >>> unwords ["foo", "bar", "", "baz"]
    "foo bar  baz"
    

  2. unwords :: [String] -> String

    hedgehog Hedgehog.Internal.Prelude

    unwords joins words with separating spaces (U+0020 SPACE). unwords is neither left nor right inverse of words:

    >>> words (unwords [" "])
    []
    
    >>> unwords (words "foo\nbar")
    "foo bar"
    

    Examples

    >>> unwords ["Lorem", "ipsum", "dolor"]
    "Lorem ipsum dolor"
    
    >>> unwords ["foo", "bar", "", "baz"]
    "foo bar  baz"
    

  3. unwords :: [String] -> String

    ghc GHC.Prelude.Basic

    No documentation available.

  4. unwords :: [String] -> String

    rio RIO.Prelude

    unwords joins words with separating spaces (U+0020 SPACE). unwords is neither left nor right inverse of words:

    >>> words (unwords [" "])
    []
    
    >>> unwords (words "foo\nbar")
    "foo bar"
    

    Examples

    >>> unwords ["Lorem", "ipsum", "dolor"]
    "Lorem ipsum dolor"
    
    >>> unwords ["foo", "bar", "", "baz"]
    "foo bar  baz"
    

  5. unwords :: [String] -> String

    Cabal-syntax Distribution.Compat.Prelude

    No documentation available.

  6. type family Unwords (a :: [Symbol]) :: Symbol

    singletons-base Prelude.Singletons

    No documentation available.

  7. data UnwordsSym0 (a :: TyFun [Symbol] Symbol)

    singletons-base Prelude.Singletons

    No documentation available.

  8. type family UnwordsSym1 (a6989586621679827295 :: [Symbol]) :: Symbol

    singletons-base Prelude.Singletons

    No documentation available.

  9. sUnwords :: forall (t :: [Symbol]) . Sing t -> Sing (Apply UnwordsSym0 t)

    singletons-base Prelude.Singletons

    No documentation available.

  10. unwords :: [String] -> String

    numhask NumHask.Prelude

    unwords joins words with separating spaces (U+0020 SPACE). unwords is neither left nor right inverse of words:

    >>> words (unwords [" "])
    []
    
    >>> unwords (words "foo\nbar")
    "foo bar"
    

    Examples

    >>> unwords ["Lorem", "ipsum", "dolor"]
    "Lorem ipsum dolor"
    
    >>> unwords ["foo", "bar", "", "baz"]
    "foo bar  baz"
    

Page 3 of many | Previous | Next