Standard ML of New Jersey (SML/NJ)
-1
votes
1answer
18 views
Error implementing the unzip function
I want to implement a function which gets one list of tuples (in a size of 2) and yielding a tuple of two separate lists.
I tried that code:
fun unzip [] = ([],[])
| unzip [(a,b)] = ([a],[b])
| ...
0
votes
0answers
22 views
can't use built in modules in smlnj - error when loading
I have recently installed sml-nj on my 32bit mini-laptop, and I can't use any of String/List modules
the error I get when I try to use any of these modules is:
[autoloading]
unexpected ...
2
votes
1answer
39 views
Difference between nat_pairs() and (nat_pairs()) in parameter list
I am beginner with SML and just writing my first functions.
The function is supposed to generate a stream of pairs with natural numbers not containing zero.
This function using filter with a ...
0
votes
2answers
37 views
Is there an ML type initialization routine?
Say I have a datatype that looks like
datatype IntLt = ltObj of int * int * (int * int -> bool)
That is, this object is a pair of ints with a corresponding operation on them. Is there a way to, ...
0
votes
1answer
32 views
Why can't I access my structure's internal ORD_SET structure?
This exercise I made up is intended to help me understand signatures, structures, and functors in Standard ML. I can't seem to get it to work. Just for reference, I'm using
Standard ML of New Jersey ...
0
votes
1answer
24 views
Issue matching Type of function to one defined in signature
I have a structure to define lazily evaluated sequences which are defined as
datatype 'a seq = Cons of 'a option * (unit -> 'a seq)
and I have a function map() that maps a function of type ...
1
vote
1answer
22 views
How exactly have I mangled this attempt at using a map in Standard ML?
I'm coding a caesar cipher in Standrd ML for a class assignment. I'm familiar enough with functional programming to know that a map is probably what I want here. I'm having trouble understanding the ...
0
votes
1answer
47 views
How to map over each character in a string in SML
I have a function foo that takes in a character. I want to map that function over each character in a string.
fun foo (ch : char) =
ch;
fun bar (str : string) =
map foo [(str)];
Clearly ...
3
votes
1answer
49 views
Why do I have unexpected '#' in the output for this code?
I am trying to create a deriv function to differentiate
using a datatype as follows:
datatype Symex = RCOEFF of real
| COEFF of string
| VAR of string
...
2
votes
2answers
86 views
filtering values into two lists
So i'm new to sml and am trying to understand the ins/out out of it. Recently i tried creating a filter which takes two parameters: a function (that returns a boolean), and a list of values to run ...
1
vote
1answer
40 views
output file to stdin
how exactly does one output the characters in a file to stdin in SML/NJ? Here is what i have so far but i'm currently stuck as i'm getting errors thrown back at me from the compiler.
Code:
fun ...
1
vote
2answers
67 views
how to check if list is empty
just started learning sml so excuse me for any discomfort that i may cause.
Okay so here is my function:
fun swapPairsInList [(x,y)]
swapPairsInList: (’x * ’y) list --> (’y * ’x) list
I know ...
0
votes
1answer
54 views
How can I convert my data type?
I define a data type for a multi list:
datatype intnest= INT of int
| LIST of intnest list;
now I'm trying to write function which can convert this type to main type.
for example:
...
-3
votes
1answer
52 views
how to get an int list of months by giving two days of a year? [closed]
write a function named month_range that takes two days of a year named day_one and day_two (e.g. 65, 128, assuming the year has 365 days) as input and return an int list of its months.
the size of ...
0
votes
1answer
59 views
How can I define a heteregeneous list datatype?
I am just starting to learn SML and having issues. I want to define a datatype, for a list that is not homogeneous.
Take for example
val a = [1,[2,4,3],5,[2,6]]
I have made this datatype
...
0
votes
1answer
44 views
inserting EQUALOP error in SML
I am trying to swap elements in a list in ML. My swap function returns the error inserting EQUALOP.
fun swap(n:int, i:int, deck:card list) =
local
val ...
0
votes
2answers
47 views
SML/NJ - about “:=” operator
I did some checks on := operator and I want to make sure that I got it well .
let -
val r1 = ref 1 ; (* !r1 = 1 *)
val r2 = ref 2 ; (* !r2 = 2 *)
val r3 = ref 3 ; (* !r3 = 3 *)
r1 := !r2 ; (* ...
0
votes
2answers
70 views
Function with different argument types
I read about polymorphism in function and saw this example
fun len nil = 0
| len rest = 1 + len (tl rest)
All the other examples dealt with nil arg too.
I wanted to check the polymorphism ...
0
votes
1answer
56 views
getting expression doesn't match error
I am trying to implement a node delete function for a Binary Search Tree in SML/nj.
However I am getting a constraint error, that I don't understand why...
datatype 'a tree = Empty | Node of 'a * 'a ...
1
vote
2answers
88 views
SML/NJ - linked list which can hold any types
I trying to create a datatype for linked list which can hold all types at same time i.e linked list of void* elements , the designing is to create a Node datatype which hold a record contains Value ...
0
votes
1answer
23 views
SML/NJ - the “fun act(f,x) = f(x) ;” signature
Declare on the follow function -
fun act(f,x) = f(x);
Makes the signature -
val act = fn : ('a -> 'b) * 'a -> 'b
What does ('a -> 'b) * 'a -> 'b means ?
0
votes
1answer
43 views
mutex/lock/semaphore in SML
Does SML have a mutex/lock/semaphore/etc library? I couldn't find one anywhere in the docs. I couldn't even find a multithreading library anywhere. Does it exist?
2
votes
1answer
98 views
How to flatten a list non-recursively in sml/nj?
fun flat [] = []
| flat (l::ls) = l @ flat ls;
This will flatten a list.
Is there a way to non recursively do the same operation? Perhaps with HOFs?
1
vote
2answers
63 views
SML - static scope doesn't cause any error while using exceptions
Given the following code :
exception E of int;
fun g(y) = raise E(y);
fun f(x) =
let
exception E of real;
fun z(y)= raise E(y);
in
x(3.0);
z(3)
end;
f(g);
...
1
vote
2answers
80 views
SML - Error: right-hand-side of clause doesn't agree with function result type [circularity]
Consider the following code :
fun g(a) =
let fun h(b)=g(a)
in h end;
When I run it in SML , I get :
- fun g(a) =
= let fun h(b)=g(a)
= in h end;
stdIn:55.5-57.10 Error: ...
0
votes
1answer
58 views
How to pattern match nested lists?
In sml/nj, I want to create a function that takes a list of non-empty lists, and returns a list of the first elements of each of those non-empty lists.
fun get_first [] = []
| get_first x::xs = (hd ...
0
votes
1answer
63 views
SML - Build a new list with the elements of the original list - Error: operator and operand don't agree [literal]
Given a list of numbers , I want to create a new list where the element at index i
is the sum of all the i-1 elements before .
For example :
[1,4,6,9] -> [1,5,11,20]
I've written the ...
0
votes
3answers
48 views
use non-default overloaded operator in smlnj
smlnj will make overloaded operator, like op + to use int by default, now I want to it returns a function in real * real -> real, how can I do in inline way?
"inline way" means not something like ...
0
votes
1answer
76 views
Check Whether or Not An Input is a Fibonacci Number
fun isfib(a) =
findfib(a,1,1)
and
findfib(b,x,y) =
val z = x + y
if b <= 1 then true
else if z > b then false
else if z = b then true
else fib(b,y,z)
I'm placing an input ...
1
vote
1answer
110 views
Extract duplicates from nested list in SML
I have a function in SML that returns a nested list:
[["A", "B", "C"], ["A", "B"], ["B", "C"]]]
Is it possible to extract the elements that appear in these lists? i.e. output "B"?
I've tried ...
1
vote
1answer
49 views
How to get the map function to not return something?
In sml nj, if you use the map function, your basically saying for each element x in a list, apply the function f on it, and return the list of the new values, but lets say f returns a string, and in f ...
1
vote
1answer
90 views
How to iterate through lists?
I am trying to learn standard ml of new jersey, but I don't understand how to iterate though lists.
I am trying to create a function that takes a value and a list of functions, and returns another ...
0
votes
1answer
81 views
Handling anonymous functions in SML datatypes
I have the following datatype and 3 examples of tests:
datatype 'a test = Test of ('a -> bool) * string;
val pos = Test (fn x => x > 0, "pos");
val even = Test (fn x => x mod 2 = 0, ...
0
votes
1answer
29 views
How to pattern match a function?
H,
I am trying to do pattern matching, but the input to the function is a curried function, how can you pattern match something like that?
Can anyone show me some examples please?
1
vote
3answers
215 views
How can I parse String to (int * int) tuple in SML?
I have a string something like this "3,4\r\n", and I want to convert them into a tuple i.e (3,4).
How can we achieve this in SML ?
The reason why I'm getting a string value is because I'm reading a ...
0
votes
1answer
68 views
Find if Duplicates Exist SML NJ opposite
Regarding to an older question Find if Duplicates Exist SML NJ, if I want the opposite result:
[1,2,2,3,4,5,6] should return false
[1,2,3,4,5,6,7] should return true
[1,2,3,4,5,6,1] should return ...
6
votes
3answers
220 views
Is the SML 'o' operator only useful on single-argument functions?
Is the 'o' composition operator (eg. 'val x = foo o bar', where 'foo' and 'bar' are both functions), only usable on single-argument functions and/or functions with equal numbers of arguments? If not, ...
1
vote
1answer
56 views
Does Basis have a standard “const” function?
Just learning ML and I was looking for a built-in function similar to Haskell's const. It would be defined something like:
fun const a b = a
Kind of easy to implement myself of course :) but I ...
2
votes
1answer
254 views
SML Warning: Type Vars Not Generalized when using Empty Lists or NONE option
I can't for the life of me figure out why the following SML function is throwing a Warning in my homework problem:
fun my_func f ls =
case ls of
[] => raise MyException
| head :: rest ...
0
votes
2answers
162 views
foldl operation in SML
I perform the following foldl operation
foldl (fn (acc,y) => if acc>y then acc else y+1) 0 [1,3]
So, I expect this to produce me an result of 4 but it produces an output of 3. What am I ...
1
vote
1answer
55 views
how to install SML/NJ in Windows without that installer?
Ok, I know SML/NJ has a self-installing windows .msi.
Unfortunately, I can't install it in my office Windows machine as the strict security policy and I don't want to argue with those IT staff for ...
-2
votes
1answer
176 views
SML Case and pattern matching
I have the follwing function that is suppose to return the value of a card. I'm not sure why the case Num => Num is giving the following error:
Error: Types of rules don't agree, Earlier rules ...
1
vote
3answers
173 views
Calculate possible sums of int list list recursively
I'm struggling to write the code, that will calculate sum of int list list. For example, if we consider following list
[[1],[1,5],[7],[2,3,4]]
we can get different possible sums, depending on which ...
0
votes
1answer
428 views
SML Sum of List using option and Pattern matching
I'm creating sum of list and using option in it. When I pass an empty list, I should get NONE or else SOME value.
I'm able to do that in the following way:
fun sum_list xs =
case xs of
...
1
vote
1answer
120 views
SML How to define proper option
Why doesn't the following code doesn't work?
fun sum_list xs =
case xs of
[] => NONE
| x::xs' => SOME (x+sum_list xs')
This code works well when Instead of NONE it is zero and when I ...
2
votes
2answers
64 views
SML Error: syntax error: inserting DOT
When I run this code in the REPL, it throws Error: syntax error: inserting DOT. I would like to know what that error message means.
I have since fixed the code and still want to know the meaning of ...
0
votes
1answer
151 views
How to return nothing instead of an empty list in SML
I am doing a programming assignment with SML. One of the functions requires me to return a list of triple tuples of ints ( (int * int * int) list ) use to other lists. The function sorts through dates ...
1
vote
1answer
104 views
How to move the cursor in SML/NJ's REPL in terminal on Mac?
In the terminal of Mac OSX, I open SML, if I type something wrong, I wish to move my cursor to that place to modify something or add/delete something, but once I hit <- (the left arrow ) on the ...
0
votes
2answers
92 views
How to clean a list for a specific string and return the cleaned list or NONE
I need to write a function to answer these specifications:
clean_list( [],s1] = NONE
clean_list( xs, "") = NONE
clean_list ([s1, s1, s1, s1], s1) = NONE
clean_list([s1, s2, s3, s2, s1], s3) = [s1, ...
0
votes
3answers
110 views
What is wrong with my function
i have the following function that is supposed to return true if a the passed argument is a reasonable date and false otherwise. the problem is that it is returning false even for obviously reasonable ...

