0
|
1 |
(: fromQTime is intentionally not here, since
|
|
2 |
we don't support it. :)
|
|
3 |
|
|
4 |
string-join(for $i in (
|
|
5 |
$fromFloat,
|
|
6 |
$fromBool,
|
|
7 |
$fromDouble,
|
|
8 |
$fromIntLiteral,
|
|
9 |
$fromLongLong,
|
|
10 |
$fromQByteArray,
|
|
11 |
$fromQChar,
|
|
12 |
$fromQDate,
|
|
13 |
$fromQDateTime,
|
|
14 |
$fromQString,
|
|
15 |
$fromQUrl,
|
|
16 |
$fromUInt,
|
|
17 |
$fromULongLong,
|
|
18 |
$fromBool instance of xs:boolean,
|
|
19 |
$fromDouble instance of xs:double,
|
|
20 |
$fromFloat instance of xs:double,
|
|
21 |
$fromIntLiteral instance of xs:integer,
|
|
22 |
$fromLongLong instance of xs:integer,
|
|
23 |
$fromQByteArray instance of xs:base64Binary,
|
|
24 |
$fromQChar instance of xs:string,
|
|
25 |
$fromQDate instance of xs:date,
|
|
26 |
$fromQDateTime instance of xs:dateTime,
|
|
27 |
$fromQString instance of xs:string,
|
|
28 |
$fromQUrl instance of xs:string,
|
|
29 |
$fromUInt instance of xs:integer,
|
|
30 |
$fromULongLong instance of xs:unsignedLong)
|
|
31 |
return string($i),
|
|
32 |
" ")
|
|
33 |
|