diff options
Diffstat (limited to 'doc/concepts/expressions.md')
-rw-r--r-- | doc/concepts/expressions.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/concepts/expressions.md b/doc/concepts/expressions.md index c75f00dc..4db7c8cb 100644 --- a/doc/concepts/expressions.md +++ b/doc/concepts/expressions.md @@ -248,6 +248,11 @@ those) argument(s) to obtain the final result. result is the input list, except that for all duplicate values, all but the rightmost occurrence is removed. + - `"nub_list"` The argument has to be a list. It is an error + if that list contains (directly or indirectly) a name. The + result is the input list, except that for all duplicate + values, all but the leftmost occurrence is removed. + - `"basename"` The argument has to be a string. This string is interpreted as a path, and the file name thereof is returned. |