OCaml is a strict strongly-typed functional programming language, focusing on expressivity, correctness and efficiency.
1
vote
2answers
40 views
How can I declare a module (actually a Set.Make) in mli file?
I have airport.mli and airport.ml.
In airport.ml, I have
module AirportSet = Set.Make(struct type t = airport let compare = compare end);;
This is no problem.
I then have a function
val ...
1
vote
1answer
29 views
Typing in ocaml methods
I was playing with method redefinition, and I found this silly example :
class a =
object
method get (x : a) = x
end
class b =
object
inherit a
method get (x : b) = x
end
I'm clearly ...
7
votes
5answers
669 views
What is the standard OCaml data structure with fastest iteration?
I'm looking for a container that provides fastest unordered iterations through the encapsulated elements. In other words, "add once, iterate many times".
Is there one among OCaml's standard modules ...
0
votes
2answers
68 views
print string buffer from file contents
I want to print the contents of a file. I tried to use a string buffer:
let ch = open_in "myfile.txt" in
let buf = Buffer.create 1024 in
(try Buffer.add_channel buf ch max_int with _ -> ());
...
3
votes
1answer
61 views
Difference between module and package Ocaml
I'm basically trying to follow this stackoverflow answer located in this post:
What is the best module for HttpRequest in OCaml
and I'm running in to problems. When I am trying to run a single file ...
2
votes
2answers
83 views
What happens underneath append function?
I got an implementation for append function in OCaml, but it seems confused to me
let rec append = function
| [] -> fun y -> y
| h :: t -> fun y -> h :: (append t y)
What is the purpose ...
1
vote
2answers
434 views
Is non-local type inference in Haskell or OCaml really useful? [closed]
First, let us assume that local type inference is the sort of type inference found in Scala and C#. Scala local type inference is explained here: http://www.scala-lang.org/node/127
Also, let us ...
1
vote
2answers
46 views
'opam install uri' failed
I'm trying to install the uri package for Opam but I keep running in to this error.
==== ERROR [while installing uri.1.3.8] ====
# opam-version 0.9.6 (latest-103-g955b7ca)
# os linux
...
1
vote
1answer
56 views
Add elements in 'a tree in Ocaml
So, here is my problem..
I need to write a function that will add elements in a tree and it is a binary tree, so it must be well organized. The problem is in how is my tree defined.
I have this tree:
...
1
vote
1answer
67 views
Is there a `flip` function in the OCaml standard library?
In Haskell, we have a flip function: flip f x y = f y x, which essentially takes a function and returns the same function except that the two arguments are swapped. I wonder if there is a counterpart ...
3
votes
2answers
72 views
Is there an infix function composition operator in OCaml?
Just a quick question. I'm wondering if there is a infix function composition operator in OCaml defined in the standard library (or in Jane Street's Core or in Batteries) like the (.) function in ...
5
votes
0answers
62 views
Calling OCaml-wrapped ZeroMQ code from signal handler
I've written some OCaml bindings for CZMQ based on the guide at http://www.linux-nantes.org/~fmonnier/ocaml/ocaml-wrapping-c.php, which seem to work pretty well. For example here's zstr_send:
...
1
vote
1answer
30 views
OCaml Debugger: Exception uncaught
I'm trying to use ocamldebug. My program makes a lot of things and then write in a file. It compile and works fine, but when i use the ocamldebug and reach the part that it will write the file, the ...
2
votes
2answers
67 views
How to include other source files using the #use directive in OCaml?
I'm a newbie with OCaml and I'd like to put some of the code into another file, say foo.ml, just as one would do in C++ or Python. But that part of code itself does not form a module.
I've included ...
5
votes
3answers
101 views
Pattern matching functions in OCaml
Can everyone explain to me this piece of code ?
let safe_division n = function
| 0 -> failwith "divide by 0"
| m -> n / m
When I excute safeDiv 3 0 , what is the m and n in this case ?
In ...
2
votes
1answer
75 views
huffman coding for a text file
This is only part of my huffman tree generated using ocaml. The tree is represented as (char*int list) list:
[(' ', [0]); ('e', [1; 0]); ('t', [1; 1; 0]); ('a', [1; 1; 1; 0]);
('o', [1; 1; 1; 1; ...
0
votes
1answer
42 views
wodi64: ocamlopt issues an error
I installed wodi64 on windows 7. When I try to compile a simple hello world program with:
ocamlopt -o hello hello.ml
I get an error:
File "hello.ml", line 1:
Error: Corrupted compilation unit ...
1
vote
0answers
170 views
F# much slower than Ocaml for handling complex keys like int*int*int in data structures
I have converted an Ocaml program into F#, and overall performance is the same as Ocaml.
However, in order to get to this point, I had try replace exceptions by Option values.
The program works a ...
1
vote
1answer
75 views
How to used Cons operator?
Basically the function will take one parameter as a character, number and check whether it is inside the List or not ?
let rec (member: a -> List a -> Bool) x =
| [] -> False
| Cons y ys ...
0
votes
3answers
54 views
Reversing string in ocaml
I have this function for reversing strings in ocaml however it says that I have my types wrong. I am unsure as to why or what I can do :(
Any tips on debugging would also be greatly appreciated!
...
0
votes
4answers
103 views
Is there a single working OCaml IDE?
I have downloaded multiple OCaml IDE's / plugins and NONE of them work. I have no clue if I have a directory problem or if something else is at fault. I can access the OCaml console through cygwin ...
1
vote
1answer
47 views
Using OCaml syntax extension in Camlp4 with ocamlbuild
I am having an issue with using the deriving-ocsigen syntax extension in my camlp4 parser. My parser is called pa_debug.ml
Here's the tags file:
<pa_debug.ml>: pp(camlp4orf.opt), ...
9
votes
2answers
783 views
OCaml performance of exceptions
I've often read that exceptions are somewhat slow and should be avoided if performance is an issue (for instance, in Java, F#, etc). Does that apply to common OCaml functions such as Hashtbl.find, ...
1
vote
2answers
110 views
What libraries should I use for better OCaml Threading?
I have asked a related question before Why OCaml's threading is considered as `not enough`?
No matter how "bad" ocaml's threading is, I notice some libraries say they can do real threading.
For ...
0
votes
1answer
24 views
Eclipse OCaml ODT plugin
I am trying to get the ODT plugin (OCaml plugin) to work in eclipse but no part of its functionality is currently working. I have downloaded the plugin and have set the correct path to my OCaml ...
7
votes
2answers
273 views
What is the best module for HttpRequest in OCaml
I wish to use OCaml to access the Yahoo Finance API. Essentially, it will be just a bunch of HTTP requests to get quotes from Yahoo Finance.
Which module I should use?
I wish to have async HTTP ...
-5
votes
0answers
112 views
The right step to begin: Scala vs OCaml [closed]
This question could seem stupid, 'couse i haven't so much experience in functional programming.
I was wondering which is the best language between OCaml and Scala.
I already done something in OCaml, ...
1
vote
1answer
23 views
How to use -thread compiler flag with ocamlbuild?
I am using Jane Street's async_core by adding package(async_core) in _tags.
When I use ocamlbuild -use-ocamlfind -I src test/test_airport.native, it gives me the following error:
camlfind ...
89
votes
11answers
6k views
In Functional Programming, what is a functor?
I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
-1
votes
1answer
42 views
What library should I use to load a http url and get the html string out of it in OCaml? [closed]
My purpose is fairly simple.
I have a url. It is a web page. I want to download it as a string. The string will be the html content, in UTF-8 encoding.
What library should I use?
1
vote
1answer
47 views
How to use ocamlbuild with OPAM in ocaml?
I wrote two libraries (Bson.ml and Mongo.ml) in ocaml.
I wish to enable it for opam.
In the instruction of opam, it says it needs make build and make install.
I am always using ocamlbuild and ...
0
votes
2answers
97 views
Ocaml Tree simple functions
I created a tree
type 'a tree = {
mutable cont: 'a;
mutable left: 'a bin_tree;
mutable right: 'a bin_tree
}
and 'a bin_tree =
Empty
| Node of 'a tree;;
and I'm ...
1
vote
2answers
73 views
OCaml: new_line equivalent before 3.11
I'm trying to compile Libra toolkit on a machine running Ubuntu Hardy with OCaml 3.10, I can't upgrade the OS nor update OCaml, and I don't know anything about OCaml. There is only one line that gives ...
2
votes
1answer
113 views
verbose error with ocamlyacc
In bison, it is sufficient to add
%verbose-error
to the file to make the parser errors more verbose. Is there any way to gain similar functionality with ocamlyacc?
Here is the answer for a ...
2
votes
2answers
53 views
Set function for 2-dimensional array in OCaml
I am writing basic functions for 2 dimensional array. There are two ways to write "set" function. The first one consists in making a copy of the matrix and then modifying it:
let copy_matrix (m: 'a ...
5
votes
2answers
100 views
How to properly debug OCaml code?
Can I know how an experienced OCaml developer debugs his code?
What I am doing is just using Printf.printf. It is too troublesome as I have to comment them all out when I need a clean output.
How ...
2
votes
1answer
46 views
How to generate doc for OCaml based on module signatures?
I have a.ml like this:
module type ASig =
sig
val do_something : unit -> int;;
end ;;
module A:ASig =
struct
let do_something () = 1;;
let do_secrectly () = 2;;
end;;
So ...
1
vote
2answers
120 views
How to use modules with js_of_ocaml?
I am currently working on a website project written in OCaml and compiled to javascript using js_of_ocaml. It works pretty well as long as I have only one source file using the command ocamlfind ...
1
vote
1answer
154 views
Is it possible to create a very permissive grammar using Menhir?
I'm trying to parse some bits and pieces of Verilog - I'm primarily interested in extracting module definitions and instantiations.
In verilog a module is defined like:
module foo ( ... ) endmodule;
...
2
votes
1answer
142 views
Specifying a dynamic priority and precedence for an operator in Menhir/Ocamlyacc
I'm trying to parse a language where the operators have a dynamic attributes (priority and precedence) using the Menhir parser (similar to Ocamlyacc). During the lexing phase, all the operators fill a ...
7
votes
3answers
929 views
OCaml + Menhir Compiling/Writing
I'm a complete newbie when it comes to OCaml. I've only recently started using the language (about 2 weeks ago), but unfortunately, I've been tasked with making a syntax analyzer (parser + lexer, ...
3
votes
1answer
82 views
Making ocamlbuild pass both .ml and .mli files to ocamldoc
I want to include source code in my generated docs. This works when I invoke ocamldoc on the command-line like this: ocamldoc -I _build -html -keep-code -colorize-code *.{ml,mli} -d .docdir. However, ...
2
votes
1answer
184 views
Why does ocamldoc fail on unbound modules?
Here is an example interface test.mli, commented with ocamldoc-style comments:
(** ocamldoc module comment *)
open MissingModule;;
(** ocamldoc function comment *)
val test : unit;;
If I run the ...
2
votes
2answers
83 views
Can ocamldoc reference type constructors?
I'm trying to refer to a type constructor in ocamldoc.
For example:
type x = Awesome | Boring
And later we want to refer to one of the constructors in some documentation:
(** {!Awesome} is a ...
10
votes
3answers
543 views
How can I implement a purely functional standard binary heap (ocaml or haskell)?
Are there any implementations of a purely functional standard binary heap? I know there are lots of interesting heaps eg: Binomial, leftist heap, they all have functional implementation, just wonder ...
0
votes
2answers
68 views
Syntax error in ocaml
Why does the following code has a syntax error? I did not find out why.
let rec revStr stringa k e =
if k = e then ""
else (string_of_char stringa.[e])^
(revStr stringa (e-1) k);;
string ...
0
votes
3answers
129 views
OCaml standard committee?
I am doing a presentation on OCaml, I want to put if there is a standard comittee or not. I searched the internet far and wide and I couldn't get an answer for that, so I am asking for help here.
0
votes
1answer
61 views
Understanding the semantics behind the code
I have an OCaml code, and I have a hard time to formalize the function mi_pol into Coq because I am not understand clearly what exactly this code working, for example at the
aux (vec_add add const ...
0
votes
1answer
48 views
Ocaml lexer / parser rules
I wrote a program in ocaml that given an infix expression like 1 + 2, outputs the prefix notation : + 1 2
My problem is I don't find a way to make a rules like : all value, operator and bracket ...
1
vote
3answers
57 views
Expression matching Ocaml
My question is simple: how do I translate this C code :
if (x == y + 1)
// some code
else if (x == y - 1)
// some code
else if (x == y + 2)
....
Basically I was thinking of using pattern ...