caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Toby Moth <tm1@cise.npl.co.uk>
To: ndavis@ti.com
Cc: caml-list@inria.fr
Subject: Re: Stream parsing - caml light vs. ocaml
Date: Mon, 1 Jun 1998 11:48:55 +0100	[thread overview]
Message-ID: <199806011048.LAA13463@squall.npl.co.uk> (raw)
In-Reply-To: <BMSMTP8966713870a0384552@dpcmail.itg.ti.com> (message from Norman Davis on Sun, 31 May 1998 22:22:26 -0700)


option 1:
let rec spaces = parser  
    [< '' '|'\t'|'\n'; rest >] -> spaces rest
  | [< >] -> ()

option 2:
let rec spaces = parser  
    [< '' '|'\t'|'\n'; _ = spaces >] -> ()
  | [< >] -> ()

which may be what you were thinking of





      reply	other threads:[~1998-06-01 11:30 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-06-01  5:22 Norman Davis
1998-06-01 10:48 ` Toby Moth [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=199806011048.LAA13463@squall.npl.co.uk \
    --to=tm1@cise.npl.co.uk \
    --cc=caml-list@inria.fr \
    --cc=ndavis@ti.com \
    /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).