From: Gregoire Sutre <sutre@eecs.berkeley.edu>
To: caml-list@inria.fr
Subject: [Caml-list] Open class type definition ?
Date: Sat, 21 Apr 2001 20:44:15 -0700 [thread overview]
Message-ID: <3AE2538F.83A03652@eecs.berkeley.edu> (raw)
Hi,
I'm trying to use the Object model of OCaml and I'm having trouble with the
class types.
My goal is to have datatypes that can be easily converted into strings for
debugging purposes. So instead of enclosing each datatype inside a
dedicated module with a to-string() function (that would lead to a huge
number of modules), I thought that I could use an object type instead,
saying that there is *at least* a method to_string(), and define my
datatypes as classes with *at least* a to_string() method inside each class.
For instance, I could specify an ordered type this way:
module type ORDERED_TYPE =
sig
type t = < to_string : unit -> string >
val compare : t -> t -> int
end
This would ensure that the type t has a to_string() method, and then I could
have the following functor:
module Funct(A : ORDERED_TYPE) =
struct
let display_cmp x y = x#to_string() ^ " cmp " ^ x#to_string() ^
" = " ^ (string_of_int (A.compare x y))
end
where I could use to_string().
The problem is that the declaration for type t above:
type t = < to_string : unit -> string >
actually enforces objects to have only the to_string method and no other
public methods. But the compare function may need to read the contents of
the objects, and for that it would need public accessors. Consider for
instance the following module:
module Foo =
struct
class my_int x =
object
val mutable v = x
method to_string () = "Int(" ^ (string_of_int v) ^")"
method get_v = v
method set_v new_v = v <- new_v
end
type t = my_int
let compare (x:t) (y:t) = compare x#get_v y#get_v
end
In this module, the compare function reads the integer value stored in the
objects to perform its job. But then, the type t of the Foo module does not
correspond to the type t of the ORDERED_TYPE signature and I can not apply
the functor to Foo:
[...]
Type declarations do not match:
type t = my_int
is not included in
type t = < to_string : unit -> string >
So I tried to define the type t in the signature so that it does not enforce
objects to have only the to_string method. I tried the following open type:
type t = < to_string : unit -> string; .. >
but I get the error:
Unbound type parameter <..>
I also tried the # construct, without success:
# class type class_t = object val to_string : unit -> string end;;
class type class_t = object val to_string : unit -> string end
# type t = #class_t;;
Unbound row variable in
#class_t
Is it possible to define such open class types. And if not then why is it
so ?
Greg.
--
Gregoire Sutre 144MB Cory Hall
sutre@eecs.berkeley.edu University of California
Phone: (510) 643-2801 Berkeley, CA 94720
-------------------
To unsubscribe, mail caml-list-request@inria.fr. Archives: http://caml.inria.fr
next reply other threads:[~2001-04-23 11:52 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-04-22 3:44 Gregoire Sutre [this message]
2001-04-23 18:21 ` Gerd Stolpmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3AE2538F.83A03652@eecs.berkeley.edu \
--to=sutre@eecs.berkeley.edu \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox