query
On this page

propagatedBuildInputs

lib.misc.mergeAttrBy.propagatedBuildInputs

Docs pulled from | This Revision | about 1 hour ago


Nixpkgs manual

Concatenate two lists

Inputs

x

1. Function argument

y

2. Function argument

Type

concat :: [a] -> [a] -> [a]

Examples

lib.trivial.concat usage example

concat [ 1 2 ] [ 3 4 ]
=> [ 1 2 3 4 ]
(lib.trivial.concat)

Noogle detected

Aliases

Implementation

The following is the current implementation of this function.

concat = x: y: x ++ y;