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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 5547 - 5576 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5547
Hi Martin, ... This is the issue really. I have a mutually recursive data structures and want to split them. ... Got this far but I need to define a data...
Hugo Ferreira
hugotwo3
Offline Send Email
Mar 1, 2006
9:14 am
5548
... Too bad for you :-/ ... I think it's just that the compiler doesn't look that far. ... A function is a value anyway. A value whose type can be written as ...
Martin Jambon
BioMim
Offline Send Email
Mar 1, 2006
7:55 pm
5549
Martin Thanks for the feedback. Besides your example there is another one like yours in the bug tracking system (from 2004, ...
Hugo Ferreira
hugotwo3
Offline Send Email
Mar 2, 2006
7:39 am
5550
I tried compiling 2 files called test1, and test2 test2 contained a variable which was accessed from test1 when I entered the code: open test2 it did not work,...
Gary Krug
garykpdx47408
Offline Send Email
Mar 2, 2006
7:31 pm
5551
Hi Gary, ... Thats the syntax. Its how it should work....
Hugo Ferreira
hugotwo3
Offline Send Email
Mar 2, 2006
7:41 pm
5552
... What happens is that OCaml take the module name associated with a file and forces the first character to upper case in the module name (keeping in line...
William D. Neumann
scoey13
Offline Send Email
Mar 2, 2006
7:55 pm
5553
... And/or should be taught as part of introductory tutorials. Doesn't just about *everyone* stumble on this issue at some point, usually fairly early in their...
Matt Gushee
mcgushee
Offline Send Email
Mar 3, 2006
4:53 pm
5554
... Yep. ... It's about six one way, half a dozen the other. Your way avoids having to allocate a needless string, however. I wish Ocaml recognized that the ...
Brian Hurt
bhurt42
Offline Send Email
Mar 3, 2006
5:25 pm
5555
Hi all, I have the Mingw build of Ocaml 3.09 and Cygwin and I'm trying to get lablgl to work. Ocamlopt.opt seems to work with labltk and in general. However,...
Jerry He
rebound1618
Offline Send Email
Mar 5, 2006
4:14 am
5556
Hi List, I have a program that uses arrays. It is slower when compiled with the "-unsafe" option, and I do not understand why. I am a beginner at this, so I...
Johan Grönqvist
johan.gronqvist@...
Send Email
Mar 5, 2006
4:25 pm
5557
Hi, Can anybody tell me is there any open source ML dialect Thanks in advance for any help, or hints of where to look yugandhar ... -- Keep Smiling Yugandhar...
yugandhar balaji kris...
balu.ugandhar@...
Send Email
Mar 5, 2006
5:09 pm
5558
... Um... OCaml is open source. William D. Neumann "I eat T-bone steaks, I lift barbell plates, I'm sweeter than a German chocolate cake. I'm the reflection of...
William Neumann
scoey13
Offline Send Email
Mar 5, 2006
5:19 pm
5559
... What is this "OCaml" you speak of? ;-) -- Dr Jon D Harrop, Flying Frog Consultancy Ltd. Objective CAML for Scientists ...
Jon Harrop
harropjon
Offline Send Email
Mar 5, 2006
5:38 pm
5560
... Maybe option -educational or -pedagogical or -good-style is active? ;-) Ciao, Oliver...
Oliver Bandel
oliver@...
Send Email
Mar 5, 2006
5:59 pm
5561
... there was a thread on this some time ago. The reason seems to be that modern processors are quite complicated beasts. You just cannot know how the cpu ...
Michael Wohlwend
scheischeischei
Offline Send Email
Mar 5, 2006
7:41 pm
5562
... Turning bounds checking off rarely improves performance significantly. I strongly recommend that you do not use the "-unsafe" option. I am seeing an...
Jon Harrop
harropjon
Offline Send Email
Mar 5, 2006
7:53 pm
5563
Hi, guys, I would like to know how to pronounce "OCaml", or just "Caml". Thanks, Maurício...
Maurício
briqueabraque
Offline Send Email
Mar 6, 2006
12:53 am
5564
... Just add an e to make it a camel and pronounce it with your local accent. Martin -- Martin Jambon, PhD http://martin.jambon.free.fr Visit...
Martin Jambon
BioMim
Offline Send Email
Mar 6, 2006
1:14 am
5565
... I say "oh camel". -- Dr Jon D Harrop, Flying Frog Consultancy Ltd. Objective CAML for Scientists http://www.ffconsultancy.com/products/ocaml_for_scientists...
Jon Harrop
harropjon
Offline Send Email
Mar 6, 2006
1:15 am
5566
Hello everybody! I usually get items from ocamlyacc and then work them out. However, I now wonder whether could I affect the semantic action of the parser at...
Stalkern 2
stalkern2
Offline Send Email
Mar 6, 2006
1:37 pm
5567
hi there, ok, i'm really starting to getting frustrated with ocaml's module system. i read through all documentation availbale on the official pages and the...
maximal_ger
Offline Send Email
Mar 6, 2006
7:32 pm
5568
... That's about right, yes. If you want to find out how to fix your functor, then you could start by looking at some examples - the functor map.{ml,mli} from...
Richard Jones
rwmjones
Offline Send Email
Mar 6, 2006
7:51 pm
5569
... Right. ... interface | type t = ... | module type T = ... implementation | type t = ... | module type T = ... ... In addition, in the...
Martin Jambon
BioMim
Offline Send Email
Mar 6, 2006
8:02 pm
5570
... Of course, this does NOT declare a module TYPE ! ... Type your code in the toplevel -- Caml will reply with the interface :) ChriS...
Christophe TROESTLER
Christophe.Troestler@...
Send Email
Mar 6, 2006
8:19 pm
5571
Hello, which types can be correctly compared, when using the "compare" function from the Pervasives module? It seems that simple tuples can be compared. I...
Oliver Bandel
oliver@...
Send Email
Mar 6, 2006
8:42 pm
5572
... Most things. It's probably easier to list the things which can't be compared: * functions/closures * various abstract types defined in C if they provide...
Richard Jones
rwmjones
Offline Send Email
Mar 6, 2006
9:02 pm
5573
... From the manual, section 19.2: "The ordering implemented by compare is compatible with the comparison predicates =, < and > defined above" plus a note...
William D. Neumann
scoey13
Offline Send Email
Mar 6, 2006
9:24 pm
5574
... In theory, anything apart from closures and values outside the heap. In practice, you don't want to apply "compare" to any data structures where different...
Jon Harrop
harropjon
Offline Send Email
Mar 6, 2006
9:27 pm
5575
... i did, and while i don't really have a clue how the examples in the documentation would bring me to an implementation like this, i imitated it: (* .ml *) ...
maximal_ger
Offline Send Email
Mar 6, 2006
9:33 pm
5576
Hi, Could you help me with types? Suppose I have: type a = {b:float;c:int};; type a2 = {b:float;c:int};; When I write {b=3.5;c=2};; ocaml understands I want...
Maurício
briqueabraque
Offline Send Email
Mar 7, 2006
2:45 pm
Messages 5547 - 5576 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