mirror of
https://github.com/NixOS/nix.git
synced 2025-11-11 13:06:01 +01:00
* Added a list concatenation operator:
[1 2 3] ++ [4 5 6] => [1 2 3 4 5 6]
This commit is contained in:
parent
e6899794ae
commit
991a130b1e
8 changed files with 29 additions and 12 deletions
|
|
@ -46,6 +46,7 @@ Expr evalFile(EvalState & state, const Path & path);
|
|||
/* Specific results. */
|
||||
string evalString(EvalState & state, Expr e);
|
||||
Path evalPath(EvalState & state, Expr e);
|
||||
ATermList evalList(EvalState & state, Expr e);
|
||||
|
||||
/* Print statistics. */
|
||||
void printEvalStats(EvalState & state);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue