~npalix/coccinelle/upstream

« back to all changes in this revision

Viewing changes to bundles/stdcompat/stdcompat-current/interfaces/3.11/buffer.mli

  • Committer: Thierry Martinez
  • Date: 2019-08-20 13:37:04 UTC
  • Revision ID: git-v1:0214afad4a32c95349c2c5a38e37cea407c455d0
Update bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
type t
 
2
val create : int -> t
 
3
val contents : t -> string
 
4
val sub : t -> int -> int -> string
 
5
val blit : t -> int -> string -> int -> int -> unit
 
6
val nth : t -> int -> char
 
7
val length : t -> int
 
8
val clear : t -> unit
 
9
val reset : t -> unit
 
10
val add_char : t -> char -> unit
 
11
val add_string : t -> string -> unit
 
12
val add_substring : t -> string -> int -> int -> unit
 
13
val add_substitute : t -> (string -> string) -> string -> unit
 
14
val add_buffer : t -> t -> unit
 
15
val add_channel : t -> in_channel -> int -> unit
 
16
val output_buffer : out_channel -> t -> unit