Description
The functx:total-years-from-duration function returns the total number of years in $duration . If it is an uneven number of years, it will return a fractional part. This function is different from the built-in fn:years-from-duration function because the latter will not return a fractional part. If $duration is the empty sequence, the empty sequence is returned.
Arguments and Return TypeName | Type | Description |
$duration |
xs:yearMonthDuration? |
the duration |
return value |
xs:decimal? |
XSLT Function DeclarationSee XQuery definition. | <xsl:function name="functx:total-years-from-duration" as="xs:decimal?"
xmlns:functx="http://www.functx.com">
<xsl:param name="duration" as="xs:yearMonthDuration?"/>
<xsl:sequence select="
$duration div xs:yearMonthDuration('P1Y')
"/>
</xsl:function>
|
ExamplesXPath Example | Results |
---|
functx:total-years-from-duration(
xs:yearMonthDuration('P18M')) |
1.5 |
functx:total-years-from-duration(
xs:yearMonthDuration('P1Y')) |
1 |
functx:total-years-from-duration(
xs:yearMonthDuration('P1Y6M')) |
1.5 |
See AlsoHistory |
Recommended Reading:
|