-3
votes
1answer
50 views

Ocaml list function

I have some "problems" with Ocaml functions. Define function all_odd, which, for a given matrix as a parameter check if all the elements are odd. val all_odd : int list list -> bool = <fun> ...
0
votes
2answers
71 views

Defining a variable within a function in OCaml

I've got a function numofday that I'd like to apply to two variables in another function that will return the number of days between the two given days, the functions themselves don't really matter, I ...
1
vote
1answer
69 views

Function to return a day n days ahead of given day

So I'm looking to build a function that takes an int and a day (of my day type below) and returns the day n days ahead of the given day. I have type day defined as type day = Sun | Mon | Tues | Wed ...
1
vote
4answers
104 views

OCaml recursive function to apply a function n times

I want to create a function of type int -> ('a -> 'a) -> 'a -> 'a in OCaml that takes an int n (non-neg) and a function f 'a -> 'a and an argument a of type 'a. f should be called on a n times. I've ...
0
votes
1answer
63 views

Defining a function with a function as an argument

I am currently trying to define a function of type ('a -> 'a) -> 'a -> 'a which takes a function of type 'a -> 'a and an argument of type 'a and calls the function twice on the argument. I'm ...
3
votes
1answer
105 views

OCaml syntax for defining a helper function inside of another function?

I apologize if this is a silly question, but I'm a newbie to OCaml and I wasn't able to find examples of this anywhere. Could somebody give me a simple example of the Ocaml syntax for defining a ...
0
votes
1answer
56 views

“and” functions in ocaml

I'm working on an ocaml project and I'm learning the syntax. I saw a program with the following format: let foo1 = function |(x, y) -> foo2 (x,y) z and foo2 a s= (*stuff in here*) I'm ...
0
votes
1answer
63 views

Ocaml return a function from a list of tuples

I need to convert a list into a function. I've managed to make the list into a list of tuples. So I have something like this now: [Expr, (Expr, [[T"("; N Expr; T")"]; [N Num]; [N Expr; N Binop; N ...
0
votes
2answers
144 views

How to let OCaml function returns a tuple containing a string and a function?

Eventually what I want is what x represents: let x = (something, (myfunc1 para1));; so that when calling x, I get a tuple, but when calling (snd x) para, I will get a return value of myfunc1 para. ...
1
vote
2answers
119 views

Can one concatenate functions in OCaml?

For the purposes of the example, let's assume that everything is an integer. Also, I am aware that the compiler will be mad that the functions don't account for every case. Let's say I have these two ...
0
votes
2answers
148 views

Syntax Error in Ocaml Function

I am getting a syntax error on the last line of this function: let rec countAll(doorlist, count) = let listdoor = []; countZero(doorlist, count) :: listdoor; countOne(doorlist, count) :: ...
4
votes
3answers
169 views

Recursive function references in OCaml?

Today we learned about "tying the knot" in SML where you have something like this val tempFunc = ref (fn k:int => true); fun even x = if x = 0 then true else !tempFunc(x-1); fun odd x = if x = 0 ...
9
votes
6answers
410 views

Is there a name for a function that takes a piece of data and a list of functions and applies each function to the result of the last one?

Clojure has a macro, ->, which takes a piece of data and a bunch of functions, applies the data to the first function, and then applies the result of that to the next one, the result of that to the ...
2
votes
1answer
63 views

Executing a list of functions

I'd like to apply a functions stored in a list let functions = [(fun () -> print_string "fun 1"); (fun () -> print_string "fun 2")] with a high-order fucntion like List.iter, to display "fun ...
4
votes
5answers
165 views

Trying to understand this block of code in OCaml

I am trying to understand what this block of code is doing: let rec size x = match x with [] -> 0 | _::tail -> 1 + (size tail) ;; I know that this expression computes the size ...
1
vote
1answer
198 views

OCaml - How do I create a function with a function as output?

"Write a function lv: cfg -> (blabel -> ide set), which computes the live variables analysis on the given control flow graph." Having cfg and blabel defined and ide set as a list of string, how ...
2
votes
2answers
96 views

How do these two function definitions in OCaml differ?

I have seen some implementation as follows: let rec fact = fun n -> if n <= 0 then 1 else n * fact (n - 1) Another implementation is: let rec fact n = if n <= 0 then 1 else n * ...
0
votes
2answers
176 views

OCAML: Difference between let func a x = (a x);; and let func a x = ((fun a -> a) x);;?

I'm a little stuck on this assignment for OCAML. I'm trying to pass in a function and a value as a parameter into another function. For example, I have function called test that takes in (fun x -> ...
4
votes
2answers
735 views

OCaml: Declaring a function before defining it

Is there a way to declare a function before defining it in OCaml? I'm using an OCaml interpreter. I have two functions: let myFunctionA = (* some stuff here..... *) myFunctionB (*some stuff *) ...
2
votes
3answers
820 views

OCaml: Iterating through a list and skipping elements if of the wrong constructor

This may seem like an odd thing to do, and you're certainly welcome to suggest a better way to do it. Here's my goal: I want to scroll through each element of a list passed into a function. If it's ...
5
votes
3answers
276 views

OCaml: Using a comparison operator passed into a function

I'm an OCaml noob. I'm trying to figure out how to handle a comparison operator that's passed into a function. My function just tries to pass in a comparison operator (=, <, >, etc.) and an int. ...
2
votes
1answer
129 views

A recursive function to discuss in Ocaml

I have defined a type and a function: type element = ... let merge (x0: element) (x1: element): element * bool = ... The second part of the return of merge represents if x0 and x1 are merge-able. ...
2
votes
1answer
57 views

A type “info” to get more results from functions

I have defined some complex data types, for instance: type drawer = { ... box: boxes list } type table = { ... drawers: drawer list } type room = { ... tables: table list } And I ...
1
vote
2answers
176 views

Signature of the declaration of a function in Ocaml

I have defined a function like the following: let ff (f1: a_function) (f2: a_function) (v0: type1) (v1: type2): type3 = ... And another function like the following works: let f: type1 -> type2 ...
3
votes
1answer
131 views

Where to define common functions in Ocaml?

I have some very basic and simple functions shared by several .ml files: for instance, warn, error... I would like to know, instead of repeating their definition in each .ml file, how to define them ...
1
vote
2answers
254 views

ocaml This expression has type 'a list but is here used with type X(account)

there is piece of ocaml which works correctly type position = {symbol: string; holding: int; pprice : float; };; type account = {name: string; max_ind_holding:float; pos:position list};; let ...
2
votes
1answer
462 views

OCaml: Function input ('a * 'b -> 'c)

let rec map2 (f : 'a * 'b -> 'c) (l1 : 'a list) (l2 : 'b list) : 'c list = match (l1,l2) with | ([], []) -> [] | (x::l1),(y::l2) -> f (x, y)::(map2 f (l1, l2)) It is returning: ...
2
votes
2answers
97 views

iteration to construct a function between two arrays in ocamlre

I have question regarding constructing a function like this. Here, I have two lists, both have the same length (say that the length is n, and the case that I want is a function which fulfil this ...
1
vote
2answers
293 views

Matching with functions in OCaml?

Is it possible to use pattern matching over specified functions directly or with some exploits that don't involve specifying a type for every function I need? Just to explain things better suppose I ...
4
votes
1answer
273 views

OCaml: Currying without defined values

I have two functions f and g and I am trying to return f(g(x)) but I do not know the value of x and I am not really sure how to go about this. A more concrete example: if I have functions f = x + 1 ...
12
votes
3answers
2k views

OCaml: What is the different between `fun` and `function` keywords?

Sometimes I see code like let (alt : recognizer -> recognizer -> recognizer) = fun a b p -> union (a p) (b p) Or like: let hd = function Cons(x,xf) -> x | Nil -> raise ...
3
votes
3answers
95 views

OCaml: bound expressions v. functions

Here we have a function definition: let f x = x + 3;; Here is an expression: let g = 4;; Could g just be thought of as constant function that takes no arguments? Is there any difference?
3
votes
1answer
1k views

OCaml: Default values for function arguments?

In PHP, default values for arguments can be set as follows: function odp(ftw = "OMG!!") { //... } Is there similar functionality in OCaml?