~ubuntu-branches/debian/experimental/sks/experimental

« back to all changes in this revision

Viewing changes to fqueue.mli

  • Committer: Package Import Robot
  • Author(s): Daniel Kahn Gillmor
  • Date: 2013-06-27 16:39:02 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20130627163902-qqic4va2187boeji
Tags: 1.1.4-1
* New Upstream Release (Closes: #690135)
* added myself to Uploaders.
* convert to dh 9
* Standards-Version: bump to 3.9.4 (no changes needed)
* debian/rules: clean up
* refresh and clean up debian/patches
* switch packaging vcs to git
* avoid trying to upgrade DB_CONFIG (Closes: #709322)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
exception Empty
 
2
type 'a t = { inlist : 'a list; outlist : 'a list; length : int; }
 
3
val empty : 'a t
 
4
val push : 'a -> 'a t -> 'a t
 
5
val enq : 'a -> 'a t -> 'a t
 
6
val top : 'a t -> 'a
 
7
val pop : 'a t -> 'a * 'a t
 
8
val discard : 'a t -> 'a t
 
9
val deq : 'a t -> 'a * 'a t
 
10
val to_list : 'a t -> 'a list
 
11
val length : 'a t -> int
 
12
val is_empty : 'a t -> bool