1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
(:**************************************************************:)
(: Test: functx-fn-empty-all :)
(: Written by: Priscilla Walmsley (Frans Englich is maintainer) :)
(: Date: 2008-05-16+02:00 :)
(:**************************************************************:)
declare namespace functx = "http://www.example.com/";
let $in-xml := <in-xml>
<a></a>
<b/>
<c>xyz</c>
</in-xml>
return (empty( ('a', 'b', 'c') ), empty( () ), empty(0), empty($in-xml/a), empty($in-xml/b), empty($in-xml/c), empty($in-xml/foo))
|