From: Alessandro Baretta <alex@baretta.com>
To: Ocaml <caml-list@inria.fr>
Cc: Jacques Garrigue <garrigue@kurims.kyoto-u.ac.jp>
Subject: [Caml-list] Polymorphic methods and ellipsis
Date: Sat, 21 Sep 2002 02:26:44 +0200 [thread overview]
Message-ID: <3D8BBCC4.1080906@baretta.com> (raw)
I'm trying to write a polymorphic method that will accept as
a parameter any instance of any subclass of given class. For
example
class parent = object
method foo = "Hello "
method bar = "World!"
end
class son = object
inherit parent
method buz = "Cheers"
end
class salutation : object
method greet : 'a. (#parent as 'a) -> string
end = object
method greet obj = obj # foo ^ obj # bar
end
But of course, this does not work. What is problem? How can
I get a method with a polymorphic ellipsis in its type?
Alex
-------------------
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
next reply other threads:[~2002-09-21 0:17 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-09-21 0:26 Alessandro Baretta [this message]
2002-09-21 0:31 ` Pixel
2002-09-21 8:35 ` Alessandro Baretta
2002-09-22 9:07 ` Jacques Garrigue
2002-09-22 9:39 ` Alessandro Baretta
2002-09-22 17:09 ` brogoff
2002-09-24 9:04 ` Alessandro Baretta
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=3D8BBCC4.1080906@baretta.com \
--to=alex@baretta.com \
--cc=caml-list@inria.fr \
--cc=garrigue@kurims.kyoto-u.ac.jp \
/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