fn.empty

fn.empty(
   arg as Sequence
) as Boolean

Summary

If the value of $arg is the empty sequence, the function returns true; otherwise, the function returns false.

Parameters
arg A sequence to test. If you pass in a single value, it is treated as a Sequence with that single item; therefore, if you pass in an array, the array is treated as a single value (not as one value for each item in the array). If you mean to pass in the values of each item in the array, then you can call xdmp.arrayValues on the array.

Example

fn.empty(fn.remove(xdmp.arrayValues(["hello", "world"]), 1));

=> false
Powered by MarkLogic Server | Terms of Use | Privacy Policy