0
votes
2answers
50 views
IDE’s for Standard ML of New Jersey
I'm having to write a whole bunch of SML code this coming week so I was hoping if anyone knew:
A good Standard ML IDE?
Or a good text editor for Linux that has code-highlighting …
1
vote
3answers
51 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 pr …
1
vote
1answer
55 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 ab …
0
votes
0answers
23 views
Signature inside of a structure
I want to place signature/structure pair inside a structure, like so:
structure Outer :> OUTER =
struct
signature INNER =
sig
...
end
structure Inner : …
1
vote
3answers
102 views
BigInt for Standard ML/NJ
Is there a Java BigInt equivalent for Standard ML? The normal int type throws an exception when it overflows.
1
vote
4answers
466 views
What is a good data structure to represent an undirected graph?
I need to construct an undirected graph. I don't need it to do anything too fancy, but ideally it would work like this:
structure UDG = UndirectedGraph
val g = UDG.empty
val g = …
1
vote
2answers
79 views
Is there a way to get a Curried form of the binary operators in SML/NJ?
For example, instead of
- op =;
val it = fn : ''a * ''a -> bool
I would rather have
- op =;
val it = fn : ''a -> ''a -> bool
for use in
val x = getX()
val l = getLi …
0
votes
2answers
95 views
Suppress “val it” output in Standard ML
I'm writing a "script" in Standard ML (SML/NJ) that sets up the interactive environment to my liking. The last thing the script does is print out a message indicating everything we …
4
votes
2answers
135 views
What are the limits of type inference?
What are the limits of type inference? Which type systems have no general inference algorithm?
4
votes
4answers
198 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 …
0
votes
2answers
118 views
prototyping functions in SML
I have two functions, f and g, which call each other recursively. Unfortunately, when f calls g, it has not yet been declared, so I get an "unbound variable" error. How can I prot …
0
votes
2answers
60 views
ensuring a specific type outcome in SML
Hi
Im trying to make a function that will return an element of type "point":
type point = {x : int, y : int};
fun pointadd (p1: point, p2: point) = (((#x p1) + (#x p2)), ((#y p1) …
1
vote
2answers
115 views
How do I use the Queue library in SML/NJ
I see that the SML/NJ includes a queue structure. I can't figure out how to use it. How do I use the additional libraries provided by SML/NJ?
1
vote
3answers
175 views
Doing a N-dimensional walk in pure functional ML ?
The idea is to walk over multiple dimensions, each one defined as a range
(* lower_bound, upper_bound, number_of_steps *)
type range = real * real * int
so functions like fun fo …
9
votes
6answers
867 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 exa …
