Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

{X with value} in ocaml

Tags:

ocaml

I saw the following function call in Yacfe example:

  Visitor_c.vk_program { Visitor_c.default_visitor_c with     Visitor_c.kexpr = (fun (k, bigf) exp ->        match Ast_c.unwrap_expr exp with       | Binary(e1, Logical (Eq), (((Constant(Int("0")) as _e2),_t),ii)) ->             (match Ast_c.get_onlytype_expr e1 with            | Some (qu, (Pointer _,_ii)) ->                 let idzero = Common.tuple_of_list1 ii in               idzero.cocci_tag :=                  Ast_cocci.MINUS (Ast_cocci.NoPos, [[null_addon]]), [];            | _ -> k exp           )       | _ -> k exp     );   } ast; 

I can see a function call with record initialized as the first argument, and ast as the second argument.

What I'm not familiar with is the syntax of the form:

{Visitor_c.default_visitor_c with Visitor_c.kexpr = some_value;} 

What does this means? I know a record can be initialized like {name=value;name=value;...}, but I'm not familiar with the {X with name=value}, can you tell me what it means?

I can't find in the Ocaml Manual nothing about legal record value initialization other than the following:

6.2.3 Records

Record values are labeled tuples of values. The record value written { field1 = v1; …; fieldn = vn } associates the value vi to the record field fieldi, for i = 1 … n. The current implementation supports records with up to 222 − 1 fields (4194303 fields).

I'll be glad if in your answer you'll include a reference to the relevant section in the OCaml manual.

like image 377
Elazar Leibovich Avatar asked May 31 '09 06:05

Elazar Leibovich


People also ask

What does X :: Xs mean in OCaml?

If you have two variables called x and xs' then x :: xs' creates a new list with x prepended onto the front of xs' .

What does -> mean in OCaml?

The way -> is defined, a function always takes one argument and returns only one element. A function with multiple parameters can be translated into a sequence of unary functions.

What does asterisk mean in OCaml?

The * symbol is used to separate elements of a tuple in data type definitions. The , symbol is used to separate type variables in a parametric type which has more than one variable. E.g., in Student of name * age * class we define a constructor with three arguments.

What is () in OCaml?

This is a way to indicate there is no value for an argument. It's necessary to do this in ML because all functions are unary. You can't have a function with zero arguments, so instead you pass an argument containing no information, which is () .


2 Answers

This is sometimes called a "record update" or "functional update" or something like that. It evaluates to a new record of the same type as X, and whose fields are initialized to the same as those in X, except the ones which are listed after the "with", which are initialized to those given values.

It is useful for immutable records, as a convenient way to take such a record and change one or two things on it (which in an imperative language you would typically mutate the fields), without having to list out all the fields that are not changed.

It is described in the OCaml manual section 6.7.3, scroll down to "Records", second paragraph.

For those who are familiar with Haskell, the OCaml syntax

{ expr with field1 = expr1 ; ... ;  fieldn = exprn } 

is the same as the Haskell syntax

expr { field1 = expr1 , ... ,  fieldn = exprn } 
like image 106
newacct Avatar answered Sep 17 '22 13:09

newacct


To correct the previous reply, the new record is not always of the same type as the old record. For example, you can have something like that:

type 'a t = {   id : int;   value : 'a; } let old_t = { id = 3; value = "foo" } let new_t = { old_t with value = 3 } 

As a result, old_t is of type string t, while new_t is of type int t.

like image 21
Fabrice Le Fessant Avatar answered Sep 20 '22 13:09

Fabrice Le Fessant