diff options
author | Ben Burdette <bburdette@gmail.com> | 2021-09-14 10:49:22 -0600 |
---|---|---|
committer | Ben Burdette <bburdette@gmail.com> | 2021-09-14 10:49:22 -0600 |
commit | 21071bfdeb0a5bc2b75018c91a4c2f138f233e33 (patch) | |
tree | 8fbdb2f7de3682ef977c737fd59970d2ed5dabb8 /doc | |
parent | 176911102ce2c0be06bbfed9099f364d71c3c679 (diff) |
shared_ptr for StaticEnv
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/src/expressions/builtins.md.tmp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/manual/src/expressions/builtins.md.tmp b/doc/manual/src/expressions/builtins.md.tmp deleted file mode 100644 index 95a73709e..000000000 --- a/doc/manual/src/expressions/builtins.md.tmp +++ /dev/null @@ -1,16 +0,0 @@ -# Built-in Functions - -This section lists the functions built into the Nix expression -evaluator. (The built-in function `derivation` is discussed above.) -Some built-ins, such as `derivation`, are always in scope of every Nix -expression; you can just access them right away. But to prevent -polluting the namespace too much, most built-ins are not in -scope. Instead, you can access them through the `builtins` built-in -value, which is a set that contains all built-in functions and values. -For instance, `derivation` is also available as `builtins.derivation`. - - - `derivation` *attrs*; `builtins.derivation` *attrs*\ - - `derivation` is described in [its own section](derivations.md). - -EvalCommand::getEvalState()0 |