- From: <bugzilla@farnsworth.w3.org>
- Date: Thu, 01 May 2008 18:28:58 +0000
- To: public-qt-comments@w3.org
- CC:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5672
------- Comment #4 from mike@saxonica.com 2008-05-01 18:28 -------
Lazy evaluation of function parameters is an absolutely normal technique in
functional programming languages and is essential for good performance. Users
expect to be able to write a function like
declare function first($seq as item()*) as item() {
$seq[1]
}
and have it behave the same as if they wrote $seq[1] directly.
Received on Thursday, 1 May 2008 18:29:28 UTC