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.
-
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"
-
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"
-
ghc GHC.Prelude.Basic No documentation available.
-
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"
-
Cabal-syntax Distribution.Compat.Prelude No documentation available.
type family
Unwords (a :: [Symbol]) :: Symbolsingletons-base Prelude.Singletons No documentation available.
data
UnwordsSym0 (a :: TyFun [Symbol] Symbol)singletons-base Prelude.Singletons No documentation available.
type family
UnwordsSym1 (a6989586621679827295 :: [Symbol]) :: Symbolsingletons-base Prelude.Singletons No documentation available.
sUnwords :: forall (t :: [Symbol]) . Sing t -> Sing (Apply UnwordsSym0 t)singletons-base Prelude.Singletons No documentation available.
-
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"