Browse thread
[Caml-list] naming parts of optional arguments?
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Chris Hecker <checker@d...> |
| Subject: | [Caml-list] naming parts of optional arguments? |
Is there a way to name the components of an optional argument?
# let f ((x,y) as xy) = xy;;
val f : 'a * 'b -> 'a * 'b = <fun>
# let f ?xy () = xy;;
val f : ?xy:'a -> unit -> 'a option = <fun>
# let f ?((x,y) as xy) () = xy;;
Characters 8-9:
let f ?((x,y) as xy) () = xy;;
^
Syntax error
Chris
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners