From: Jacques Garrigue <garrigue@math.nagoya-u.ac.jp>
To: angela22.zhu@gmail.com
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Ocaml type with constraints?
Date: Mon, 22 Sep 2008 08:55:50 +0900 (JST) [thread overview]
Message-ID: <20080922.085550.173866523.garrigue@math.nagoya-u.ac.jp> (raw)
In-Reply-To: <f82e818a0809211501x824e457y164c71c9ebc45a1d@mail.gmail.com>
From: "Angela Zhu" <angela22.zhu@gmail.com>
> I want to define an OCaml type with constraints.
> For example:
>
> type item = Item of int * float;;
>
> If here this float type is for price of some item, and I want to make sure
> it is positive. In other words, if x = (xi, xf) of type item,
> I want to enforce, xf must >= 0.
>
> Is there a way to define OCaml type like this?
This is the goal of private types.
module Item : sig
type item = private Item of int * float
val create : int -> float -> item
end = struct
type item = Item of int * float
let create n p =
if p >= 0. then Item (n, p) else invalid_arg "Item.create"
end
# Item.create 3 9.95;;
- : Item.item = Item.Item (3, 9.95)
# Item.create 3 (-1.0);;
Exception: Invalid_argument "Item.create".
Note that you must imperatively use Item.create to create an item, but
you can use pattern-matching as usual to access its contents.
Jacques Garrigue
prev parent reply other threads:[~2008-09-21 23:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-21 22:01 Angela Zhu
2008-09-21 22:05 ` [Caml-list] " Andrej Bauer
2008-09-21 23:10 ` Martin Jambon
2008-09-21 22:50 ` Gordon Henriksen
2008-09-21 23:55 ` Jacques Garrigue [this message]
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=20080922.085550.173866523.garrigue@math.nagoya-u.ac.jp \
--to=garrigue@math.nagoya-u.ac.jp \
--cc=angela22.zhu@gmail.com \
--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