ocaml/stdlib/oo.mli

61 lines
2.0 KiB
OCaml

(***********************************************************************)
(* *)
(* Objective Caml *)
(* *)
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id$ *)
(* Module [Oo]: object-oriented extension *)
val copy : (< .. > as 'a) -> 'a
(* [Oo.copy o] returns a copy of object [o], that is a fresh
object with the same methods and instance variables as [o] *)
(*--*)
(*** For system use only, not for the casual user *)
(* Methods *)
type label
val new_method: string -> label
(* Classes *)
type table
type item
type obj_init
type class_info
val set_initializer: table -> obj_init -> unit
val inheritance: table -> class_info -> string list -> unit
val get_method: table -> label -> item
val set_method: table -> label -> item -> unit
val get_variable: table -> string -> int
val hide_variable: table -> string -> unit
val get_private_variable: table -> string -> int
val create_class: class_info -> (table -> unit) -> unit
(* Objects *)
type t
type object
val send: object -> label -> t
(* Parameters *)
val compact_table : bool ref
val copy_parent : bool ref
val clean_when_copying : bool ref
val retry_count : int ref
val bucket_small_size : int ref
(* Statistics *)
type stats =
{ classes: int; labels: int; methods: int; inst_vars: int; buckets: int;
distrib : int array; small_bucket_count: int; small_bucket_max: int }
val stats: unit -> stats
val show_buckets: unit -> unit