Search the web
Sign In
New User? Sign Up
ocaml_beginners · Ocaml Beginners
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7389 - 7418 of 11541   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7389
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...
Joel Reymont
jreymont
Online Now Send Email
Mar 1, 2007
11:27 am
7390
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...
LI Zheng
Zheng.Li@...
Send Email
Mar 2, 2007
5:30 pm
7391
... Does the current backend try and clever execution strategies (eg. speculatively executing transactions)? Do you plan to support something like MPI? Also, I...
Richard Jones
rwmjones
Offline Send Email
Mar 3, 2007
10:11 am
7392
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....
Zheng Li
li.zh_eng
Offline Send Email
Mar 3, 2007
2:48 pm
7393
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,...
Zheng Li
Zheng.Li@...
Send Email
Mar 3, 2007
10:46 pm
7394
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...
overbored
Offline Send Email
Mar 5, 2007
8:24 am
7395
... 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 ...
Richard Jones
rwmjones
Offline Send Email
Mar 5, 2007
12:43 pm
7396
... 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...
Jon Harrop
harropjon
Offline Send Email
Mar 5, 2007
1:21 pm
7397
... 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...
overbored
Offline Send Email
Mar 5, 2007
6:51 pm
7398
... obj ... instantiated ... - ... tool ... the ... tried ... my ... (basically ... to ... i ... paradigm ... static ... very ... tool ... provers, ... worried...
overbored
Offline Send Email
Mar 5, 2007
7:56 pm
7399
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...
Kai Kuehne
el.kaio
Offline Send Email
Mar 6, 2007
8:52 pm
7400
... Good idea. You can always put your questions and their eventual answers or people may answer directly on the wiki. Francois Colonna...
Francois Colonna
colonna_fran...
Offline Send Email
Mar 6, 2007
10:47 pm
7401
... 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...
Martin Jambon
BioMim
Offline Send Email
Mar 7, 2007
8:05 pm
7402
... I second Google Groups, a much simpler and convenient interface than Yahoo. -- http://wagerlabs.com/...
Joel Reymont
jreymont
Online Now Send Email
Mar 7, 2007
9:27 pm
7403
... 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...
Jon Harrop
harropjon
Offline Send Email
Mar 7, 2007
10:25 pm
7404
Ok. I think I will register ocamlwiki.org (or .net) for the wiki pages. Which wiki software do you prefer? Kai...
Kai Kuehne
el.kaio
Offline Send Email
Mar 8, 2007
8:25 am
7405
... the ... tried ... my ... (basically ... databases are very stateful, so it appears to me that an imperative approach is more fitting. fp is not (too)...
overbored
Offline Send Email
Mar 8, 2007
5:48 pm
7406
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?...
Sasha Rush
sash_312000
Offline Send Email
Mar 8, 2007
7:19 pm
7407
... 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...
Jon Harrop
harropjon
Offline Send Email
Mar 8, 2007
7:48 pm
7408
... I'm having trouble just compiling it. It requires claims it requires 3.06....
Sasha Rush
sash_312000
Offline Send Email
Mar 8, 2007
8:02 pm
7409
... 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: *...
Martin Jambon
BioMim
Offline Send Email
Mar 8, 2007
9:03 pm
7410
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...
christian konrad
konrad@...
Send Email
Mar 9, 2007
2:30 am
7411
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...
Martin Jambon
BioMim
Offline Send Email
Mar 9, 2007
8:05 pm
7412
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 ? ...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Mar 10, 2007
10:43 am
7413
Actually a much better guide is to look at the locatedb(5) man page. Rich. -- Richard Jones Red Hat...
Richard Jones
rwmjones
Offline Send Email
Mar 10, 2007
4:47 pm
7414
... 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...
Richard Jones
rwmjones
Offline Send Email
Mar 10, 2007
4:47 pm
7415
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 ...
Grant Olson
olsongt@...
Send Email
Mar 10, 2007
11:04 pm
7416
I have the following code (HashSet is from http://wwwteor.mi.infn.it/ ~pernici/ocaml/ocaml.html): class obj2 = object (self) val mutable parents =...
overbored
Offline Send Email
Mar 11, 2007
3:57 am
7417
... 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...
Zheng Li
li@...
Send Email
Mar 11, 2007
9:33 am
7418
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...
Fabrice Marchant
fabrice.marc...
Offline Send Email
Mar 11, 2007
6:11 pm
Messages 7389 - 7418 of 11541   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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