sig
  module type Mappable =
    sig
      type 'a mappable
      val map :
        ('-> 'b) ->
        'BatInterfaces.Mappable.mappable ->
        'BatInterfaces.Mappable.mappable
    end
  module type OrderedType =
    sig
      type t
      val compare :
        BatInterfaces.OrderedType.t -> BatInterfaces.OrderedType.t -> int
    end
end