Tagged Questions

ML is a family of functional programming languages, including SML, OCaml, and F#.

learn more… | top users | synonyms

37
votes
3answers
862 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 ...
26
votes
3answers
2k views

What are the differences between SML and Ocaml?

What sets the two ML dialects apart?
17
votes
3answers
1k views

Inferred type appears to detect an infinite loop, but what's really happening?

In Andrew Koenig's An anecdote about ML type inference, the author uses merge sort as a learning exercise for ML and is pleased to find an "incorrect" type inference: Much to my surprise, the ...
12
votes
7answers
562 views

How Functional language are different from the language implementation point of view

There is the whole new paradigm of "functional programming", which needs a total change of thought patterns compared to procedural programming. It uses higher order functions, purity, monads, etc., ...
12
votes
5answers
709 views

What background is needed for reading “Purely Functional Data Structures”?

I have just finished reading Little Schemer.. Now I am planning on reading Purely Functional Data Structures.. but the notations in the book looks very complicated.. are there easier alternative to ...
9
votes
4answers
168 views

Better to use “and” or “in” when chaining “let” statements?

I realize this is probably a silly question, but... If I'm chaining a bunch of let statements which do not need to know each other's values, is it better to use and or in? For example, which of ...
9
votes
7answers
345 views

Resources for Learning about Non-C Compilers?

When it comes to learning about C compilers LCC seems like the compiler of choice for many. Also, there is another StackOverflow article here on learning compilers in general. However, I've ...
8
votes
1answer
663 views

How to understand segmented binomial heaps described in <Purely Functional Data Structures>

In chapter 6.3.1 of the thesis Purely Functional Data Structures, says: Then, whenever we create a new tree from a new element and a segment of trees of ranks 0... r-1, we simply compare the new ...
8
votes
3answers
956 views

Understanding the type error: “expected signature Int*Int->Int but got Int*Int->Int”

The comments on Steve Yegge's post about server-side Javascript started discussing the merits of type systems in languages and this comment describes: ... examples from H-M style systems where you ...
6
votes
2answers
678 views

GUI for Standard ML?

I started learning Standard ML recently out of curiosity. So what I know is that is has an efficient compiler (MLton) which allows us to freely use abstractions without worrying about performance. It ...
5
votes
3answers
353 views

Learning/using ML. Which system should i use?

I want to learn and use ML but there are many compilers out there. I need: speed low memory usage threading mutable arrays and record types continuations ready for production code easy ffi up to ...
5
votes
2answers
431 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: ...
4
votes
1answer
238 views

The Little ML'er - Good training for F#?

I want to get up to speed on F# and was wondering if the book "The Little ML'er" would be of help since F# is based on OCaml which is a derivative of ML. Or, Is ML too different from F# to be of any ...
4
votes
1answer
178 views

How to define trees with more than one type in ML programing language

Well, I am asked to do the next thing: To define a binary tree which can contain 2 different types: ('a,'b) abtree and these are the requirements: Any inner vertex (not a leaf) must be of the type ...
4
votes
2answers
254 views

Example of nested signatures in OCaml?

In OCaml, you can nest signatures: module type FOO = sig module type BAR (* … *) end I was just wondering if anyone had any examples of this in use, since I can’t think of any places where it ...
4
votes
3answers
189 views

Deriving type expression in ML

All, I want to derive the type expression for the function below in ML: fun f x y z = y (x z) Now I know typing the same would generate the type expression. But I wish to derive these values by ...
4
votes
4answers
561 views

Explain ML type inference to a C++ programmer

How does ML perform the type inference in the following function definition: let add a b = a + b Is it like C++ templates where no type-checking is performed until the point of template ...
3
votes
1answer
69 views

Changing identical types in OCAML

Suppose I have a function list_fun : int_list -> string list and in that function I use a StringSet that I define as module StringSet = Set.Make(String) ;;I try to have the function return ...
3
votes
3answers
475 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 ...
2
votes
2answers
144 views

Which of these is the better style for function definition in f#?

let rec ints = function n -> Link (n+1, ints) let rec ints2 n = Link (n+1 ,ints) Which of these is a better style and why?
2
votes
1answer
83 views

Simple SML code error

I have just started learning SML and still in the process of making sense of its error messages. when trying to input the function definition below val rec : real->real = fn 0.0 => 0.0 | ...
2
votes
0answers
102 views

Standard ML / CML wrong operator - operand error

I am trying to implement a concurrent list using CML extensions of Standard ML but i am running into errors that are probably to do with my being a newbie in Standard ML. I have implemented the clist ...
2
votes
1answer
60 views

Can I expand a typedef in SMLNJ?

So I was writing up some code in standard ML, and trying to compile it with smlnj. I got the following error: Error: operator and operand don't agree [tycon mismatch] operator domain: unit -> ...
2
votes
1answer
99 views

Seuqences in ML (finite & infinnite)

Okay, I've got the next definition of sequence: datatype 'a seq = Nil | Cons of 'a * (unit-> 'a seq); I need to implement the next function: filterq_n:('a -> bool) -> int -> 'a seq ...
2
votes
1answer
92 views

RPAREN EQALOP and unbound variable and constructor errors in SML/ML

Said I have got 2 CNF logical phrases a,b and my distrib function should return the CNF form of a|b (a OR b). Replacing rules that I've got are: 1) Replace p|(q&r) by (p|q)&(p|r) 2) Replace ...
2
votes
1answer
257 views

Standard ML Binary Tree

I am still having problems with this so I can going to ask for more help. We are given: datatype which = STRING of string | INT of int Part 1. We are told we need to created another datatype named ...
2
votes
2answers
415 views

Standard ML Binary Tree Help!

I'm studying ML in class and I've run into a homework problem I am stuck on. I've spent all day yesterday searching but made little progress and we did not talk about this in class, so I am hoping you ...
2
votes
1answer
139 views

Standard ML: Return different types

I need to return a different value based on the function passed into another function. So, given: fun inc x = x + 1; And: fun double [] = [] | double (h::t) = 2*h::double (t); You should be able to ...
2
votes
2answers
164 views

What exactly does this Standard ML code do?

I'm reading Chris Okasaki's purely functional data structures, and there's one example I am having trouble with. It is located here. In particular, I don't understand how the rotate and exec ...
2
votes
5answers
670 views

Getting started with Standard ML

I'm looking for some kind of "ML for beginners" guide - google has led me to some obscure mailing lists or way-over-my-head texts so far. The problem is, I have zero functional programming experience ...
2
votes
4answers
200 views

Which ML implementation for working throughthe book “ purely functional datastructures”?

I was using Moscow ML to work through the exercises in PFD till I hit chapter on Lazy Evaluation. Mosml implementation does not have any thing like $ notation described in the book. Mosml comes with ...
2
votes
3answers
295 views

Editor for programming ML on windows?

I know I can use Emacs but I haven't used it earlier... are there any other alternatives?? Thanks
2
votes
16answers
1k views

What languages implement features from functional programming?

Lisp developed a set of interesting language features quite early on in the academic world, but most of them never caught on in production environments. Some languages, like JavaScript, adapted basic ...
1
vote
0answers
53 views

Are there any “enterprise ready” functional programming languages? [migrated]

By "enterprise ready" I am referring to availability of tools: dependency management, build management, message servers, databases, application platforms and servers, and are secure and scale well? ...
1
vote
1answer
70 views

how to handle divide by zero error in ML

I am new to ML. I need to define a function taking an conditional expression as argument, the problem is if the expression is invalid like "10 div 0 = 0". How can I handle this? For example, the ...
1
vote
1answer
79 views

printing a list in SML

I want to print a list inside a help function, for debugging purpose. And for some reason it's not printing anything. Does anyone know what's wrong? Here is some of my code: local .... and ...
1
vote
2answers
59 views

sml syntax having a hard time looking up documentation

I am trying to "simulate" a pass by value result function with the following code but there seems to be a syntax error. I've been looking through sml tutorials but I'm having a hard time figuring out ...
1
vote
1answer
107 views

Problem writing mutually recursive function in F#

I am translating a function from Little Mler that operates on this data type type sexp<'T> = An_Atom of 'T | A_slist of slist<'T> and slist<'T> = Empty | ...
1
vote
3answers
108 views

How to compile with a custom module

I'm trying to compile a project with 2 .ml and one of them is a module follwing this format module Mymodule = struct ... end;; I also created a .mli for myModule module Mymodule = ...
1
vote
2answers
168 views

Is there a ml like language(standard ml/ocaml/f#/haskell/ect.) in which list elements are option types

It seems to me like [] (empty list) and None/Nothing are so similar. I was wondering if any of that family of languages had the basic list type where each element is an option and the tail guard is ...
1
vote
2answers
133 views

Implementing take with F# by translating ML's equivalent

I'd like to translate this ML code into F#. fun take ([], i) = [] | take (x::xs, i) = if i > 0 then x::take(xs, i-1) else []; I tried this one let rec take n ...
1
vote
1answer
76 views

Standard ML: Naming datatypes of function arguments possible?

I'm new to ML and with to have a function that receives a special pre-defined datatype, and able to reference to its entire argument datatype, rather its components. Here's a stupid example: ...
1
vote
1answer
134 views

Refactoring Browser

Ok, a while ago I read about a Re-factoring Browser for I think, Lisp (or maybe it was smalltalk). This was a tool to help with re-factoring. I was wondering if anyone knows of a free one for F#? ...
1
vote
2answers
91 views

a really basic SML issue I just can't seem to figure out (small code)

Just a basic Casaer Cipher. I've tested all of the sub functions, just encryptChar() does not particularly work. I get an infinite loop. It's supposed to be recursive. Here's the all code: fun ...
1
vote
1answer
83 views

Type Clash Because of Circularity in ML

i'm trying to right a simple function to sort a list using a selection sort, Im code is below: fun slctsrt [] = [] | slctsrt (x::xs) = slctsrt2 (xs, x, []); fun slctsrt2 ([], min, []) = min | ...
1
vote
1answer
80 views

Removing hash from ml output

I have written an ml function and in the output i am getting out = Mary ("a",[Zary #,Zary #]) where Mary and Zary are constructors. But as you can see there are some "#" in the output. if i do val ...
1
vote
1answer
59 views

Syntax for nested signatures?

In my ml program I am using nested structures to structure my code. I'm defining the signatures for these structures - but I can't really get to have the signatures nested. Example: structure ...
1
vote
2answers
135 views

buliding a lexical analyser using ml-lex

i need to create a new instance of a lexer tied to the standard input stream when i type in val lexer = makeLexer( fn n => inputLine( stdIn ) ); it shows an error . stdIn:1.5-11.13 Error: ...
1
vote
1answer
40 views

StandardML 97 definition

Actual Standard ML specification is The Definition of Standard ML (Revised) , which available on MITPress only in a print version. Is it availaible in electronic format (pdf, ps, i.e.)?
1
vote
0answers
446 views

Using Hadoop map/reduce for programming language design course project

I need to design an exercise for my students in programming language design, My idea is help them to learn ideas in lisp, ML and other functional languages by force them to implement a mapreduce ...

1 2