sig
  type key = Ldap_schema.Lcstring.t
  type 'a t = 'a Map.Make(Lcstring).t
  val empty : 'a Ldap_schema.Lcmap.t
  val is_empty : 'a Ldap_schema.Lcmap.t -> bool
  val add :
    Ldap_schema.Lcmap.key ->
    'a -> 'a Ldap_schema.Lcmap.t -> 'a Ldap_schema.Lcmap.t
  val find : Ldap_schema.Lcmap.key -> 'a Ldap_schema.Lcmap.t -> 'a
  val remove :
    Ldap_schema.Lcmap.key -> 'a Ldap_schema.Lcmap.t -> 'a Ldap_schema.Lcmap.t
  val mem : Ldap_schema.Lcmap.key -> 'a Ldap_schema.Lcmap.t -> bool
  val iter :
    (Ldap_schema.Lcmap.key -> 'a -> unit) -> 'a Ldap_schema.Lcmap.t -> unit
  val map : ('a -> 'b) -> 'a Ldap_schema.Lcmap.t -> 'b Ldap_schema.Lcmap.t
  val mapi :
    (Ldap_schema.Lcmap.key -> 'a -> 'b) ->
    'a Ldap_schema.Lcmap.t -> 'b Ldap_schema.Lcmap.t
  val fold :
    (Ldap_schema.Lcmap.key -> 'a -> 'b -> 'b) ->
    'a Ldap_schema.Lcmap.t -> 'b -> 'b
  val compare :
    ('a -> 'a -> int) ->
    'a Ldap_schema.Lcmap.t -> 'a Ldap_schema.Lcmap.t -> int
  val equal :
    ('a -> 'a -> bool) ->
    'a Ldap_schema.Lcmap.t -> 'a Ldap_schema.Lcmap.t -> bool
end