vote up 2 vote down star

is there an equivalent to (C++) istream::putback(char) for ocaml?

How could I add a character to the beginning of stdin?

flag

1 Answer

vote up 2 vote down

You cannot do it with an in_channel or with Stream.t. Here are some suggestions:

  1. If you are putting back a character you had read, you might want to use use peek to examine the stream instead of removing the element.

  2. You might have some luck writing a C-Interface to that function directly. I can see this being a really bad idea.

  3. Have you considered using an accumulator instead?

  4. Write a module around the current functions with a type that is a zipper or stack or some other structure that allows pushing characters back.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.