caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Daniel Bünzli" <daniel.buenzli@erratique.ch>
To: Nicolas Ratier <nicolas.ratier@femto-st.fr>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Case insensitive in type
Date: Wed, 2 Jul 2014 09:43:13 +0100	[thread overview]
Message-ID: <61DE677B8B2B47D8802464F092A13EC2@erratique.ch> (raw)
In-Reply-To: <53B3C402.8070001@femto-st.fr>

Le mercredi, 2 juillet 2014 à 09:34, Nicolas Ratier a écrit :
> I would like the string of the Term constructor not to be case sensitive,
> for example, all the following terms should be the same :

[...]  
> Is it possible ?

The only way to do this is to make the type private and always construct term values through a constructor which normalizes the strings.  

type term = private Term of string * term list
let term s args = Term ((String.lowercase s), args)  

Best,

Daniel



  reply	other threads:[~2014-07-02  8:44 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-02  8:34 Nicolas Ratier
2014-07-02  8:43 ` Daniel Bünzli [this message]
2014-07-02  9:30   ` Gabriel Kerneis
2014-07-02  9:43     ` Daniel Bünzli

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=61DE677B8B2B47D8802464F092A13EC2@erratique.ch \
    --to=daniel.buenzli@erratique.ch \
    --cc=caml-list@inria.fr \
    --cc=nicolas.ratier@femto-st.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;
as well as URLs for NNTP newsgroup(s).