This file is indexed.

/usr/lib/ocaml/batteries/batDllist.mli is in libbatteries-ocaml-dev 2.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
(*
 * Dllist- a mutable, circular, doubly linked list library
 * Copyright (C) 2004 Brian Hurt, Jesse Guardiani
 * Copyright (C) 2009 David Teller, LIFO, Universite d'Orleans
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version,
 * with the special exception on linking described in file LICENSE.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *)

(** A mutable, imperative, circular, doubly linked list library

    This module implements a doubly linked list in a mutable or imperitive
    style (changes to the list are visible to all copies of the list).

    {b Note} This implementation of doubly-linked lists does not support
    empty lists.

    @author Brian Hurt
    @author Jesse Guardiani
    @author David Teller
*)


type 'a node_t (* abstract *)
type 'a t = 'a node_t (*For uniformity*)
(**
   The type of a non-empty doubly-linked list.
*)

include BatInterfaces.Mappable with type 'a mappable = 'a t
include BatEnum.Enumerable with type 'a enumerable = 'a t

exception Empty

(** {6 node functions } *)

(** Creates a node.  This is an O(1) operation. *)
val create : 'a -> 'a node_t

(** Copy the list attached to the given node and return the copy of the given
    node.  This is an O(N) operation.
*)
val copy : 'a node_t -> 'a node_t

(** Returns the length of the list.  This is an O(N) operation. *)
val length : 'a node_t -> int

(** List reversal.  This is an O(N) operation.
    The given node still points to the same element, so
    [to_list (rev (of_list [1;2;3;4])) = [1;4;3;2]]
*)
val rev : 'a node_t -> unit

(** [add n a] Creates a new node containing data [a] and inserts it into
    the list after node [n].  This is an O(1) operation.
*)
val add : 'a node_t -> 'a -> unit

(** [append n a] Creates a new node containing data [a] and inserts it into
    the list after node [n]. Returns new node.  This is an O(1) operation.
*)
val append : 'a node_t -> 'a -> 'a node_t

(** [prepend n a] Creates a new node containing data [a] and inserts it into
    the list before node [n]. Returns new node.  This is an O(1) operation.
*)
val prepend : 'a node_t -> 'a -> 'a node_t

(** [promote n] Swaps [n] with [next n].  This is an O(1) operation.
*)
val promote : 'a node_t -> unit

(** [demote n] Swaps [n] with [prev n].  This is an O(1) operation.
*)
val demote : 'a node_t -> unit

(** Remove node from the list no matter where it is.  This is an O(1) operation.
    @raise Empty when trying to remove an element from a list of length one.
*)
val remove : 'a node_t -> unit

(** Remove node from the list no matter where it is. Return next node.  This is
    an O(1) operation.
    @raise Empty when trying to remove an element from a list of length one.
*)
val drop : 'a node_t -> 'a node_t

(** Remove node from the list no matter where it is. Return previous node.  This
    is an O(1) operation.
    @raise Empty when trying to remove an element from a list of length one.
*)
val rev_drop : 'a node_t -> 'a node_t

(** [splice n1 n2] Connects [n1] and [n2] so that
    [next n1 == n2 && prev n2 == n1]. This can be used to connect two discrete
    lists, or, if used on two nodes within the same list, it can be used to
    separate the nodes between [n1] and [n2] from the rest of the list. In this
    case, those nodes become a discrete list by themselves.  This is an O(1)
    operation.
*)
val splice : 'a node_t -> 'a node_t -> unit

(** Given a node, get the data associated with that node.  This is an
    O(1) operation.
*)
val get : 'a node_t -> 'a

(** Given a node, set the data associated with that node.  This is an O(1)
    operation.
*)
val set : 'a node_t -> 'a -> unit

(** Given a node, get the next element in the list after the node.

    The list is circular, so the last node of the list returns the first
    node of the list as it's next node.

    This is an O(1) operation.
*)
val next : 'a node_t -> 'a node_t

(** Given a node, get the previous element in the list before the node.

    The list is circular, so the first node of the list returns the
    last element of the list as it's previous node.

    This is an O(1) operation.
*)
val prev : 'a node_t -> 'a node_t

(** [skip n i] Return the node that is [i] nodes after node [n] in the list.
    If [i] is negative then return the node that is [i] nodes before node [n]
    in the list.  This is an O(N) operation.
*)
val skip : 'a node_t -> int -> 'a node_t

(** [iter f n] Apply [f] to every element in the list, starting at [n].  This
    is an O(N) operation.
*)
val iter : ('a -> unit) -> 'a node_t -> unit

(** Accumulate a value over the entire list.
    This works like List.fold_left. This is an O(N) operation.
*)
val fold_left : ('a -> 'b -> 'a) -> 'a -> 'b node_t -> 'a

(** Accumulate a value over the entire list.
    This works like List.fold_right, but since the list is bidirectional,
    it doesn't suffer the performance problems of List.fold_right.
    This is an O(N) operation.
*)
val fold_right : ('a -> 'b -> 'b) -> 'a node_t -> 'b -> 'b

val find : ('a -> bool) -> 'a node_t -> 'a node_t
(** [find p l] returns the first element, [l] or after, for which [p]
    returns true.

    @raise Not_found if no such element exists
    @added 1.4.0
*)

val for_all : ('a -> bool) -> 'a node_t -> bool
(** Test whether a given predicate returns true for all members of the
    given list. O(N) *)

val exists : ('a -> bool) -> 'a node_t -> bool
(** Test whether there exists an element of the given list for which
    the predicate returns true.  O(N) *)


val map : ('a -> 'b) -> 'a node_t -> 'b node_t
(** Allocate a new list, with entirely new nodes, whose values are
    the transforms of the values of the original list.  Note that this
    does not modify the given list.  This is an O(N) operation.
*)

val filter : ('a -> bool) -> 'a node_t -> 'a node_t
(** [filter p l] returns a new list, with entirely new nodes, whose
    values are all the elements of the list [l] that satisfy the
    predicate [p].  The order of the elements in the input list is
    preserved.

    @raise Empty if the resulting list is empty.*)

val filter_map : ('a -> 'b option) -> 'a node_t -> 'b node_t
(** [filter_map f l] calls [(f a0) (f a1) ... (f an)] where [a0,a1...an]
    are the elements of [l]. It returns a new list of elements [bi]
    such as [f ai = Some bi] (when [f] returns [None], the
    corresponding element of [l] is discarded).

    @raise Empty if the resulting list is empty.*)


(** {6 list conversion } *)

(** Converts a dllist to a normal list.  This is an O(N) operation. *)
val to_list : 'a node_t -> 'a list

(** Converts from a normal list to a Dllist and returns the first node.
    @raise Empty if given list is empty.  This is an O(N) operation.
*)
val of_list : 'a list -> 'a node_t


(** {6 enums } *)

(** Create an enum of the list.
    Note that modifying the list while the enum exists will have undefined
    effects.  This is an O(1) operation.
*)
val enum : 'a node_t -> 'a BatEnum.t

(** Create a reverse enum of the list.
    The enumeration starts with the current element of the list:
    [rev_enum (of_list [1;2;3;4])] will generate the enumeration [[1;4;3;2]].

    If you want it to start with the last one, see [backwards].

    Note that modifying the list while the enum exists will have undefined
    effects.  This is an O(1) operation.
*)
val rev_enum : 'a node_t -> 'a BatEnum.t

val backwards : 'a node_t -> 'a BatEnum.t
(** [backwards t] is similar to [rev_enum t] except that the enumeration
    starts at the node before the current one:

    [backwards (of_list [1;2;3;4])] will generate the enumeration [[4;3;2;1]].
*)

(** Create a dllist from an enum.
    This consumes the enum, and allocates a whole new dllist.
    @raise Empty if given enum is empty.  This is an O(N) operation.
*)
val of_enum : 'a BatEnum.t -> 'a node_t

(** {6 Boilerplate code}*)

(** {7 Printing}*)

val print : ?first:string -> ?last:string -> ?sep:string ->('a BatInnerIO.output -> 'b -> unit) ->  'a BatInnerIO.output -> 'b t -> unit

(**/**)
val invariants : _ t -> unit
  (**/**)