This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 8884 - [FO11] missing "*" in function signatures
Summary: [FO11] missing "*" in function signatures
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: Functions and Operators 3.0 (show other bugs)
Version: Working drafts
Hardware: PC Windows XP
: P2 trivial
Target Milestone: ---
Assignee: Michael Kay
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-02-05 19:09 UTC by Andrew Eisenberg
Modified: 2011-06-08 11:44 UTC (History)
0 users

See Also:


Attachments

Description Andrew Eisenberg 2010-02-05 19:09:50 UTC
Section 16, Functions on Functions, contains the following function signatures:

fn:function-name($func as function()) as xs:QName?

fn:function-arity($func as function()) as xs:integer

fn:partial-apply($func as function(), $arg as item()*) as function()

fn:partial-apply($func 	 as function(),
                 $arg as item()*,
                 $argNum as xs:integer) as function()

In all of these, "function()" should be "function(*)".
Comment 1 Michael Kay 2010-02-09 09:15:07 UTC
Fixed as suggested. Note however that some of the changes are superseded by bug #7350, which removes the partial-apply() function.