<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://www.w3.org/Bugs/Public/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4"
          urlbase="https://www.w3.org/Bugs/Public/"
          
          maintainer="sysbot+bugzilla@w3.org"
>

    <bug>
          <bug_id>26476</bug_id>
          
          <creation_ts>2014-07-30 21:37:46 +0000</creation_ts>
          <short_desc>Signature of array:fold-right and array:fold-left</short_desc>
          <delta_ts>2014-11-17 09:46:48 +0000</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>XPath / XQuery / XSLT</product>
          <component>Functions and Operators 3.1</component>
          <version>Working drafts</version>
          <rep_platform>All</rep_platform>
          <op_sys>All</op_sys>
          <bug_status>CLOSED</bug_status>
          <resolution>FIXED</resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords></keywords>
          <priority>P2</priority>
          <bug_severity>normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter>arve.gengelbach</reporter>
          <assigned_to name="Michael Kay">mike</assigned_to>
          
          
          <qa_contact name="Mailing list for public feedback on specs from XSL and XML Query WGs">public-qt-comments</qa_contact>

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>109608</commentid>
    <comment_count>0</comment_count>
    <who name="">arve.gengelbach</who>
    <bug_when>2014-07-30 21:37:46 +0000</bug_when>
    <thetext>Hej,
just looking at the working draft on the array section. I know this is work in progress. However I’d like to know how the signature of array:fold-right (and left) is motivated.
Present signature is …

Section 17.3.13 array:fold-right
array:fold-right(
	$array	 as array(*),
	$zero	 as item()*,
	$function	as function(item()*) as item()*
) as array(*)


I’d expect an array:fold-right to be equivalent to the query:


declare function array:fold-right(
        $array	 as array(*),
	$zero	 as item()*,
        $function	 as function(item()*, item()*) as item()*
) as item()* {
  if (array:size($seq) = 0)
  then $zero
  else $function(array:head($array), fn:fold-right(array:tail($array), $zero, $function))
};

Hence the signature to be different to the one presently mentioned in the draft. This signature then would be in analogy to fn:fold-right.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>109617</commentid>
    <comment_count>1</comment_count>
    <who name="Michael Kay">mike</who>
    <bug_when>2014-07-30 22:27:13 +0000</bug_when>
    <thetext>You&apos;re right - thanks for pointing out this error.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>111140</commentid>
    <comment_count>2</comment_count>
    <who name="Michael Kay">mike</who>
    <bug_when>2014-09-07 13:58:53 +0000</bug_when>
    <thetext>Fixed in the next draft.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>114989</commentid>
    <comment_count>3</comment_count>
    <who name="Michael Kay">mike</who>
    <bug_when>2014-11-17 09:46:48 +0000</bug_when>
    <thetext>For the record, this was not fully/correctly fixed in the Oct 2014 WD, and resurfaces as bug #27231</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>