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 Type| Name | Type | Description |
$duration |
xs:yearMonthDuration? |
the duration |
| return value |
xs:decimal? |
XSLT Function Declaration| See XQuery definition. | | XSLT 2.0 Syntax: |
|---|
<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>
|
Examples| XSLT 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 |
|