[clean-list] Arrays: type annotation and pattern matching

terrence.x.brannon at jpmchase.com terrence.x.brannon at jpmchase.com
Fri Aug 22 22:05:33 MEST 2008


I am confused on the type annotation for this function:

CopyFirst :: Int *(a e) -> *(a e) | Array a e
CopyFirst j a=:{[0]=a0} = {a & [j] = a0}

It looks like the function CopyFirst takes two arguments. The first is an 
integer. The second argument confuses me. The asterisk in front of (a e) 
means some data type which receives destructive updates.
But the syntax (a e) was not previously introduced. 

And then the type restriction confuses me...

| Array a e

seems to say 'provided a and e are of type Array' ?

And then the actual code of the function confuses me... actually I think I 
got it

First:   CopyFirst j a=:{[0]=a0}

the function takes 2 arguments, j (an integer) and then a, an array, but 
it also sets a0 to the first element of the array a... of course this 
looks odd. Why is a0 on the RHS instead of LHS?

Then: the actual function body starts ... {a & [j] = a0}  is saying 'take 
a and update the jth position with the value a0'
but the problem is a0 is never defined.

So, to summarize:

1 - the syntax *(a e) is used but not previously defined
2 - the type restriction | Array a e is a bit confusing
3 - it seems odd that a0 is on the RHS of {[0] = a0} instead of the LHS



--
Terrence Brannon - SID W049945
1111 Polaris Pkwy, OH1-1141, Columbus, OH 43240 
818-359-0893 (cell)
614-213-3426 (fax)





-----------------------------------------
This communication is for informational purposes only. It is not
intended as an offer or solicitation for the purchase or sale of
any financial instrument or as an official confirmation of any
transaction. All market prices, data and other information are not
warranted as to completeness or accuracy and are subject to change
without notice. Any comments or statements made herein do not
necessarily reflect those of JPMorgan Chase & Co., its subsidiaries
and affiliates.

This transmission may contain information that is privileged,
confidential, legally privileged, and/or exempt from disclosure
under applicable law. If you are not the intended recipient, you
are hereby notified that any disclosure, copying, distribution, or
use of the information contained herein (including any reliance
thereon) is STRICTLY PROHIBITED. Although this transmission and any
attachments are believed to be free of any virus or other defect
that might affect any computer system into which it is received and
opened, it is the responsibility of the recipient to ensure that it
is virus free and no responsibility is accepted by JPMorgan Chase &
Co., its subsidiaries and affiliates, as applicable, for any loss
or damage arising in any way from its use. If you received this
transmission in error, please immediately contact the sender and
destroy the material in its entirety, whether in electronic or hard
copy format. Thank you.

Please refer to http://www.jpmorgan.com/pages/disclosures for
disclosures relating to UK legal entities.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.science.ru.nl/pipermail/clean-list/attachments/20080822/108a7fcc/attachment-0001.html


More information about the clean-list mailing list