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

11 lines
237 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)
2019-11-26 03:15:25 +04:00
let map3 f (a , b , c) = (f a , f b , f c)
2019-05-13 00:46:25 +04:00
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