XPath/XQuery boolean-less-than function

Summary

Returns true if the first argument is false and the second is true.

Operator Mapping

Defines the semantics of the "lt" operator when applied to two xs:boolean values. Also used in the definition of the "ge" operator.

Signature

op:boolean-less-than(
$arg1 as xs:boolean,
$arg2 as xs:boolean
) as xs:boolean

Rules

The function returns true if $arg1 is false and $arg2 is true. Otherwise, it returns false.