20
votes
1answer
328 views

How are functors in Haskell and OCaml similar?

I've been toying around in a Haskell for the past year or so and I'm actually starting to 'get' it, up until Monads, Lenses, Type Families, ... the lot. I'm about to leave this comfort zone a ...
8
votes
1answer
216 views

MonadFix in strict language

I'm working on camlp4 extension for haskell-like do notation in Ocaml, and trying to figure out how GHC compiles recursive do-bindings (enabled with -XDoRec). I wonder if it possible for monadic ...
2
votes
4answers
251 views

Parameter names of a function using a functional language such as F#

I have read a book called Clean code. One of the strongest messages that I took from the book is that the code must be readable. I do not understand why functional languages such as F# do not include ...
18
votes
4answers
606 views

What's the closest thing to Haskell's typeclasses in OCaml?

What are some ways that I can accomplish what Haskell's typeclasses do in OCaml? Basically, I want to write a polymorphic function without writing too much code. The typical way to do polymorphism is ...
7
votes
3answers
244 views

What is the most efficient implementation of arrays with functional updates?

I need an array-like data structure with the fastest possible functional update. I've seen a few different implementation of flexible arrays that provide me with this property (Braun, Random Access ...
6
votes
1answer
230 views

CLI shell script code generation from compiled executable? [closed]

Question, topic of discussion I am very interested in generation of command line shell scripting source code from source code written in a more robustness-promoting, well-performant and ...
4
votes
2answers
297 views

Using dynamic programming in Haskell? [Warning: ProjectEuler 31 solution inside]

In solving projecteuler.net's problem #31 [SPOILERS AHEAD] (counting the number of ways to make 2£ with the British coins), I wanted to use dynamic programming. I started with OCaml, and wrote the ...
52
votes
9answers
3k views

In pure functional languages, is there an algorithm to get the inverse function?

In pure functional languages like Haskell, is there an algorithm to get the inverse of a function, (edit) when it is bijective? And is there a specific way to program your function so it is?
5
votes
2answers
279 views

Simple Generators

This code comes from a paper called "Lazy v. Yield". Its about a way to decouple producers and consumer of streams of data. I understand the Haskell portion of the code but the O'Caml/F# eludes me. I ...
2
votes
2answers
302 views

FIx data type in OCaml

How can the following data type from Haskell be expressed in OCaml or SML? newtype Fix f = In (f (Fix f))
1
vote
3answers
250 views

What functional language approach most readily transfers to Boost Phoenix? [closed]

I am looking to learn functional programming with an am to integrate Boost.phoenix into my project. What language is most similar so that I can find books that will illustrate functional programming ...
7
votes
2answers
277 views

How to navigate up inside a HUET Zipper

I'm reading Huet Zipper, I cannot understand the go_up method: let go_up (Loc(t,p)) = match p with Top -> failwith "up of top" | Node(left,up,right) -> Loc(Section((rev left) @ ...
2
votes
0answers
496 views

performance of haskell vs ocaml for parsing text(fix protocol) [closed]

Hi are their any studies or benchmarks comparing the performance of haskell and ocaml for parsing the fix protocol , or just text it self? I decided to do some simple test's of my own. Although I ...
4
votes
2answers
413 views

Need help rewriting a Haskell program that groups words by anagrams in OCaml (or any ML)?

I wrote a Haskell function that groups words by anagrams. I'm trying to learn OCaml, but I'm a little confused as to how use pattern matching in OCaml. Could someone help translate this to OCaml for ...
11
votes
2answers
5k views

Haskell, Scala, Clojure, what to choose for high performance pattern matching and concurrency [closed]

I have started work on FP recently after reading a lot of blogs and posts about advantages of FP for concurrent execution and performance. My need for FP has been largely influenced by the application ...
3
votes
1answer
380 views

Does runtime generally use an imperative-like interpretation of functional language code

I have a general question about interpreters of functional languages: Are there actually any advantages to using a functional language versus an imperative language at runtime (or that make there way ...
8
votes
2answers
447 views

efficient functional data structure for finite bijections

I'm looking for a functional data structure that represents finite bijections between two types, that is space-efficient and time-efficient. For instance, I'd be happy if, considering a bijection f ...
16
votes
3answers
654 views

What are type quantifiers?

Many statically typed languages have parametric polymorphism. For example in C# one can define: T Foo<T>(T x){ return x; } In a call site you can do: int y = Foo<int>(3); These types ...
9
votes
6answers
406 views

Is there a name for a function that takes a piece of data and a list of functions and applies each function to the result of the last one?

Clojure has a macro, ->, which takes a piece of data and a bunch of functions, applies the data to the first function, and then applies the result of that to the next one, the result of that to the ...
18
votes
7answers
1k views

How do you compute the difference between successive elements of a list of unknown size, functionally?

In a programming language that is purely functional (like Haskell) or where you are only using it in a functional way (eg clojure); suppose you have a list/seq/enumerable (of unknown size) of integers ...
111
votes
5answers
4k views

Abusing the algebra of algebraic data types - why does this work?

The 'algebraic' expression for algebraic data types looks very suggestive to someone with a background in mathematics. Let me try to explain what I mean. Having defined the basic types Product • ...
-1
votes
1answer
267 views

Implement heapify operation in functional style

Just wonder is there a way to implement heapify operation in a functional style ? Suppose the data type is : type 'a heap = Empty | Node of 'a * 'a heap * 'a heap
10
votes
3answers
545 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 ...
1
vote
2answers
436 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 ...
5
votes
4answers
478 views

declaration order in let-bindings, Haskell vs OCaml

In Haskell, declaration order in let/where constructs does not matter, for example: f x = let g1 x y = if x>y then show x else g2 y x g2 p q = g1 q p in ... where g2 used in g1 ...
21
votes
3answers
730 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 ...
8
votes
2answers
674 views

Dependent types for structured data validation

First of all, I don’t really know what’s wrong with dependent types and why we don’t see them implemented in existing languages for practical programming, instead of inventing all kind of tricks ...
2
votes
2answers
261 views

Does OCaml have syntax like Haskell's ++?

I know OCaml has List.append, but does it have an operator like Haskell's ++?
4
votes
4answers
296 views

Getting constant length retrieve time constant with immutable lists in a functional programming context

I am currently facing the problem of having to make my calculations based on the length of a given list. Having to iterate over all the elements of the list to know its size is a big performance ...
5
votes
2answers
210 views

A question concerning list accesses from a noobie functional programmer

This might be a silly and obvious question, but why are list access algorithm examples implemented in linear time? I understand that most applications involve traversing lists rather than accessing ...
23
votes
5answers
1k 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 ...
46
votes
3answers
1k 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 ...
4
votes
4answers
492 views

Computing the norm of a vector expression ||aW+bX+cY||

I am a PhD student. In the introduction of my thesis, I am insterested by the compromise between expressivity and performances of Linear Algebra tools. As a simple example, I use the computation of ...
4
votes
3answers
1k views

Differences between data/type constructors and functions?

Could anyone explain to me what are the differences between data/type constructors and functions? Haskell mix them and give us a universal interface (all looks like functions, in particular, we can ...
4
votes
4answers
1k views

Cross-Platform Functional Language for Objective-C

EDIT: After spending several hours researching this, I don't think I'm going to find anything that will actually end up saving me time compared to the amount of time and effort of finding suitable ...
10
votes
4answers
645 views

Will Haskell be a good choice for my task?

I'm starting a new project and don't know which language to use. My 'must have' requirements are: Be able to run on Windows/LinuxMacOs natively (native executable) – user should be able to just run ...
6
votes
2answers
610 views

Is ML/OCaml more or less “static”/“expressive” than Haskell [closed]

I know both of these language belong to the hipster crowd, and they're both very cool due to the expressiveness of functional programming in general, but I'm interested in a language that allows me: ...
8
votes
3answers
649 views

CPS in curried languages

How does CPS in curried languages like lambda calculus or Ocaml even make sense? Technically, all function have one argument. So say we have a CPS version of addition in one such language: cps-add k ...
3
votes
3answers
351 views

Haskell Equivalent of OCaml's Format library

Does Haskell have a library that does the same thing that OCaml's (Format library)? Or, what is the easiest way to pretty-print an abstract syntax tree in Haskell? Thanks.
8
votes
3answers
395 views

making standalone toplevels with OCaml and Haskell

In Common Lisp, programs are often produced as binaries with a translator bundled inside. StumpWM is a good example. How would one do the same with Haskell and OCaml? It is not necessary to provide ...
27
votes
5answers
2k 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 ...
30
votes
5answers
8k views

Whats really more performant? Haskell or OCaml [closed]

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 ...
22
votes
6answers
624 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 ...
15
votes
7answers
1k 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 ...
7
votes
1answer
945 views

Ocaml: how to pattern match on an arbitrary number of arguments?

is there an OCaml equivalent to Haskell's pattern matching on an arbitrary number of arguments? For example, can I have something resembling: merge [] lst = lst merge lst [] = lst merge l1 @ (n : ns) ...
15
votes
1answer
328 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 ...
8
votes
5answers
1k views

Haskell or Ocaml with OpenGL and SDL precompiled distribution for Windows

I want to learn Ocaml or Haskell and I want to do it by writing a simple game. Apparently, there's one small problem: nobody cares about Windows and I want to do it on Windows, natively. Haskell has ...
51
votes
7answers
3k 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 ...
15
votes
4answers
1k 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 ...
6
votes
5answers
1k views

Creating GUI desktop applications that call into either OCaml or Haskell — Is it a fool's errand?

In both Haskell and OCaml, it's possible to call into the language from C programs. How feasible would it be to create Native applications for either Windows, Mac, or Linux which made extensive use ...

1 2