Tagged Questions
3
votes
1answer
56 views
Defunctorizer for OCaml
In the past, Julien Signoles programmed ocamldefun, a program that took OCaml source code with functors and obtained an equivalent program without functors. This is useful for optimization, analysis ...
0
votes
1answer
54 views
use first-class module in OCaml
module type Arity =
sig
val arity : nat (* in my real code it has another type *)
end
module S =
functor (A : Arity) -> struct
let check = ...
end
I would like to use the function check ...
12
votes
1answer
321 views
If SML.NET had functors why can't F#?
This question started out from
My translating of "ML for the Working Programmer" (WorldCat) by L. C. PAULSON to F# which uses functors for the examples.
Eventual desire to translate "Purely ...
5
votes
1answer
105 views
A design of functors in OCaml
I have defined 2 modules Zone and Zones, Zones is a list of Zone, of cause functions of Zones need to call functions of Zone:
module Zone = struct
type t =
{ ...
prop: bool }
...
end
modules ...
5
votes
1answer
182 views
Implementing Okasaki's bootstrapped heaps in OCaml, why doesn't it compile?
(A minimal non-compiling example can be found at https://gist.github.com/4044467, see more background below.)
I am trying to implement Bootstrapped Heaps introduced in Chapter 10 of Okasaki's Purely ...
5
votes
1answer
85 views
Extending OCaml Maps to formattable Maps
I have made a functor for format-able sets, as follows:
module type POrderedType =
sig
type t
val compare : t -> t -> int
val format : Format.formatter -> t -> unit
end
...
9
votes
1answer
114 views
Creating a parametrized module over a parametrized module
I'm trying to write a module that implements algorithms on another module that may be implemented in various ways. So my thinking was to write the first module as
module type Base = sig
type t
...
6
votes
1answer
110 views
How defining a module signature whose module implementation is parameterized by a functor
Let's say I have a module M parameterized by a module F:
module M (F : sig type id type data end) =
struct
type idtype = F.id
type datatype = F.data
type component = { id : idtype; data : datatype ...
5
votes
4answers
144 views
In OCaml, is it possible to define Map in terms of Set?
I have implemented a representation of sets (balanced search trees) in OCaml. It's actually a functor Make of signature
module Make :
functor (T : ORDERED_TYPE) ->
sig
type elt = T.t
type t
...
1
vote
2answers
84 views
Defining a type with a variable list of other types
I'd like to write a module (in Ocaml 3.12) able to define a Variant type as an aggregation of existing different types
It could be 0 to N types, so a variable list or set
it could look like this :
...
1
vote
1answer
152 views
Functor compilation issue: Signature mismatch: Modules do not match
First the code:
module Boolean = struct
exception SizeMismatch
type boolean = T | F | Vec of boolean array
let to_bool v = match v with
T -> true
| F -> false
| _ -> raise ...
6
votes
3answers
150 views
Functors in separate files in OCaml?
I want to have a big functor Hello(Blah: Blah_type) and save it in the file hello.ml, but how do I do this?
If I was just in my top level file, I'd have
module Hello(Blah: Blah_type) =
...
9
votes
4answers
217 views
OCaml functors :: counter-intuitive behaviour
I am experimenting with the module language of OCaml (3.12.1), defining functors and signatures for modules and so on, mostly following the examples from Chapter 2 of the OCaml manual and I've ...
0
votes
2answers
63 views
Define functions over 2 parallel modules built by functors
I am still struggling with my design and implementation, thought it progresses...
First, I have defined 2 basic signatures and 2 modules:
module type MATRIX = sig type 'a t end
module ...
1
vote
2answers
88 views
Type relation between two modules built by functors
I have defined several signatures and modules as follows:
module type MATRIX =
sig
type 'a t
val init: 'a -> 'a t
end
module type MMM =
sig
type 'a t
end
module type AMATRIX =
sig
...
3
votes
1answer
440 views
Help on Ocaml Functors, Modules and Submodules
Aologies for posting such long, non-compilable code. But despite reading several questions and answers on stackoverflow on ocaml's functors, I don't get how to solve this:
Assume I have a very ...
4
votes
3answers
318 views
Modules and record fields
I have stumbled across a rather simple OCaml problem, but I can't seem to find an elegant solution. I'm working with functors that are applied to relatively simple modules (they usually define a type ...
2
votes
1answer
175 views
Functor implementation issue
The aim of the module described below is to implement a module which once initiated by an integer n does all the operations based on the value of n.
module ReturnSetZero =
functor ( Elt : int ) ...
5
votes
1answer
622 views
Functors with multiple arguments in OCaml
I've the following situation:
module type M = sig type s = ... end
module Make(P: Something) : (M with type s = P.t) = struct
type s = P.t
...
end
that works fine to generate modules of M ...
7
votes
1answer
368 views
Using functors as interfaces in OCaml
I'm developing some algorithms in OCaml which need some parts to be "pluggable" so that part of the computation is left to specific computators.
Just to make an example suppose I have a signature ...
8
votes
2answers
513 views
Understanding functors in OCaml
I'm quite stuck with the following functor problem in OCaml. I paste some of the code just to let you understand. Basically
I defined these two modules in pctl.ml:
module type ProbPA = sig
...
9
votes
3answers
3k views
Would you please explain OCaml functors to me? [duplicate]
Possible Duplicate:
In Functional Programming, what is a functor?
I don't know much about OCaml, I've studied F# for some time and quite understand it.
They say that F# misses functor ...
89
votes
11answers
6k views
In Functional Programming, what is a functor?
I've come across the term 'Functor' a few times while reading various articles on functional programming, but the authors typically assume the reader already understands the term. Looking around on ...
6
votes
1answer
2k views
Functors in Ocaml
I am having a bit of a problem with a functor (and it's resultant type). Below, I have a Set functor that uses an Ordered type. I actually used the set.ml that comes with ocaml for some guidance, but ...