Hoogle Search

Within LTS Haskell 22.19 (ghc-9.6.4)

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

  1. concat :: Foldable t => t [a] -> [a]

    numhask NumHask.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  2. concat :: [[a]] -> [a]

    prelude-compat Prelude2010

    No documentation available.

  3. concat :: Foldable t => t [a] -> [a]

    mixed-types-num Numeric.MixedTypes.PreludeHiding

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  4. concat :: Foldable t => t [a] -> [a]

    rebase Rebase.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  5. concat :: Foldable t => t [a] -> [a]

    LambdaHack Game.LambdaHack.Core.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  6. concat :: Foldable t => t [a] -> [a]

    LambdaHack Game.LambdaHack.Core.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  7. concat :: Foldable t => t [a] -> [a]

    cabal-install-solver Distribution.Solver.Compat.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  8. concat :: Foldable t => t [a] -> [a]

    dimensional Numeric.Units.Dimensional.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  9. concat :: Foldable t => t [a] -> [a]

    calligraphy Calligraphy.Prelude

    The concatenation of all the elements of a container of lists.

    Examples

    Basic usage:
    >>> concat (Just [1, 2, 3])
    [1,2,3]
    
    >>> concat (Left 42)
    []
    
    >>> concat [[1, 2, 3], [4, 5], [6], []]
    [1,2,3,4,5,6]
    

  10. concat :: Vec n (Vec m a) -> Vec (n * m) a

    clash-prelude Clash.Explicit.Prelude

    Concatenate a vector of vectors.

    >>> concat ((1:>2:>3:>Nil) :> (4:>5:>6:>Nil) :> (7:>8:>9:>Nil) :> (10:>11:>12:>Nil) :> Nil)
    1 :> 2 :> 3 :> 4 :> 5 :> 6 :> 7 :> 8 :> 9 :> 10 :> 11 :> 12 :> Nil
    

Page 2 of many | Previous | Next