File: Functor2.md

package info (click to toggle)
ocaml-odoc 3.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,012 kB
  • sloc: ml: 60,567; javascript: 2,572; sh: 560; makefile: 31
file content (12 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12

# Module `Functor2`

```
module type S = sig ... end
```
```
module X (Y : S) (Z : S) : sig ... end
```
```
module type XF = functor (Y : S) -> functor (Z : S) -> sig ... end
```