Browse thread
[Caml-list] "changing" immutable record elements
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | David Fox <david.fox@l...> |
| Subject: | [Caml-list] "changing" immutable record elements |
Unless I am missing some core language feature, it seems to me that the
most awkward part of the language is constructing an expression that
represents a record with a single field modified:
let set_field3 rec value =
match rec with
{field1=field1; field2=field2; field3=field3; field4=field4;
field5=field5} ->
{field1=field1; field2=field2; field3=value; field4=field4;
field5=field5}
is there any prettier way of doing this?
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners