Several sequences can be used in evaluation of "every" or "some" instructions.
|
XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/> <xsl:template match="/aaa"> <xxx> <xsl:value-of select="if (some $a in (1 to 5), $b in (3,4) satisfies $a * $b = 16) then 1 else 0"/> </xxx> <yyy> <xsl:value-of select="if (every $a in (1 to 5), $b in (3,4) satisfies $a * $b = 16) then 1 else 0"/> </yyy> </xsl:template> </xsl:stylesheet> |
|
|
XML
<aaa/> |
Output
<xxx>1</xxx> <yyy>0</yyy> |
| Previous chapter: | Comparisons |
| Next chapter: | Elements and attributes |
| Previous page: | some and every are not opposites |
| Next page: | - - - |