1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 10:41:16 +02:00

Merge branch 'master' into debug-exploratory-PR

This commit is contained in:
Ben Burdette 2022-05-09 09:30:44 -06:00 committed by GitHub
commit 7cd7c7c91a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 1387 additions and 67 deletions

View file

@ -3823,7 +3823,7 @@ static RegisterPrimOp primop_split({
Evaluates to `[ "" [ "a" null ] "b" [ null "c" ] "" ]`.
```nix
builtins.split "([[:upper:]]+)" " FOO "
builtins.split "([[:upper:]]+)" " FOO "
```
Evaluates to `[ " " [ "FOO" ] " " ]`.