caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* proposed extenion to patterns
@ 2007-03-09  2:02 skaller
  2007-03-09  7:34 ` [Caml-list] " Tom
  2007-03-09 10:08 ` Jon Harrop
  0 siblings, 2 replies; 4+ messages in thread
From: skaller @ 2007-03-09  2:02 UTC (permalink / raw)
  To: caml-list

Pattern matches in Ocaml now allow alternatives within 
a branch subject to a restriction that all alternatives
supply the same set of pattern variables (and of the same type).

This is useful but still quite restrictive, for example:

| A (i,j) | B i with j = 1 -> i + j

cannot be coded, because there's no way to introduce
the variable j.

However this isn't really general enough either,
because it can't HIDE variables!

This form looks more general:

| in A (h,k) let i = h and k = k
| in B s let i = s + 1 let k = i

These forms are inverted let/in constructions,
with all the equivalent options (and, rec, and sequence).

The variables h,k in the first alternative are hidden.

The implementation is roughly syntactic sugar:

match x with A (h,k) -> let i = h and k = k in i,k

The 'with' form is a simplification, as is the
usual form. 

Any comments on this idea?


-- 
John Skaller <skaller at users dot sf dot net>
Felix, successor to C++: http://felix.sf.net


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-03-09 11:19 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-09  2:02 proposed extenion to patterns skaller
2007-03-09  7:34 ` [Caml-list] " Tom
2007-03-09 10:08 ` Jon Harrop
2007-03-09 11:19   ` skaller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).