[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Challenge: do better than my implementation of "u

Subject: Re: Challenge: do better than my implementation of "update map" and "print map"
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Wed, 28 Aug 2013 19:49:52 -0700
Re:  Challenge: do better than my implementation of  "u
What about this:

<xsl:stylesheet  version="3.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:f="function"
 xmlns:map="http://www.w3.org/2005/xpath-functions/map">

 <xsl:output method="text"/>

     <!-- Test the two map functions -->
     <xsl:template match="/">
         <xsl:variable name="m" select="map{'Linda' := 'Rosie'}" />

         <xsl:variable name="m1" select="f:add-entry-to-map('Sally',
'Betsy', $m)" />
         <xsl:variable name="m2" select="f:add-entry-to-map('Barb',
'Sue', $m1)" />
         <xsl:variable name="m3" select="f:add-entry-to-map('Nadia',
'Valerie', $m2)" />
         <xsl:variable name="m4" select="f:add-entry-to-map('Faye',
'Carol', $m3)" />

         <xsl:sequence select="f:print-map($m4)" />
     </xsl:template>

     <xsl:function name="f:add-entry-to-map" as="map(xs:anyAtomicType,
item()*)">
         <xsl:param name="key" as="xs:string" />
         <xsl:param name="value" as="item()" />
         <xsl:param name="m" as="map(xs:anyAtomicType, item()*)" />

         <xsl:sequence select="map:new(($m, map:entry($key, $value)))" />
     </xsl:function>

     <xsl:function name="f:print-map" as="item()*">
         <xsl:param name="m" as="map(xs:anyAtomicType, item()*)" />

         <xsl:sequence select="map:keys($m) ! concat(., '-', map:get($m, .))"/>
     </xsl:function>
 </xsl:stylesheet>

Cheers,
Dimitre


On Wed, Aug 28, 2013 at 2:52 PM, Costello, Roger L. <costello@xxxxxxxxx> wrote:
>
> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>                 xmlns:map="http://www.w3.org/2005/xpath-functions/map"
>                 xmlns:xs="http://www.w3.org/2001/XMLSchema"
>                 xmlns:f="function"
>                 version="3.0">
>
>     <!-- Test the two map functions -->
>
>     <xsl:template match="/">
>         <xsl:variable name="m" select="map{'Linda' := 'Rosie'}" />
>
>         <xsl:variable name="m1" select="f:add-entry-to-map('Sally', 'Betsy', $m)" />
>         <xsl:variable name="m2" select="f:add-entry-to-map('Barb', 'Sue', $m1)" />
>         <xsl:variable name="m3" select="f:add-entry-to-map('Nadia', 'Valerie', $m2)" />
>         <xsl:variable name="m4" select="f:add-entry-to-map('Faye', 'Carol', $m3)" />
>
>         <xsl:sequence select="f:print-map($m4)" />
>
>     </xsl:template>
>
>     <xsl:function name="f:add-entry-to-map" as="map(xs:string, item())">
>         <xsl:param name="key" as="xs:string" />
>         <xsl:param name="value" as="item()" />
>         <xsl:param name="m" as="map(xs:string, item())" />
>
>         <xsl:sequence select="map:new((for $i in map:keys($m) return map:entry($i, map:get($m, $i)), map:entry($key, $value)))" />
>
>     </xsl:function>
>
>     <xsl:function name="f:print-map" as="xs:string*">
>         <xsl:param name="m" as="map(xs:string, item())" />
>
>         <xsl:for-each select="map:keys($m)">
>             <xsl:value-of select="." />
>             <xsl:text> - </xsl:text>
>             <xsl:value-of select="map:get($m, .)" />
>         </xsl:for-each>
>     </xsl:function>
>
> </xsl:stylesheet>




-- 
Cheers,
Dimitre Novatchev
---------------------------------------
Truly great madness cannot be achieved without significant intelligence.
---------------------------------------
To invent, you need a good imagination and a pile of junk
-------------------------------------
Never fight an inanimate object
-------------------------------------
To avoid situations in which you might make mistakes may be the
biggest mistake of all
------------------------------------
Quality means doing it right when no one is looking.
-------------------------------------
You've achieved success in your field when you don't know whether what
you're doing is work or play
-------------------------------------
Facts do not cease to exist because they are ignored.
-------------------------------------
Typing monkeys will write all Shakespeare's works in 200yrs.Will they
write all patents, too? :)
-------------------------------------
I finally figured out the only reason to be alive is to enjoy it.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.