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...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 398 - 427 of 13887   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
398 Johann Spies
jspies@... Send Email
Jul 9, 2002
12:01 pm
... Thanks. I must get used to the ocaml way of documentation! Regards. Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie,...
399 Remi VANICAT
dl_ens Send Email
Jul 9, 2002
12:38 pm
... First, all function take a parameter. All. Second, the documentation say : val close_process_full : Pervasives.in_channel * Pervasives.out_channel *...
400 Johann Spies
jspies@... Send Email
Jul 17, 2002
1:28 pm
I want to use a C-library in Ocaml and trying to figure out how to do it, I used the following code from the Ocaml-book: The C-code (toets.c) ... #include...
401 Johann Spies
jspies@... Send Email
Jul 17, 2002
2:41 pm
I have made some progress, but get strange results: The following combination ... external caml_hello_world : int -> int -> int = "hello_world";; let som =...
402 Nicolas Cannasse
ncannasse Send Email
Jul 17, 2002
3:16 pm
... Integer are coded into OCaml values by putting the first bit to 1 Then if a value is odd then the remaining 31 bits are an integer, else it's a pointer on...
403 Dmitry Bely
dbely@... Send Email
Jul 20, 2002
6:25 am
... Sure. You are using OcamlMakefile the wrong way. Replace SOURCES=camlndspasswd.ml toets.o with SOURCES=camlndspasswd.ml toets.c Don't forget also that...
404 Steven Shaw
steshaw Send Email
Jul 21, 2002
3:23 am
I'm just learning ocaml via the orielly book. In doing the excercises for chapter 2 I found that I was running into afew runtime exceptions. 'Exception:...
405 Steven Shaw
steshaw Send Email
Jul 21, 2002
3:50 am
I'm after a function that can split a list into 3 items according to a predicate: a list of items before, found item, list of items after. Or a clue on how to...
406 Remi VANICAT
dl_ens Send Email
Jul 21, 2002
10:26 am
... yes. just set the environment variable OCAMLRUNPARAM to b as in : moi@debian:~/lang/ocaml$ export OCAMLRUNPARAM=b moi@debian:~/lang/ocaml$ ocamlc -g...
407 Steven Shaw
steshaw Send Email
Jul 21, 2002
4:39 pm
From: "Remi VANICAT" <vanicat+egroups@...> ... for ... with ... It's not quite line numbers but it works great. It will really come in handy. ...
408 Frederic van der Plan...
fplancke2001 Send Email
Jul 21, 2002
11:10 pm
... The library functions often fail with 'Failure "name_of_function"'; in this case, it's probably List.hd which receives an empty list. ... Don't forget to...
409 Remi VANICAT
dl_ens Send Email
Jul 22, 2002
1:33 am
... Yes, each call to List.hd/List.tl check to see if the list is not empty. And it's a fun call. -- Rémi Vanicat vanicat@... ...
410 Johann Spies
jspies@... Send Email
Jul 22, 2002
7:11 am
... Thanks. I will try out camlidl. Regards. Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "Then...
411 Yaron M. Minsky
yminsky Send Email
Jul 22, 2002
12:56 pm
Here's a simple implementation of split: let rec split list test = match list with [] -> raise Not_found ... else let (before,x,after) = split tl test in ...
412 Stephane Legrand
stephane_leg... Send Email
Jul 27, 2002
6:54 pm
Hello, The following program (see below), which indefinitely adds records in a DB file, fails every time with this error : Fatal error: exception...
413 magesh_kannan Send Email Aug 2, 2002
6:02 pm
Hi All, I need to find the memory size of any arbitrary OCaml object of any type: int, record, list etc. I am currently using 'Marshal.to_string&#39; to flatten...
414 Nicolas Cannasse
ncannasse Send Email
Aug 2, 2002
7:07 pm
... You should use the 'undocumented&#39; Obj module. (sample code, untested) let rec size_of x = let t = Obj.repr x in if Obj.is_int t then 1 (* 4 bytes *) else...
415 pjdurai Send Email Aug 6, 2002
8:17 pm
Hello everyone Is there a pcre module precompiled for win32 systems ? Or atleast instructions for compilation ? I am trying to do this in my win2000 box. And...
416 olilan Send Email Aug 7, 2002
7:34 pm
Hi. Can anyone help me get graphics working in OCaml? I'm using OCamlWin, and according to the manual all I have to do is run: #load "graphics.cmo";; but...
417 kenzo_ahikawa Send Email Aug 7, 2002
8:58 pm
... Try this: #load "graphics.cma";;...
418 olilan Send Email Aug 7, 2002
9:14 pm
Hmm, thanks, that file does exist... but when I try to load it I get: # #load "graphics.cma";; Cannot load required shared library: %1 is not a valid Win32 ...
419 Kontra, Gergely
kgergely@... Send Email
Aug 16, 2002
3:27 pm
Hi! Can somebody show me a very minimal usage of the Stack? I need just the syntax. thx Gergo +-[Kontra, Gergely @ Budapest University of Technology and...
420 Oliver Bandel
oliver@... Send Email
Aug 16, 2002
10:50 pm
Hello, I'm looking for a library, which is able to read different graphic-files-formats and load it into an array or into a format, useable by the...
421 Stalkern 2
stalkern2 Send Email
Aug 19, 2002
2:18 pm
Dear Oliver, in thes sunny days I could come back to Ocaml and reading the latest messages I've appreciated your posting very much. Actually, I've always asked...
422 Stalkern 2
stalkern2 Send Email
Aug 19, 2002
2:36 pm
... Sorry for this. Where I am it's quite sunny and most of all I was not thinking of where you can be. Please excuse me. Ernesto...
423 Oliver Bandel
oliver@... Send Email
Aug 23, 2002
1:45 pm
Hello Ocaml-Programmers, I'm in complete disorder now. I solved a programming task in the imperative way. Now I wanted to rewrite the program into FP-style. ...
424 Stalkern 2
stalkern2 Send Email
Aug 29, 2002
1:28 pm
... In my knowledge and practice functional programming is mainly useful for using functions as arguments. So, you can forget values while programming. ... ...
425 giangiammy Send Email Aug 29, 2002
3:40 pm
... Sorry for the intrusion in the discussion, but I'd like to write some considerations about continuations, as I see them quoted, and they are something I...
426 aoandrade Send Email Aug 30, 2002
2:12 pm
I am having problems when using the labltk library, in particular with the Text.tag_add function. When I run my program I receive an exception message:...
427 Stalkern 2
stalkern2 Send Email
Aug 30, 2002
3:06 pm
... _1 Do you have a link-ography for Continuation Passing Style? Could you please tell the list? _2 I found on...
Messages 398 - 427 of 13887   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