caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "Sasha Rush" <rush@fas.harvard.edu>
To: caml-list@inria.fr
Subject: Scanf question
Date: Fri, 16 Feb 2007 11:28:22 -0500	[thread overview]
Message-ID: <ed119c190702160828g1be34272q737144e6b666496f@mail.gmail.com> (raw)

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

Hi all,

I'm curious about the asymmetry between printf and scanf.

I like the modularity I can get by user defined printers, i.e.

module Foo =
struct
    type t = int
    let print ppf =  fprintf "%d"
end

printf "My %a" Foo.print some_foo

But how do I get the same abstraction with scanf?

let id a = a
module Foo =
struct
   type t = int
   let read buf = bscanf "%d" id
end

(*Seemed natural*)
let some_foo = bscanf "My %a" Foo.read id


Thanks,
/Sasha

[-- Attachment #2: Type: text/html, Size: 655 bytes --]

                 reply	other threads:[~2007-02-16 16:28 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=ed119c190702160828g1be34272q737144e6b666496f@mail.gmail.com \
    --to=rush@fas.harvard.edu \
    --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).