package spotlib

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file tuple.ml

1
2
3
4
5
6
7
module Stdlib = struct
  let map_fst f (a,b) = f a, b
  let map_snd f (a,b) = a, f b
end

include Stdlib