Browse thread
[Caml-list] Fwd: Polymorphic optional label argument, with default
[
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: | Brian Hurt <bhurt@s...> |
| Subject: | Re: [Caml-list] Fwd: Polymorphic optional label argument, with default |
On Sat, 10 Apr 2004, Richard Jones wrote:
> Hi:
>
> I posted the message below originally on ocaml_beginners. There were
> many helpful responses, and the general consensus was that this was
> not possible, but no one could give a definitive answer. I just
> wanted to confirm on the 'grown-ups' list (:-) if this is really true
> before I finalise the API I am designing.
Hmm. Somehow I've gotten unsubscribed from that list. I should subscribe
again.
>
> Thanks,
>
> Rich.
>
> To: ocaml_beginners@yahoogroups.com
> From: Richard Jones <rich@annexia.org>
> Subject: Polymorphic optional label argument, with default
>
> I have a function defined:
>
> let plot ?(labels = string_of_int) graph =
> (* ... *)
>
> The idea of the optional 'labels' argument is to specify a polymorphic
> function 'a -> string which is used to print labels stored in the
> 'graph' argument.
>
> The problem is that because string_of_int is obviously int -> string,
> my function is typed as:
>
> plot : ?labels : (int -> string) -> (* ... int ... *) -> unit
>
> but I want it to be typed as:
>
> plot : ?labels : ('a -> string) -> (* ... 'a ... *) -> unit
>
> [The 'a types are the same type. If I leave out the initializer, then
> it works.]
>
> How to?
>
I don't think it's possible. Consider the following situation: I pass in
a graph of floats for example, and then forget to specify a labels
argument. Now you're passing a float to string_of_int.
--
"Usenet is like a herd of performing elephants with diarrhea -- massive,
difficult to redirect, awe-inspiring, entertaining, and a source of
mind-boggling amounts of excrement when you least expect it."
- Gene Spafford
Brian
-------------------
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