~ubuntu-branches/ubuntu/lucid/camomile/lucid

« back to all changes in this revision

Viewing changes to internal/bitsvect.mli

  • Committer: Bazaar Package Importer
  • Author(s): Sylvain Le Gall
  • Date: 2005-12-03 01:18:55 UTC
  • Revision ID: james.westby@ubuntu.com-20051203011855-qzvwlld1xyqnl62t
Tags: upstream-0.6.3
ImportĀ upstreamĀ versionĀ 0.6.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(* $Id: bitsvect.mli,v 1.6 2003/04/27 17:47:59 yori Exp $ *)
 
2
(* Copyright 2002 Yamagata Yoriyuki *)
 
3
 
 
4
type t 
 
5
val get : t -> int -> int
 
6
val unsafe_get : t -> int -> int
 
7
val set : t -> int -> int -> unit
 
8
val make : int -> int -> t
 
9
val copy : t -> t
 
10
val iteri : (int -> int -> unit) -> t -> unit
 
11
val length : t -> int
 
12
 
 
13
val set_id : t -> int -> unit
 
14
val id : t -> int
 
15