Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
* [Caml-list] Strange syntax used in queue.ml -- The "<-" operator
@ 2011-01-20 16:53 Andrew
  2011-01-20 17:43 ` bluestorm
  0 siblings, 1 reply; 3+ messages in thread
From: Andrew @ 2011-01-20 16:53 UTC (permalink / raw)
  To: caml-list

Hello everyone,

While browsing the Caml Light library for programming examples, I stumbled
across the following code, taken from the Caml Light queue.ml file:

    type 'a queue_cell =
        Nil
      | Cons of 'a * 'a queue_cell ref
    ;;

    type 'a t =
      { mutable head: 'a queue_cell;
        mutable tail: 'a queue_cell }
    ;;

    let add x = function
        { head = h; tail = Nil as t } ->    (* if tail = Nil then head = Nil
*)
          let c = Cons(x, ref Nil) in
            h <- c; t <- c
      | { tail = Cons(_, ref newtail) as oldtail } ->
          let c = Cons(x, ref Nil) in
            newtail <- c; oldtail <- c
    ;;

This implementation of FIFO data structures puzzles me. I get the general
idea, to keep a pointer to the last entry in the structure, so that
appending at the end is possible. This makes perfect sense to me. However,
it's the syntax of how this is done that bugs me.

Consider the following:

      | { tail = Cons(_, ref newtail) as oldtail } ->
          let c = Cons(x, ref Nil) in
            newtail <- c; oldtail <- c

I have a problem with types here. By the type definition, "newtail" should
be of type "'a queue cell", since it's retrieved using "Cons(_, ref
newtail)" in the pattern matching: if I understand correctly, this would
mean that "newtail" binds the value pointed by the second member of the
"tail" record field (which is a reference).

So what does the "newtail <- c" means? If I try to replace this statement by
"(fun x -> x <- c) newtail", I get a "The identifier x is not mutable.",
whereas the code sounds perfectly similar to the original variant to me.

Would rewriting these few lines to read as follows mean the same?

      | { tail = Cons(_, newtail) as oldtail } ->
          let c = Cons(x, ref Nil) in
            newtail := c; oldtail <- c

Taking the question one step further, what does the following code actually
do?

    type t = Nil | Node of (t ref);;
    type box = {mutable field: t};;
 
    let poke = function
      | {field = Node(ref n)} -> n <- Nil
      | {field = Nil} -> ()
    ;;
          
    let test = {field = Node(ref (Node(ref Nil)))};;
    poke test;;
    test;;
 
Is it the same to write
    {field = Node(n)} -> n := Nil
and
    {field = Node(ref n)} -> n <- Nil
?

Even stranger: the following code returns "The value identifier a is
unbound."
    let a = Nil;;
    a <- Nil;; (* The value identifier a is unbound. *)


Could someone take the time to clarify the use of "<-" for me? The various
examples here are pretty puzzling to me...
Thanks! 


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-01-20 19:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-20 16:53 [Caml-list] Strange syntax used in queue.ml -- The "<-" operator Andrew
2011-01-20 17:43 ` bluestorm
2011-01-20 19:44   ` bluestorm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox