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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 862 - 891 of 9747   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
862
Hi, I'm having problems using the PXP library, but the question is general enough for anybody I guess. In particular, the problem is with a function (OK,...
Mike Tikiliainen <mt9...
mtikilia
Offline Send Email
Mar 2, 2003
2:44 pm
863
... And of course, you I immediately look into the ocaml manual too find where they speak about it ? It's describe into the section 4.2 : ...
Remi Vanicat
dl_ens
Offline Send Email
Mar 2, 2003
3:26 pm
864
Just a tiny update to announce: CocOCaml v0.6 has been released. Two small, but important features have been added to the initial release: * The ability to...
William D. Neumann
wneumann@...
Send Email
Mar 4, 2003
4:28 pm
865
I want to learn to write CGI programs and would appreciate some advice on where to start, which ocaml libraries to use and where I can find examples of...
Johann Spies
jspies@...
Send Email
Mar 5, 2003
10:06 am
866
... [...] ... Well, and now I understand, why the bytecodecompiler warns me, that, when using a string-manipulating function, the function should have type...
oliver@...
Send Email
Mar 6, 2003
1:55 am
867
... [...] ... I'm not sure you ave understood. When you do something as : foo bar xux; wo um da the result of the evaluation of foo bar xux is thrown. It is ...
Remi Vanicat
dl_ens
Offline Send Email
Mar 6, 2003
2:21 am
868
[...] ... BTW, lots of people use the syntax : let _ = foo bar xux in wo um da instead of ignore, but that's more dangerous, since "ignore" warn you from ...
Nicolas Cannasse
ncannasse
Offline Send Email
Mar 6, 2003
4:09 am
869
... Ooops? Why this? I thought, the result of the *last* term is thrown?! Well, hmhhh... ... I have looked into the OCaml-Book (O'Reilley) again today (my...
oliver@...
Send Email
Mar 6, 2003
4:49 am
870
... Yes, it's true. But you're evaluating a term which is not used, so if you want to discard the result you have to tell the compiler that it's really want...
Nicolas Cannasse
ncannasse
Offline Send Email
Mar 6, 2003
5:46 am
871
... Because of my bad english. I meant discarded, not thrown. Bye the way, I would say that the result of the last term is returned, not thrown. Sorry :( [...]...
Remi Vanicat
dl_ens
Offline Send Email
Mar 6, 2003
11:34 am
872
Hello, I can't see any reference to the "let _ =" construct in the OCaml reference manual. What is its exact meaning? I guess that it executes immediately...
Jérôme Marant
jmarant@...
Send Email
Mar 7, 2003
1:58 pm
873
... It's very easy : the grammar say that a let is : let PATERN = EXPR and _ is a particular pattern that match everything, without binding any variable. so ...
Remi Vanicat
dl_ens
Offline Send Email
Mar 7, 2003
2:13 pm
874
... OK, you confirm what I understood. Thanks. However, what is the reason for using it in something like: let a b = something in let _ = .... in let _ = .... ...
Jérôme Marant
jmarant@...
Send Email
Mar 7, 2003
2:32 pm
875
Hi, Yes, use this when you want to call a value-returning function, but without caring about the value returned. The function is executed, and its result is...
DUBOIS Fabrice FTRD/D...
fabrice.dubois@...
Send Email
Mar 7, 2003
2:34 pm
876
... There is no good reason. It must better to do let a b = something in .... ; .... Well. There might be some warning, but you should not discard them by ...
Remi Vanicat
dl_ens
Offline Send Email
Mar 7, 2003
2:40 pm
877
... [after installing the OCamlNet library] The most important function is the one to get the arguments : Cgi.parse_args () returns a list of (name, value). ...
Martin Jambon
m.jambon@...
Send Email
Mar 7, 2003
2:43 pm
878
... Thank you. -- Jérôme Marant <jerome@...> <jerome.marant@...> http://marant.org...
Jérôme Marant
jmarant@...
Send Email
Mar 7, 2003
3:18 pm
879
... Thank you. -- Jérôme Marant <jerome@...> <jerome.marant@...> http://marant.org...
Jérôme Marant
jmarant@...
Send Email
Mar 7, 2003
3:20 pm
880
Hello to everybody I've recompiled a copy of ocaml 3.0.6 with the -pthreads option, and then tried several times to recompile ocamlfind, but both findlib-0.7.2...
Stalkern 2
stalkern2
Offline Send Email
Mar 8, 2003
12:33 am
881
... Thanks Martin. It does help indeed! I would like to confirm my understanding of something (which is not strictly ocaml, but rather html): Am I correct in...
Johann Spies
jspies@...
Send Email
Mar 10, 2003
10:55 am
882
... OK, I don't know how did that work before but NOW it's right. When you use a library that is not ready for ocamlfind and needs a manual ocamlfind install,...
Stalkern 2
stalkern2
Offline Send Email
Mar 10, 2003
11:04 am
883
... You don't need to know how it works if you use the Ocamlnet library. (anyway I don't know) The name of the argument of type "file" will simply be...
Martin Jambon
m.jambon@...
Send Email
Mar 10, 2003
3:06 pm
884
Hello, I have a toy example that does not compile; I would like to interface a 1D Bigarray of integers with C code, using camlidl. ... void linear( int* m,...
francois bereux
francois.bereux@...
Send Email
Mar 11, 2003
3:32 pm
885
Sorry, there is a typo : read instead ... void linear( [in,ref] int* m, [in,out,length_is(*m),bigarray] int ia[] );...
francois bereux
francois.bereux@...
Send Email
Mar 11, 2003
3:48 pm
886
... Furthermore, one can get used to let ... in constructs because they force the evaluation order, making it exactly like you write. By the way, brackets also...
Stalkern 2
stalkern2
Offline Send Email
Mar 11, 2003
9:29 pm
887
[followups redirected to ocaml_beginners@yahoogroups.com] On Tuesday, Mar 11, 2003, at 11:47 US/Pacific, mgushee@... ... I'm a self-taught...
james woodyatt
dr_strychnine
Offline Send Email
Mar 13, 2003
1:04 am
888
Hi James, Thanks for taking the time to write this introduction to monads. I think it's very helpful. I was attracted to ocaml because it's was a well-designed...
Warren Harris
warrensomebody
Offline Send Email
Mar 13, 2003
6:36 pm
889
... This question wasn't addressed to me, but I'll answer it anyways. The benefits of functional programming all grow out of a common advantage: that it is...
Brian Hurt
brian.hurt@...
Send Email
Mar 13, 2003
7:51 pm
890
Hello, I have written code for reading in mbox-Mailfiles. While I had experimented and developed, all went well. Then I have changed names globally...
oliver@...
Send Email
Mar 13, 2003
11:35 pm
891
... ^^^^^^^^^ read_line has type: unit -> string (it doesn't need a channel, it reads from standard input). The function you need is "input_line". The compiler...
Manos Renieris
er@...
Send Email
Mar 13, 2003
11:46 pm
Messages 862 - 891 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