caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Yurii A. Rashkovskii" <yrashk@openeas.org>
To: caml-list@inria.fr
Subject: Re: [Caml-list] int32/int64 literals in next release?
Date: Thu, 14 Nov 2002 10:49:43 +0200	[thread overview]
Message-ID: <20021114084943.GB13242@rashko> (raw)
In-Reply-To: <20021113234425.C23757@speakeasy.org>

[-- Attachment #1: Type: text/plain, Size: 708 bytes --]

Hi Shawn!

On Wed, 13 Nov 2002, Shawn Wagner wrote:
> Problems I know about already:

[...]

> Help with any of the above is appreciated.

May be something like this will be easier?


open Pcaml;;

let create_int loc v = <:expr< (int_of_string $str:v$) >>;;
let create_int32 loc v = <:expr< (Int32.of_string $str:v$) >>;;
let create_int64 loc v = <:expr< (Int64.of_string $str:v$) >>;;
let create_nativeint loc v = <:expr< (Nativeint.of_string $str:v$) >>;;

EXTEND

 expr:
  [[
     i = INT; "l" -> create_int32 loc i
   | i = INT; "L" -> create_int64 loc i
   | i = INT; "n" -> create_nativeint loc i   
   | i = INT -> create_int loc i
  ]];

END
;

-- 
Regards,
Yurii.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

  reply	other threads:[~2002-11-14  8:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-11-13 22:03 Chris Hecker
2002-11-13 21:42 ` Pierre Weis
2002-11-14  7:44   ` Shawn Wagner
2002-11-14  8:49     ` Yurii A. Rashkovskii [this message]
2002-11-15  0:14       ` Shawn Wagner
2002-11-15  5:32         ` Daniel de Rauglaudre
2002-11-26  7:10     ` Shawn Wagner

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=20021114084943.GB13242@rashko \
    --to=yrashk@openeas.org \
    --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;
as well as URLs for NNTP newsgroup(s).