1
vote
1answer
34 views

Executable specification ..? how executable specifications can be used for rapid prototyping?

After reading these books Bertrand Meyer, Introduction to the Theory of Programming Languages & J.D. Ullman, Elements of ML Programming I have read some papers also, tried to find on ...
3
votes
2answers
47 views

File seeking with SML Basis

Is there a way, using the SML Basis library, to open a file at a specific position? That is, use an operating system call to change the position, rather than scan through the file and throw away the ...
0
votes
2answers
58 views

Binary trees as innested pairs

I'm trying to represent a generic binary tree as a pair. I'll use the SML syntax as example. This is my btree type definition: datatype btree = leaf | branch of btree*btree; So, I'd like to write ...
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 ...
-1
votes
2answers
102 views

How to determine which day of a year belongs to what month? [closed]

I'm a beginner and I gotta write a function in SML. The assignment question is : write a function named what_month that takes the number of a day (e.g., 257, assuming 365 days a year) as input, ...
0
votes
1answer
89 views

Create a list by consing vs tail-call accumulator

For example, one function creates a list via consing: fun example1 _ _ [] = [] | example1 f g (x::xs) = if f x then (g x)::(example1 f g xs) else x::(example1 f g xs) One creates a ...
4
votes
3answers
234 views

Is anyone use SML or OCaml for building real world GUI?

After looking at some OCaml graphics related projects it seems that no one using it for building GUI. why ? is there any modern alternatives to those outdated libraries ?
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 ...
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 ...
3
votes
2answers
81 views

Is this considered a curried function?

I'm still a bit confused about currying - I've got an implementation of map in SML, is this considered as a curried function? fun mymap f xs = List.foldr (fn (x, l) => (f x)::l) [] xs; Or do I ...
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); ...
0
votes
1answer
53 views

(sml) Syntax error?

I have this function that checks a list of parsers if they work or not. I get error: EQUALO LPAREN FN. Any help? fun oneOf [] = fn inp => NONE | oneOf (p::ps) = (fn inp => case parse p inp of ...
0
votes
1answer
59 views

(sml/nj) Correct type?

For my assignment I have to do two functions with the type: wt: trie -> (char list list -> ’a)-> ’a aw: trie list -> (char list list -> ’a)-> ’a but what I have is this and was ...
0
votes
1answer
77 views

concatenating recursion in SML

I'm another beginner attempting to complete a MOOC course with an SML element. I want to produce a function that takes a list, and produces a second list with the elements summed. if done correctly, ...
2
votes
1answer
70 views

How can I load a ml file in toplevel of OCaml, just like `use mine.sml` in SML/NJ?

In SML's repl, you can just type use whatever.sml and load all things inside that .sml into repl. How can I do that in OCaml?
1
vote
2answers
196 views

Understanding foldl in ML

I need to write a function that takes a list of strings and finds the largest string in the list. The catch is it needs to iterate through the list using List.foldl and cannot use recursive calls ...
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 ...
0
votes
1answer
98 views

Error on type mismatch

I'm writing this function on SML. It is supposed to take a list of possible first name variations (my name is Victoria, so V, Vic, Vicky, etc.) and create records of {altname1, middle, last}, {alt2, ...
2
votes
4answers
190 views

Cannot understand 'functions as arguments' recursion

I'm taking a functional programming languages course and I'm having difficulty understanding recursion within the context of 'functions as arguments' fun n_times(f , n , x) = if n=0 then x ...
-2
votes
1answer
118 views

SML higher order function type? [duplicate]

I'm trying to implement a function ziprev : 'a list -> 'b list -> ('a * 'b)list - ziprev [1,2,3,4] [10,20,30,40]; val it = [(1,40),(2,30),(3,20),(4,10)] : (int * int) list Using zipWith ...
-3
votes
1answer
111 views

SML functional programming higher order function?

I need to implement a function ziprev : 'a list -> 'b list -> ('a * 'b) list - ziprev [1,2,3,4] [10,20,30,40]; val it = [(1,40),(2,30),(3,20),(4,10)] : (int * int) list Using a function ...
0
votes
1answer
52 views

Is there a way to see the library function code in SML?

I'm interested in how List.combine is done val combine : 'a list -> 'b list -> ('a * 'b) list Transform a pair of lists into a list of pairs: combine [a1; ...; an] [b1; ...; bn] is [(a1,b1); ...
-1
votes
1answer
116 views

SML currying ( functional prog)?

I asked this question a few days ago but now I have more understanding on the subject. But I still get problem that operator and operand dont agree: Using ListPair.foldr I need to create a function ...
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 ...
0
votes
1answer
224 views

Using ListPair.foldr to implement zipWith in SML

Background: Beginner level at SML My assignment requires me to use ListPair.foldr and only this function to implement the zipWith function. ListPair.foldr : ('a * 'b * 'c -> 'c) -> 'c -> 'a ...
0
votes
2answers
147 views

Functional “All except one”

How I can declare function that takes number and list of numbers, and returns NONE if there is no such number in the list, otherwise returns list option ('Maybe' in Haskell) without this number? If ...
0
votes
1answer
83 views

How to get a string from TextIO in sml/ml?

I'm trying to read text from a file in SML. Eventually, I want a list of individual words; however, I'm struggling at how to convert between a TextIO.elem to a string. For example, if I write the ...
2
votes
1answer
124 views

How to read from a file in SML?

I'm trying to read text from a file in SML but I can't get it to work. Here's what I'm trying fun read file = let val inStream = TextIO.openIn file in TextIO.StreamIO.input1 inStream end ...
1
vote
2answers
205 views

How to instantiate a functor in SML?

If I have the following functor, how can I instantiate it with a ListMapFn? functor G(M: ORD_MAP where type Key.ord_key = string) :
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
2answers
467 views

SML Ml Programing Function is_older date with boolean conditon

I am newbie in ML programming, I have a homework to write a function is_older that takes two dates and evaluates to true or false. It evaluates to true if the first argument is a date that comes ...
1
vote
1answer
62 views

How many arguments does the map function take in SML?

I'm trying to learn SML and some of my professor notes talk about the map function "which has type ('a -> 'b) -> ('a list -> 'b list)." He goes on to explain that this means that "you give me a ...
0
votes
1answer
34 views

Reflect a tree using sml

The type should be mobile->mobile where datatype mobile = Object of int | Wire of mobile * mobile Code gives me error constructor and argument dont agree in pattern and operator and operand dont ...
0
votes
0answers
41 views

Partial sum(prefix sum) in sml? [duplicate]

Possible Duplicate: Partial sum in Standard ML? I wrote a increment fn but somehow cant make it partial sum. Any help? type:int list -> int list fun psum(L) = if L = [] then [] ...
1
vote
0answers
130 views

Check if balanced binary tree (standard ml)

The tree datatype is : datatype mobile = Object of int | Wire of mobile * mobile To check if it's balanced I figured out I have to first make a weight function to calculate the weight of the values ...
0
votes
1answer
196 views

Partial sum in Standard ML?

Im new to functional programming and I have an assignment to compute partial sum of a list. E.g. - psum [1,1,1,1,1]; val it = [1,2,3,4,5] : int list Here is the my code so far. However in function ...
3
votes
3answers
828 views

SML and functional coding style

I'm start to learn Standard ML with Programming languages course. In the first homework, I try to write a function is_older that takes two dates and evaluates to true or false. It evaluates to true ...
1
vote
1answer
297 views

Trying to understand the SML option structure

Okay so I started learning SML for a class, and I'm stuck with the option structure. What I have so far for this example: datatype suit = spades|hearts|clubs|diamonds; datatype rank = ...
0
votes
0answers
116 views

Array ranking implementation [closed]

In an functional language like Haskell or SML, how would you implement array ranking for checking how many dimensions there are in a given array ? I kinda stuck atm so every little idea or example ...
3
votes
1answer
191 views

Add priority to parenthesis in calculator grammar

I'm writing a simple calculator in SML , and my code need to support 3 kinds of parentheses : ( ) [ ] { } Where inside { } , can appear { } , [ ] , ( ) expressions , Inside [ ] , can appear ...
0
votes
1answer
264 views

Tail recursion in SML does not present any output

Following my previous post here , I tried to do what was suggested and convert the code into a Tail-recursion method with let . The original code - which does not work (due to using val inside if ...
2
votes
1answer
118 views

SML| foldl with if

I'm having this exercise which asks to count how many values in a boolean list are true. I typed this: fun countt xs = foldl (fn (x,y) => if x=true then y=y+1) 0 xs; which, apparently, is ...
4
votes
2answers
409 views

Standard ML functor examples

Functors in Standard ML are related to the module system and can generate structures based on other structures. An example of a functor generating list combinators for various types of lists is given ...
2
votes
1answer
161 views

ML function currying

Could someone please explain the concept of currying to me. I am primarily learning it because we are learning ML in my 'modern programming language' class for a functional language introduction. In ...
0
votes
1answer
92 views

SML Value Restriction - Heap

Basically, I want a function to make a heap from a node and 2 subheaps. The heap representation is as follows (where the int in the Cons represents the rank of the node) datatype 'a heap = Empty | ...
1
vote
1answer
164 views

SML Function Argument Pattern Matching

I am using pattern matching on argument passed to a function. The method works fine for "first level" matching so to say but any attempt to go deeper gives the error "stdIn:282.5-291.77 Error: match ...
0
votes
2answers
132 views

SML method that accepts a list list and returns a list

I need to create a method that takes a list of lists (like [ [2,3,] , [4,5] ]) and returns something like [2,3,4,5]. I can work out the logic but I dont know how to define the method in SML. I tried ...

1 2