Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 6b3585ea67ce3e79c9049b5b33294cdd > files > 667

docbook-style-dsssl-doc-1.79-16.mga7.noarch.rpm

<RefEntry id="node-list-last-element">
<!-- This file is generated automatically from the DSSSL source. -->
<!-- Do not edit this file! -->
<?html-filename node-list-last-element.html>

<RefMeta>
  <RefEntryTitle>node-list-last-element</RefEntryTitle>
  <RefMiscInfo Role="file">dblib.dsl</RefMiscInfo>
</RefMeta>

<RefNameDiv>
  <RefName>node-list-last-element</RefName>
  <RefPurpose>Return the last element node in a node list</RefPurpose>
</RefNameDiv>

<RefSynopsisDiv><Title>Synopsis</Title>
<Synopsis>
(node-list-last-element nodelist)
</Synopsis>
</RefSynopsisDiv>

<RefSect1><Title>Description</Title>

<para>
This function returns the last node in a node list which is
an element (as opposed to a PI or anything else that might appear
in a node list).</para>


</RefSect1>

<RefSect1><Title>Author</Title>

<para>
Norman Walsh, &lt;ndw@nwalsh.com&gt;
</para>
</RefSect1>
<RefSect1><Title>Source Code</Title>

<ProgramListing>
(define (node-list-last-element nodelist)
  ;; Return the last element node in a node list
  (let loop ((el (empty-node-list)) (nl nodelist))
    (if (node-list-empty? nl)
	el
	(if (gi (node-list-first nl))
	    (loop (node-list-first nl) (node-list-rest nl))
	    (loop el (node-list-rest nl))))))
</ProgramListing>
</RefSect1>

</RefEntry>