[
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: | Kurt Welgehausen <kwel@k...> |
| Subject: | Re: [Caml-list] Shallow copy of a record |
It's not clear whether you require a general polymorphic
copy function or you just need to make a copy of a
particular record. In the latter case, something like
let y = {x with a = x.a}
will do what you want (even though it's not very pretty).
Best regards