* [Caml-list] Camlp4 and lightweight records
@ 2002-11-10 13:55 Nicolas Oury
0 siblings, 0 replies; only message in thread
From: Nicolas Oury @ 2002-11-10 13:55 UTC (permalink / raw)
To: caml-list
I don't know if it is the place for that, nor it will interest someone
but I've made up a small (80 lines) extension with camlp4 that allows
one to use lightweight records in Ocaml.
That are records that type haven't to be declared before use - like in
SML but without the typing retriction.
For example :
let test = {| a = 5; b = "hello"; c = true ; i = "world" |};;
is a valid statement.
Labels can be used any times and with different types.
One can
* retrieve the value of a field :
# ##c test
----> true
* change -- functionally -- the value of fields
let test 2 = test with {| c = false ; i = "earth" |}
* take a part of a record
let test3 = take b, i in test
* There are SML like tuples :
let tuple = {< 5 ; true ; 9 ; "hi" >}
is equivalent to a record with fields_name field_1,... field_4. Each
field can be accessed with :
@i.
For example :
@2 tuple returns true
@i is polymorhpic in the size of the tuple.
Internally records are implemented as :
let module A = class a
definition of the field
in new A.a, which allows a correct typing of the records and tuples.
If someone found this interesting, it can be downloaded at:
http://www.ens-lyon.fr/~noury/lw_records.tgz
(small download ~1Kb )
Best regards,
Nicolas Oury
-------------------
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-11-10 14:26 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-10 13:55 [Caml-list] Camlp4 and lightweight records Nicolas Oury
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox