File: eqparams.ml

package info (click to toggle)
ocaml-deriving-ocsigen 0.3c-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 600 kB
  • sloc: ml: 5,788; makefile: 298
file content (6 lines) | stat: -rw-r--r-- 127 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
(* All types in a group must have the same parameters *)

type 'a t1 = int
and ('a,'b) t2 = int
and t3 = int
    deriving (Eq)