10 lines
194 B
OCaml
Raw Normal View History

let map_h_2 f g (a , b) = (f a , g b)
2019-03-13 11:12:15 +00:00
let map2 f (a, b) = (f a, f b)
let apply2 f (a, b) = f a b
let list2 (a, b) = [a;b]
module Pair = struct
let map = map2
let apply f (a, b) = f a b
end