xsl-list
[Top] [All Lists]

RE: [xsl] Declaring more than one type for a parameter in xsl:function?

2008-01-10 09:29:01

Pseudo example:

<xsl:function name="myf:funct" as="xs:string">
  <xsl:param name="t" as="element(a) | element(b)"/>
  ...

Just use element() (the lowest common supertype). Or if the elements are
members of the same substitution group, use the name of the substitution
group head (with schema-element()).


<xsl:function name="myf:funct" as="xs:string">
  <xsl:param name="t" as="element(b) | xs:string"/>
  ...


That looks like a pretty peculiar function to want to write. Rethink the
design.

Michael Kay
http://www.saxonica.com/


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--