Tagged Questions

Standard ML is a high-level functional language with type inference.

learn more… | top users | synonyms (1)

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?
25
votes
6answers
6k views

Haskell or Standard ML for beginners?

I'm going to be teaching a lower-division course in discrete structures. I have selected the text book Discrete Structures, Logic, and Computability in part because it contains examples and concepts ...
21
votes
5answers
963 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 ...
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 ...
9
votes
3answers
743 views

Is there a Haskell/ML-like compiler to C?

People have written games for the iPhone in Scheme. Because (some) Scheme-compilers compile down to C, it was easy to mix with Objective-C and integrate with XCode. I am aware of patches for Haskell ...
9
votes
2answers
466 views

What are the limits of type inference?

What are the limits of type inference? Which type systems have no general inference algorithm?
8
votes
1answer
83 views

How to convert negative integers to strings in SML with minus sign instead of tilde?

The standard SML library function Int.toString prefixes negative numbers with ~ instead of -. Is there a library function to use - instead, short of writing fun i2s i = if i < 0 then "-" ^ ...
6
votes
1answer
107 views

Lazy datatypes in Objective C

In SML, the following is possible for modelling lazy programming, // Have a datatype to wrap a computation datatype 'a susp = Susp of (unit -> 'a) // A function to hold the computation fun delay(f ...
6
votes
3answers
405 views

Preferred book for ML [closed]

Which book would make the best starter's book for ML (excluding OCaml)?
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
2answers
111 views

Evaluate buffer in ghci or hugs via Emacs

Using sml-mode in Emacs I have been able to send my buffer contents directly to an inferior SML process using C-c C-b. Now I want to do the same thing only with Haskell. Haskell-mode does not seem to ...
5
votes
2answers
395 views

What to call a function that splits lists?

I want to write a function that splits lists into sublists according to what items satisfy a given property p. My question is what to call the function. I'll give examples in Haskell, but the same ...
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
433 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: ...
5
votes
1answer
152 views

SML list equality oddness

I have this bit of code: fun foldr2(f, x::xs) = if xs = [] then x else f(x, foldr2(f, xs)) With the type signature (''a * ''a -> ''a) * ''a list -> ''a Looks pretty ...
5
votes
2answers
201 views

Weight-Biased Leftist Heaps: advantages of top-down version of merge?

I am self-studying Okasaki's Purely Functional Data Structures, now on exercise 3.4, which asks to reason about and implement a weight-biased leftist heap. This is my basic implementation: (* 3.4 (b) ...
5
votes
5answers
1k views

What is a good book or tutorial on Standard ML?

What is a good book or tutorial on Standard ML?
4
votes
1answer
122 views

GUI in Java, Backend in SML?

I'm a big fan of functional programming languages (namely Standard ML and its dialects), mainly because of their expressiveness which allows for very consise, clean code. I can solve many problems ...
4
votes
2answers
150 views

Partial Evaluation and Currying

I have begun to understand a few examples related to currying but I am still not comfortable with the concept of currying as I would like to be. I know that currying can be used to do partial ...
4
votes
1answer
104 views

Output is truncated with #-signs in the REPL

I wrote a function which works as expected but i don't understand why the output is like that. Function: datatype prop = Atom of string | Not of prop | And of prop*prop | Or of prop*prop; (* XOR ...
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
0answers
274 views

What are the limits of using sockets for Inter-Process Communication?

I am creating a Firefox extension that allows using Standard ML (SML) as a client-side programming language in Firefox. The way it works is the following: The extension launches a PolyML process ...
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
2answers
63 views

Including two signatures, both with a 'type t' [Standard ML]

A contrived example: signature A = sig type t val x: t end signature B = sig type t val y: t end signature C = sig include A B end Obviously, this will cause complaints that type t occurs ...
4
votes
1answer
1k views

Line Comments in Standard ML

I'm learning ML, with the SML/NJ dialect. What I'm trying to figure out is if there is a line comment operator. I found the block comment operator, (* ... *), but I really miss line comments. ...
4
votes
4answers
548 views

Using ML in “Real-World” Applications

I really liked learning ML at college. I find functional programming often a refreshingly elegant way to write certain algorithms. I have heard of F# and played around with that a bit. Still, I've ...
4
votes
2answers
363 views

How can I print polymorphic values in Standard ML?

Is there a way to print polymorphic values in Standard ML (SML/NJ specifically)? I have a polymorphic function that is not doing what I want and due to the abysmal state that is debugging in SML (see ...
3
votes
1answer
57 views

SML Function on record list

I'm trying to declare a function that takes a list of records inside a tuple as an argument but the syntax is not as intuitive as I would have liked. Here's what I'm trying to do: type Player = ...
3
votes
2answers
62 views

WHILE loop for the LIST

I need to write a very simple function in SML. It should check if the value 'elem' is greater than any value of the field 'f1' in the list 'L'. The list 'L' contains 3 fields - 'f1','f2','f3'. The ...
3
votes
1answer
57 views

How to disable SMLNJ warnings?

I'm trying to write command line scripts, but SML's warnings obfuscate the interface. The docs say to use: Compiler.Control.printWarnings := false; But SMLNJ has since renamed these to: ...
3
votes
1answer
87 views

SML: What's the difference between using abstype and using a signature to hide the implementation of a structure?

I've done a little work in SML in the past, but I'm now starting to get to the more interesting parts. Using the abstype...with...end construct, I can make things but keep their implementation ...
3
votes
1answer
85 views

Recursive Datatypes and types in Objective C

Related: Lazy datatypes in Objective C From the related question I was able to figure out how to use block objects to mimic suspended computation, but I am still trying to grasp the concept. ...
3
votes
1answer
135 views

Garbage collection in SML, Java, C, Pascal

Why is garbage collection rarely spoken about in languages such as Pascal and C, whereas it is very important in SML and Java?
3
votes
1answer
360 views

SML-NJ, how to compile standalone executable

I start to learn Standard ML, and now I try to use Standard ML of New Jersey compiler. Now I can use interactive loop, but how I can compile source file to standalone executable? In C, for example, ...
3
votes
1answer
115 views

SML [circularity] error

I'd like to write one function that extracts only the odd numbers from a list. Something like: fun odd(nil) = nil | odd(a::nil) = a | odd(a::(b::c)) = a::odd(c); But it causes this error: ...
3
votes
1answer
89 views

polymorphic lists in ML

I have this snippet of the code in ML: local fun unfolder( [] , n ) = [] | unfolder( l::ls, n ) = (n, l) :: unfolder( ls, n ) in fun flat list = unfolder(list, 1) end; it gives me an ...
3
votes
1answer
114 views

Removing and adding nodes to a tree

I have an assignment, and I can't figure out what to do about it. I have a tree of people with their name, birth and death year. Think genealogy here. I have a bunch of datatypes to take care of ages, ...
3
votes
2answers
246 views

Combine function in SML

Hey, im very new to SML and programming alltogether, i want to write a function that combine within lists, such that [x1,x2,x3,x4,...] = [(x1,x2),(x3,x4),...] Any hints or help for me to go in the ...
3
votes
3answers
607 views

Fast Standard ML compiler or bytecode interpreter, with read-eval-print loop, for Linux?

For use with a class I'll be teaching, I'm looking for a fast compiler or bytecode interpreter for Standard ML. I'm looking for fast compile times; any reasonable run time will do. Bonus if the ...
3
votes
7answers
366 views

Experiences teaching or learning map/reduce/etc before recursion?

As far as I can see, the usual (and best in my opinion) order for teaching iterting constructs in functional programming with Scheme is to first teach recursion and maybe later get into things like ...
3
votes
2answers
432 views

SML/NJ: getting user input

how do i prompt for user input in a running function?
3
votes
1answer
303 views

anonymous function in SML

I have this below function and it works (fn x => x * 2) 2; but for this below one, it is not working (fn x y => x + y ) 2 3; can anyone tell me why? or help give me some hint to get it to ...
3
votes
2answers
338 views

Conversion from imperative to functional programming [Python to Standard ML]

I have a function specification that states it that should evaluate a polynomial function of one variable. The coefficient of the function is given as a list. It also accepts the value of the ...
3
votes
1answer
522 views

Standard ML: how to compile a ML program using mosmlc?

I would like to compile my ML program into a executable binary using mosmlc. However, I could not find much information on how to do it. The code that I'd like to compile is here ...
3
votes
6answers
369 views

Functional: construct a list of integers 1..n

This is not homework. I'm learning Standard ML on my own. I know a bit of Scheme, too, so this question ought to be answerable in either language. My self-imposed assignment is to write a function ...
3
votes
2answers
943 views

How to coerce a type in SML (like casting)

I'm creating a structure of Rationals (int * int) and one of my functions is: fun diff ((n, d), (n', d')) = let val (top, bot) = sum ((n, d), (~n', d')) in ...
2
votes
2answers
88 views

SML: function with multiple outputs

I´m a newbie in SML and I´d like to update my function so that it has two outputs: a list AND 1 or 0. The function was proposed here: SML: Remove the entry from the List. It returns an updated list ...
2
votes
2answers
41 views

find whether a string is substring of other string in SML NJ

In SML NJ, I want to find whether a string is substring of another string and find its index. Can any one help me with this?
2
votes
1answer
64 views

Logic simplification in sml

I'm creating logic simplification program in sml. But I have a problem for this input: - Or(Or(Var"x", Var"y"), Var"z"); val it = Or (Or (Var #,Var #),Var "z") : formula - Simplify it; And it's ...

1 2 3 4 5