query
On this page

concatStrings

lib.strings.concatStrings

Docs pulled from | This Revision | 10 minutes ago


Concatenate a list of strings.

Type

concatStrings :: [string] -> string

Examples

lib.strings.concatStrings usage example

concatStrings ["foo" "bar"]
=> "foobar"

Noogle detected

Aliases

Implementation

This function is implemented in c++ and is part of the native nix runtime.

Implementation

The following is the current implementation of this function.

concatStrings = builtins.concatStringsSep "";