Tagged Questions
OCaml is an ML dialect developed by INRIA.
61
votes
11answers
4k 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 ...
40
votes
17answers
4k views
A Gentler Introduction to Functional Programming
I am trying to learn Haskell, and I really like it, but I can't wrap my head around most of it. Would Lisp, OCaml, etc. be a gentler introduction to functional programming?
37
votes
3answers
861 views
What are the primary theoretical difficulties with adding ML-style modules to Haskell?
It is well known that Haskell-style typeclasses and ML-style modules offer different mechanisms for specifying interfaces. They are (possibly) equivalent in power, but in practice each has their own ...
36
votes
10answers
9k views
F# and OCaml [closed]
I hear that F# is derived from OCaml. How true is this statement? That is to say, are the resources available for learning OCaml useful to someone who wants to learn F#? What are the major differences ...
35
votes
7answers
2k views
Why is writing a compiler in a functional language easier?
I've been thinking of this question very long, but really couldn't find the answer on Google as well a similar question on Stackoverflow. If there is a duplicate, I'm sorry for that.
A lot of people ...
26
votes
3answers
2k views
24
votes
8answers
9k views
Should I learn Haskell or F# if I already know OCaml? [closed]
I am wondering if I should continue to learn OCaml or switch to F# or Haskell.
Here are the criteria I am most interested in:
Longevity
Which language will last longer? I don't want to learn ...
23
votes
16answers
3k views
What to learn? Lisp or OCaml or…?
I already have a few languages under my belt (in a rough order of expertise): Python, C, C++, PHP, Javascript, Haskell, Java, MIPS, x86 assembler. But it's been almost 2 years since I learned a new ...
22
votes
9answers
5k views
Machine learning in OCaml or Haskell?
I'm hoping to use either Haskell or OCaml on a new project because R is too slow. I need to be able to use support vectory machines, ideally separating out each execution to run in parallel. I want ...
22
votes
7answers
2k views
Why are functions in Ocaml/F# not recursive by default?
Why is it that functions in F# and Ocaml (and possibly other languages) are not by default recursive?
In other words, why did the language designers decide it was a good idea to explicitly make you ...
21
votes
2answers
858 views
F# vs OCaml: Stack overflow
I recently found a presentation about F# for Python programmers, and after watching it, decided to implement a solution to the "ant puzzle" on my own.
There is an ant which can walk around on a ...
21
votes
5answers
962 views
Can good type systems distinguish between matrices in different bases?
My program (Hartree-Fock/iterative SCF) has two matrices F and F' which are really the same matrix expressed in two different bases. I just lost three hours of debugging time because I accidentally ...
21
votes
5answers
1k views
What is the benefit of purely functional data structure?
There are large number of texts on data structures, and libraries of data structures code. I understand that purely functional data structure is easier to reason about. However I have trouble to ...
21
votes
6answers
519 views
Saving my running toplevel for later
When working in the ocaml or ghci toplevels I often build up a significant "context" for want of a better word, values bound, functions, modules loaded, and so on. Is there a way to save all of that ...
20
votes
11answers
5k views
Learning OCaml (Fast) [closed]
Suppose I had to learn OCaml in a hurry. What would you suggest I read and/or do?
I would happily spend real $$$ (or £££, or €€€) on a book or two, but by the time our favoured online book store ...
19
votes
3answers
383 views
Algorithm for type checking ML-like pattern matching?
How do you determine whether a given pattern is "good", specifically whether it is exhaustive and non-overlapping, for ML-style programming languages?
Suppose you have patterns like:
match lst with
...
19
votes
3answers
320 views
What is the preferred way to structure and build OCaml projects?
It is unclear to newcomers to the ecosystem what is the canonically preferred way to structure and manage building small to medium sized OCaml projects. I understand the basics of ocamlc, ...
18
votes
8answers
1k views
Explaining pattern matching vs switch
I have been trying to explain the difference between switch statements and pattern matching(F#) to a couple of people but I haven't really been able to explain it well..most of the time they just look ...
16
votes
5answers
2k views
Whats really more performant? Haskell or OCaml
Okay folks, now it's getting serious... for me.
I spent the last 18 months getting the grip of functional programming, starting with learning OCaml and for some weeks now Haskell. Now I want to take ...
16
votes
2answers
1k views
What are the pros and cons of Batteries and Core?
In the OCaml world at present there appear to be a number of competing extensions to the standard library, Batteries and Jane Street Core being the major ones as far as I can determine (I understand ...
16
votes
3answers
536 views
Why is an int in OCaml only 31 bits?
Haven't seen this "feature" anywhere else. I know that the 32nd bit is used for garbage collection. But why is it that way only for ints and not for the other basic types?
16
votes
11answers
7k views
15
votes
6answers
1k views
Writing Emacs extensions in languages other than Lisp
I'd like to take an existing application (written in OCaml) and create an Emacs "interface" for it (like, for example, the Emacs GDB mode). I would prefer to do this without writing a ton of Lisp ...
14
votes
1answer
588 views
Hesitating between C/C++, OCaml, and F# for my compiler
I want to start working on a little compiler and to build it I am hesitating between several different languages.
My requirements are simple, I want to be able to emit LLVM-IR code cause I have a ...
14
votes
1answer
273 views
How practical is it to embed the core of a language with an effectful function space (like ML) into Haskell?
As Moggi proposed 20 years ago, the effectful function space -> of languages like ML can be decomposed into the standard total function space => plus a strong monad T to capture effects.
A ...
14
votes
6answers
2k views
Good projects to learn OCaml and F#
After learning the basic syntax, reading some non-trivial code is a fast way to learn a language. We can also learn how to design a library/software during reading others' code.
I have following ...
14
votes
4answers
2k views
When choosing a functional programming language for use with LLVM, what are the trade-offs?
Let's assume for the moment that C++ is not a functional programming language. If you want to write a compiler using LLVM for the back-end, and you want to use a functional programming language and ...
13
votes
4answers
676 views
Handling incremental Data Modeling Changes in Functional Programming
Most of the problems I have to solve in my job as a developer have to do with data modeling.
For example in a OOP Web Application world I often have to change the data properties that are in a object ...
13
votes
4answers
529 views
Is there an enhanced interpreter toploop for OCaml?
Python has IPython.. does OCaml have anything similar?
I'd very much like to have command history, although other features would be nice too. I've read that I could get command history by running it ...
13
votes
9answers
2k views
Ideas for Natural Language Processing project?
I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse ...
12
votes
7answers
809 views
Functional programming languages introspection
I'm sketching a design of something (machine learning of functions) that will preferably want a functional programming language, and also introspection, specifically the ability to examine the ...
12
votes
4answers
390 views
Mixing OCaml and C: is it worth the pain?
I am faced with the task of building a new component to be integrated into a large existing C codebase. The component is essentially a kind of compiler, and will be complicated enough that I would ...
12
votes
5answers
866 views
List of Functional code snippets for Procedural Programmers?
Sometimes I still get stuck trying to translate procedural code into functional code.
Is there a list of functional idioms/snippets that are mapped to procedural idioms/snippets?
Edit
Since there ...
11
votes
1answer
118 views
Ocaml internals: Exceptions
I'm curious to know how exceptions are dealt with in Ocaml runtime to make them so lightweight. Do they use setjmp/longjmp or do they return a special value in each function, and propagate it?
It ...
11
votes
3answers
375 views
Creating a doubly linked list from a list in OCaml
I am often told that using the Lazy module in OCaml, one can do everything you can do in a lazy language such as Haskell. To test this claim, I'm trying to write a function that converts a regular ...
11
votes
4answers
798 views
Topological sort in OCaml
I'm trying to write topological sorting in ocaml, but I'm a beginner (in OCaml & graphs algorithms) and I can't do this by myself.
It's easier for me to think about topological sorting in, for ...
11
votes
6answers
505 views
Learning .NET from F# without C#
I'm a Java/C++ developer that never spent time in learning C# and the relative .NET foundation.
Then I learned OCaml because I had to use it for my master thesis so I heard about F# and wondered: ...
11
votes
5answers
1k views
Stack overflow in OCaml and F# but not in Haskell
I've been comparing for fun different languages for speed in execution of the following program:
for i from 1 to 1000000 sum the product i*(sqrt i)
One of my implementations (not the only one) is ...
11
votes
4answers
956 views
Higher-order type constructors and functors in Ocaml
Can the following polymorphic functions
let id x = x;;
let compose f g x = f (g x);;
let rec fix f = f (fix f);; (*laziness aside*)
be written for types/type constructors or modules/functors? I ...
11
votes
3answers
1k views
OCaml for JVM. Is there any?
I took a look at some new languages for JVM. Two of them are gathering much interest these days: Clojure and Scala. But in my humble opinion, both of them are not ideal. (Let's keep it a speculation, ...
11
votes
4answers
3k views
Erlang vs OCaml (best niche to fit)
Hi I'd like to pick up one FP language (it's always a pain when you work in a position that does not require you learn much), and after doing some research, I felt Erlang and OCaml are the two that ...
11
votes
4answers
1k views
Does OCaml have general map()/reduce() functions?
In Python map() works on any data that follows the sequence protocol. It does The Right Thing^TM whether I feed it a string or a list or even a tuple.
Can't I have my cake in OCaml too? Do I really ...
10
votes
2answers
327 views
What is the state of OCaml's parallelization abilities?
I'm interested in using OCaml for a project, however I'm not sure about where its parallelization capabilities are anymore. Is there a message passing ability in OCaml? Is OCaml able to efficiently ...
10
votes
3answers
221 views
Type of addition (+) in F#
I just learned that OCAML have to have a . postfix for doing float arithmetic. An example would be 3. +. 4. which equals 7. (float). However, F# handles float and integer arithmetic in the same way, ...
10
votes
3answers
346 views
OCaml: Is there a function with type 'a -> 'a other than the identity function?
This isn't a homework question, by the way. It got brought up in class but my teacher couldn't think of any. Thanks.
10
votes
2answers
540 views
How stable and widespread is “OCaml Batteries Included” and is it recommended?
I'm just getting back into OCaml for a new small research project after many years of SML, Haskell and F#.
I quickly found myself missing some things when using the OCaml libraries, and I also missed ...
10
votes
8answers
2k views
OCaml resources?
I need to learn this language for my thesis so I was wondering which good resources are available like books or free tutorials?
Is there any "bible" reference book that I should consider?
Ok, I can ...
10
votes
2answers
1k views
How do I get a stack trace in OCaml?
The Objective Caml language will only produce stack traces if you ask for them just right - what are the requirements for both bytecode and native code?
9
votes
4answers
279 views
Actor-based distributed concurrency libraries for Ocaml and other languages
Question
Can anyone recommend a library for Ocaml that offers an actor-based concurrency model for distributed computing?
Note here the "actor-based" and "distributed" - I'd like the actor-based ...
9
votes
4answers
156 views
data structure for spacial data
I am looking for a good functional data structure to store spacial (point) data. The data structure should allow simple epsilon queries for points already present. Also I need to modify the data quite ...