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? |
XQuery Function DeclarationSee XSLT definition. | declare namespace functx = "http://www.functx.com";
declare function functx:total-years-from-duration
( $duration as xs:yearMonthDuration? ) as xs:decimal? {
$duration div xs:yearMonthDuration('P1Y')
} ; |
ExamplesXQuery 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:
|