[
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: | 2008-07-15 (04:09) |
From: | Jake Donham <jake@d...> |
Subject: | Re: [Caml-list] Q: Profiling ocaml using gprof |
On Mon, Jul 14, 2008 at 6:52 PM, Raj Bandyopadhyay <rajb@rice.edu> wrote: > 'camlPervasives__$5e_136'. It's the string concatenation function (ASCII 5E is ^). It allocates a new string and blits the two argument strings into it, so you can probably do much better with explicit use of the Buffer module. Jake