* Assertions.

* Logical operators (!, &&, ||, ->).
This commit is contained in:
Eelco Dolstra 2003-11-05 16:27:40 +00:00
parent e17e95a828
commit fa18f1f184
6 changed files with 77 additions and 16 deletions

View file

@ -8,7 +8,6 @@
argument. */
Expr primImport(EvalState & state, Expr arg);
/* Construct (as a unobservable) side effect) a Nix derivation
expression that performs the derivation described by the argument
set. Returns the original set extended with the following
@ -18,14 +17,18 @@ Expr primImport(EvalState & state, Expr arg);
derivation. */
Expr primDerivation(EvalState & state, Expr args);
/* Return the base name of the given string, i.e., everything
following the last slash. */
Expr primBaseNameOf(EvalState & state, Expr arg);
/* Convert the argument (which can be a path or a uri) to a string. */
Expr primToString(EvalState & state, Expr arg);
/* Return the null value. */
Expr primNull(EvalState & state, Expr arg);
/* Determine whether the argument is the null value. */
Expr primIsNull(EvalState & state, Expr arg);
#endif /* !__PRIMOPS_H */