fn:exists

fn:exists(
   $arg as item()*
) as xs:boolean

Summary

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

Parameters
arg A sequence to test.

Example

fn:exists(fn:remove(("hello"), 1))

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