Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

ocaml_beginners · Ocaml Beginners

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 7389 - 7418 of 13897   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
7389 Joel Reymont
jreymont Send Email
Mar 1, 2007
11:27 am
Folks, I have a rule like this in my .mly file: ... My idea is to say that there can be zero or more sections before the end of file. My parser doesn't seem to...
7390 LI Zheng
Zheng.Li@... Send Email
Mar 2, 2007
5:30 pm
Hi there, I'd like to announce the availability of an user-space implementation of STM library for OCaml. The library is still in its alpha stage, and...
7391 Richard Jones
rwmjones Send Email
Mar 3, 2007
10:11 am
... Does the current backend try and clever execution strategies (eg. speculatively executing transactions)? Do you plan to support something like MPI? Also, I...
7392 Zheng Li
li.zh_eng Send Email
Mar 3, 2007
2:48 pm
Hi, ... Not yet, there is just one thread back-end at this moment. More accurately, there is no _clever_ strategies here but just a plain one: command line....
7393 Zheng Li
Zheng.Li@... Send Email
Mar 3, 2007
10:46 pm
Hi, there I'd like to announce the availability of a patch to enhance the OCaml toplevel with addition features. It's available, in the forms of source patch,...
7394 overbored Send Email Mar 5, 2007
8:24 am
how do i make a class obj containing a Set of obj? it's like the chicken and egg problem - if i first instantiate the module, obj is undefined, but if i first...
7395 Richard Jones
rwmjones Send Email
Mar 5, 2007
12:43 pm
... Do you need to use objects? A much more natural way to express this in functional languages is: type 'a thing = Thing of 'a | List of 'a thing list ...
7396 Jon Harrop
harropjon Send Email
Mar 5, 2007
1:21 pm
... You must use mutually recursive modules: # module rec A : sig type t = <get: ASet.t> val compare : t -> t -> int end = struct type t = <get: ASet.t> let...
7397 overbored Send Email Mar 5, 2007
6:51 pm
... is ... for the ... the problem ... sure. i'm trying to write an (initially simple) object database. the rest of this paragraph is some background on this...
7398 overbored Send Email Mar 5, 2007
7:56 pm
... obj ... instantiated ... - ... tool ... the ... tried ... my ... (basically ... to ... i ... paradigm ... static ... very ... tool ... provers, ... worried...
7399 Kai Kuehne
el.kaio Send Email
Mar 6, 2007
8:52 pm
I would register ocamlwiki.(com|org) and host it, but I'm just a ocaml-beginner so I can't really put any (usable) content in there. Greetings Kai...
7400 Francois Colonna
colonna_fran... Send Email
Mar 6, 2007
10:47 pm
... Good idea. You can always put your questions and their eventual answers or people may answer directly on the wiki. Francois Colonna...
7401 Martin Jambon
BioMim Send Email
Mar 7, 2007
8:05 pm
... For a long time I've been thinking that it would be nice to have forum for "OCaml software developers", i.e. something which is focused on the practical...
7402 Joel Reymont
jreymont Send Email
Mar 7, 2007
9:27 pm
... I second Google Groups, a much simpler and convenient interface than Yahoo. -- http://wagerlabs.com/...
7403 Jon Harrop
harropjon Send Email
Mar 7, 2007
10:25 pm
... Can you explain why parts of your solution must be imperative? ... You probably want to write picklers in OCaml too. ... That sounds like your proposed...
7404 Kai Kuehne
el.kaio Send Email
Mar 8, 2007
8:25 am
Ok. I think I will register ocamlwiki.org (or .net) for the wiki pages. Which wiki software do you prefer? Kai...
7405 overbored Send Email Mar 8, 2007
5:48 pm
... the ... tried ... my ... (basically ... databases are very stateful, so it appears to me that an imperative approach is more fitting. fp is not (too)...
7406 Sasha Rush
sash_312000 Send Email
Mar 8, 2007
7:19 pm
I'd really like to play around ocamldefun, but it seems to only work with ocaml 3.06. Has anyone had luck setting this up in more recent versions of ocaml?...
7407 Jon Harrop
harropjon Send Email
Mar 8, 2007
7:48 pm
... Isn't it just a preprocessor for OCaml code, so you can feed any OCaml code through it independent of the compiler? -- Dr Jon D Harrop, Flying Frog...
7408 Sasha Rush
sash_312000 Send Email
Mar 8, 2007
8:02 pm
... I'm having trouble just compiling it. It requires claims it requires 3.06....
7409 Martin Jambon
BioMim Send Email
Mar 8, 2007
9:03 pm
... I don't have any clear preference. It also depends how much time you can afford. http://www.wikimatrix.org/ is a good starting point. From my experience: *...
7410 christian konrad
konrad@... Send Email
Mar 9, 2007
2:30 am
Hi list, I was wondering about the layout of my first larger ocaml project. I will need to write different modules and even different programs that make use of...
7411 Martin Jambon
BioMim Send Email
Mar 9, 2007
8:05 pm
Hello, There's a new OCaml mailing-list/forum for OCaml software developers: http://groups.google.com/group/ocaml-developer This forum is centered on practical...
7412 Fabrice Marchant
fabrice.marc... Send Email
Mar 10, 2007
10:43 am
Hi, "updatedb"; utility stores file names in /var/cache/locate/locatedb on my Debian Linux. Please does any OCaml library provide easy access to these data ? ...
7413 Richard Jones
rwmjones Send Email
Mar 10, 2007
4:47 pm
Actually a much better guide is to look at the locatedb(5) man page. Rich. -- Richard Jones Red Hat...
7414 Richard Jones
rwmjones Send Email
Mar 10, 2007
4:47 pm
... It's unlikely. The best bet is to download the source code (in findutils) and try to reverse engineer the format from the source -- it uses a weird type...
7415 Grant Olson
olsongt@... Send Email
Mar 10, 2007
11:04 pm
If you're trying to do something simple that you could do in a shell, you can use one of the Unix process commands and "screen scrape" the results. -Grant ...
7416 overbored Send Email Mar 11, 2007
3:57 am
I have the following code (HashSet is from http://wwwteor.mi.infn.it/ ~pernici/ocaml/ocaml.html): class obj2 = object (self) val mutable parents =...
7417 Zheng Li
li@... Send Email
Mar 11, 2007
9:33 am
... It says quite clearly, your "o" object contains functional value, so the Marshal flag "Closures"; is required. You should write ... let o = new obj in let...
7418 Fabrice Marchant
fabrice.marc... Send Email
Mar 11, 2007
6:11 pm
Thanks a lot Rich and Grant ! ... I've apt-got the source and look at this code. It is short. locatedb man page explains how "front compression" of lists...
Messages 7389 - 7418 of 13897   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help