ligo/vendors/ligo-utils/simple-utils/tuple.ml

10 lines
194 B
OCaml
Raw Normal View History

2019-05-13 00:46:25 +04:00
let map_h_2 f g (a , b) = (f a , g b)
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