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.

Messages

  Messages Help
Advanced
Messages 1569 - 1598 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1569
I have a class I have created that takes three parameters class lc_classifier (condition:lc_condition) (_action:lc_action) (_params:lc_exp_params) = ...etc ...
dpthayer2004
Offline Send Email
Feb 4, 2004
4:16 am
1570
... This is because you define the type lc_condition at least two time. Ocaml don't give you warning when you do it (may be it should), but thus strange error...
Remi Vanicat
dl_ens
Offline Send Email
Feb 4, 2004
7:00 am
1571
Hello all, everyone knows that with CAML one can define a parametrized type (such as type 'a set= Set of (('a) list);; ) or classes parametrized by many types...
Marco Pedeira
roparzhhemon
Offline Send Email
Feb 4, 2004
1:24 pm
1572
... what about: type ('a,'b) special_pair=SP of 'a * 'b;; Michael...
Michael
scheischeischei
Offline Send Email
Feb 4, 2004
1:47 pm
1573
... type ('a,'b) special_pair=SP of 'a * 'b;; -- Rémi Vanicat...
Remi Vanicat
dl_ens
Offline Send Email
Feb 4, 2004
8:35 pm
1574
Hi everyone, I'm trying to translate some of my Scheme experience into Ocaml, and have run into a snag while building some recursive functions. Here's what I ...
Danny Yoo
dyoo@...
Send Email
Feb 5, 2004
8:34 am
1575
... [snip] ... You have run into the ocaml compiler's "can't use value before it is initialized" restriction. See the thread from last October when I ran into...
Alan Post
apost@...
Send Email
Feb 5, 2004
9:25 am
1576
Hello all, here is a problem I encountered with classes (it's not a matter of having a code that works, rather of finding a code that avoids repetitive ...
Marco Pedeira
roparzhhemon
Offline Send Email
Feb 6, 2004
9:37 am
1577
... Well, see if I understand correctly... it seems that you want to have some "partial application" of a class. An easy way to do so is to have: class fclass...
Stalkern 2
stalkern2
Offline Send Email
Feb 6, 2004
1:21 pm
1578
Hello all, everybody knows that one of the big advantages of CAML is that it can guess the types involved in the functions you define. However, in some cases ...
roparzhhemon
Offline Send Email
Feb 10, 2004
7:23 am
1579
... class declaration are something strange in ocaml because it is at the same time a type declaration, and several function definition (so to speak). Your...
Remi Vanicat
dl_ens
Offline Send Email
Feb 10, 2004
9:38 am
1580
Hi, I tried to make a demo program to dynamically load a module this morning, but gave up after two hours. Would somebody be so nice and send me a working...
Karel Miklav
karel@...
Send Email
Feb 11, 2004
6:42 am
1581
... Thanks Ernesto and sorry as it looks like I wasn't clear enough. I'm trying to load a bytecode-compiled module in runtime using Dynlink library. Example...
Karel Miklav
karel@...
Send Email
Feb 11, 2004
12:23 pm
1582
... You can just remove calls to Dynlink.add_interfaces. Toplevel expressions certainly ought to be evaluated at load time - an awful lot of Merjis/mod_caml...
Richard Jones
rwmjones
Offline Send Email
Feb 11, 2004
4:58 pm
1583
Hello all, does anyone know if the Caml_Light function "stream_check" and the nice pattern-matching(1) have an Objective_Caml equivalent ? (1) As in let...
roparzhhemon
Offline Send Email
Feb 13, 2004
7:11 am
1584
... you have to use camlp4 for this, but yes : let first_character stream= match stream with parser [< ' 'a|'b|'c >]->"the first character is a,b, or c" ... ...
Remi Vanicat
dl_ens
Offline Send Email
Feb 13, 2004
7:52 am
1585
OK, I've finally decided to address some of the holes in my education, and one one of those is a distinct weakness when it comes to lexing/parsing. So I...
William D. Neumann
scoey13
Offline Send Email
Feb 13, 2004
7:45 pm
1586
... Well, for starters there is a downloadable book called _Parsing Techniques: A Practical Guide_, by Dick Grune and Ceriel Jacobs. I haven't read the whole...
Matt Gushee
mcgushee
Offline Send Email
Feb 13, 2004
8:37 pm
1587
Everything I know about lexing and parsing (which isn't a lot, but enough to write a simple language) I learned from the GNU info files for flex and bison. ...
Richard Jones
rwmjones
Offline Send Email
Feb 14, 2004
10:29 am
1588
... Well, personally I don't have a C background, so I've started with the language theory and the Chomsky grammars. Here are some texts that helped me in...
Stalkern 2
stalkern2
Offline Send Email
Feb 14, 2004
3:46 pm
1589
Hello all, I use ocaml and have two source files, "Preliminaries" and "Heart_of_the_matter". The latter uses objects defined in the former, so that the first...
roparzhhemon
Offline Send Email
Feb 14, 2004
3:53 pm
1590
Aside from Ernesto's great recommendations, I'd like to add a good book about parsing, and it's available online: Parsing Techniques - A Practical Guide by...
Andrei Formiga
ktulu_fhtagn
Offline Send Email
Feb 14, 2004
3:58 pm
1591
... You should certainly investigate 'make' - THE standard tool for handling dependencies and builds. The best version of 'make' is GNU make...
Richard Jones
rwmjones
Offline Send Email
Feb 14, 2004
6:27 pm
1592
... You can try ocamake , avaible there : http://tech.motion-twin.com/ocamake Regards, Nicolas Cannasse...
Nicolas Cannasse
ncannasse
Offline Send Email
Feb 14, 2004
7:24 pm
1593
... Just to cover all the bases there is also omake which is available as part of mohave here http://mojave.caltech.edu/download.html Its not available...
Eric Merritt
cyberlync
Offline Send Email
Feb 15, 2004
4:39 am
1594
... Hi William, I just started toying around with ocamllex and ocamlyacc this afternoon, and wrote a few notes to myself as I was playing with it. You might...
Danny Yoo
dyoo@...
Send Email
Feb 15, 2004
9:45 am
1595
... I was just thinking if Eco had written anything on philosophy of language given his other academic work. "The Perfect Language" is the holy grail of the...
Eray Ozkural
examachine
Offline Send Email
Feb 17, 2004
2:41 am
1596
Hi everyone, I've been working on a small Scheme READ equivalent in OCaml, and need some help learning some of the conventions that OCaml programmers follow. ...
Danny Yoo
dyoo@...
Send Email
Feb 17, 2004
8:17 am
1597 issac_trotts
Offline Send Email
Feb 17, 2004
8:58 am
1598
My previous six or so attempts to send this message never appeared on the main OCaml list over the past few days, so now I am trying a workaround. Please...
issac_trotts
Offline Send Email
Feb 17, 2004
9:02 am
Messages 1569 - 1598 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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