RE: [xsl] Sequences in XSLT 2.0..

Subject: RE: [xsl] Sequences in XSLT 2.0..
From: "Pawson, David" <David.Pawson@xxxxxxxxxxx>
Date: Fri, 18 Mar 2005 11:32:22 -0000
Sorry David, catching up with mail. 

    -----Original Message-----
    From: David Carlisle [mailto:davidc@xxxxxxxxx] 
    Sent: 14 March 2005 17:19
    
    One advantage of sequences is that you can store sequences 
    of strings etc ("a","b", ....)
    

    Similarly inside
    <xsl:for-each select="zzzz">
     <xsl:sort select="mmm"/>
    
    the current node list is the ordered list sorted by mmm but 
    that list can not be saved in order, if you need it again 
    later you have to re-sort. In XSLT2 sorted sequences can be saved.


DaveP:

<xsl:variable name="sortedSequence">
    <xsl:for-each select="zzzz">
     <xsl:sort select="mmm"/>
</xsl:variable>

Is that the sort of thing you mean David?
the variable now holds the sorted sequence?



    
    Other reasons have to do with alignment with xsd schema but 
    they are,
    natutrally:-) almost all bad, but on balance ordered 
    sequences are probably a good thing (although perhaps they 
    might have been better still if they had allowed sequences 
    of sequences)

<grin/>

regards DaveP


-- 
DISCLAIMER:

NOTICE: The information contained in this email and any attachments is 
confidential and may be privileged.  If you are not the intended 
recipient you should not use, disclose, distribute or copy any of the 
content of it or of any attachment; you are requested to notify the 
sender immediately of your receipt of the email and then to delete it 
and any attachments from your system.

RNIB endeavours to ensure that emails and any attachments generated by
its staff are free from viruses or other contaminants.  However, it 
cannot accept any responsibility for any  such which are transmitted.
We therefore recommend you scan all attachments.

Please note that the statements and views expressed in this email and 
any attachments are those of the author and do not necessarily represent
those of RNIB.

RNIB Registered Charity Number: 226227

Website: http://www.rnib.org.uk

Current Thread