- From: <bugzilla@jessica.w3.org>
- Date: Tue, 24 Mar 2015 15:27:12 +0000
- To: public-qt-comments@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=28325
Bug ID: 28325
Summary: Signature of map:for-each
Product: XPath / XQuery / XSLT
Version: Working drafts
Hardware: PC
OS: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: Functions and Operators 3.1
Assignee: mike@saxonica.com
Reporter: christian.gruen@gmail.com
QA Contact: public-qt-comments@w3.org
The signature of map:for-each is slightly wrong:
map:for-each(
$input as map(*),
$action as function($key as xs:anyAtomicType, $value as item()*)
) as item()*
It should be:
map:for-each(
$input as map(*),
$action as function(xs:anyAtomicType, item()*) as item()*
) as item()*
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Tuesday, 24 March 2015 15:27:13 UTC