package varray

  1. Overview
  2. Docs

Source file varray_sig.ml

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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
module type ARRAY = sig
  (** The array will be used partially, with some elements in an undefined
      state.  It is guaranteed that all operations always use valid indexes.
  *)

  type 'a t
  (** The type of an array. *)

  type 'a elt
  (** The type of elements contained in the array. *)

  val length : 'a t -> int
  (** The size of the array; the maximum number of elements that can be stored
      inside. *)

  val empty : unit -> 'a t
  (** An empty array of length [0]. *)

  val create : int -> 'a t
  (** [create n] returns an array of length [n]. Its elements are all in
      an undefined state and will not be accessed by {! get} before being
      defined by {! set} or {! blit}. *)

  val get : 'a t -> int -> 'a elt
  (** [get t i] returns the [i]th element of the array.
      The elements are numbered from [0] to [length t - 1] and the index [i] is
      always within this bound: this function can be implemented as an
      [unsafe_get]) if available. *)

  val set : 'a t -> int -> 'a elt -> unit
  (** [set t i v] modifies [t] in place, replacing the element at position [i]
      with the value [v]. From now on, the element at this index is defined.
      Again, this can be implemented as an [unsafe_set] without bound checking.
  *)

  val erase_at : 'a t -> int -> unit
  (** [erase_at t i] resets the element at position [i]. It is an opportunity
      to free the memory of the value [t.(i)]. From now on, the element is
      undefined and this index will not be accessed again until a write is
      done. *)

  val blit : 'a t -> int -> 'a t -> int -> int -> unit
  (** [blit src i dst j n] copies the elements from the range [i,i+n-1] from
      the array [src] to the range [j,j+n-1] of the array [dst]. All the
      elements copied from [src] are guaranteed to be in a defined state.
      After this operation, the corresponding range in [dst] will be defined.
      The copied ranges will be valid for each array. Special care is required
      during the copy since [src] will often be the same array as [dst] and the
      ranges can overlap. *)
end

module type TIER = sig
  module Array : ARRAY
  type 'a elt = 'a Array.elt
  type 'a array = 'a Array.t

  type 'a t

  val depth : int

  val empty : unit -> 'a t
  val is_empty : 'a t -> bool
  val root_capacity : 'a t -> int

  val create : capacity:int -> 'a t
  val make : lc:int -> int -> 'a elt -> 'a t
  val init : lc:int -> offset:int -> int -> (int -> 'a elt) -> 'a t

  val length : 'a t -> int
  val capacity : lc:int -> int

  val get : lc:int -> 'a t -> int -> 'a elt
  val set : lc:int -> 'a t -> int -> 'a elt -> unit

  val pop_front : lc:int -> 'a t -> 'a elt
  val pop_back : lc:int -> 'a t -> 'a elt
  val pop_at : lc:int -> 'a t -> int -> 'a elt

  val push_front : lc:int -> 'a t -> 'a elt -> unit
  val push_back : lc:int -> 'a t -> 'a elt -> unit

  val is_full : lc:int -> 'a t -> bool

  val push_front_pop_back : lc:int -> 'a t -> 'a elt -> 'a elt
  val push_back_pop_front : lc:int -> 'a t -> 'a elt -> 'a elt

  val insert_at : lc:int -> 'a t -> int -> 'a elt -> unit
end

module type VARRAY = sig
  type 'a t
  type 'a elt
  type 'a array

  val push_back : 'a t -> 'a elt -> unit
  val pop_back : 'a t -> 'a elt

  val push_front : 'a t -> 'a elt -> unit
  val pop_front : 'a t -> 'a elt

  val insert_at : 'a t -> int -> 'a elt -> unit
  val pop_at : 'a t -> int -> 'a elt
  val delete_at : 'a t -> int -> unit

  val get : 'a t -> int -> 'a elt
  val set : 'a t -> int -> 'a elt -> unit

  val length : 'a t -> int
  val make : int -> 'a elt -> 'a t
  val init : int -> (int -> 'a elt) -> 'a t
  val empty : unit -> 'a t
  val is_empty : 'a t -> bool

  val protect : 'a t -> (unit -> 'b) -> 'b

  module Tier : TIER with type 'a Array.elt = 'a elt
                      and type 'a Array.t = 'a array
end

module type S = sig

  type 'a t
  (** The type of a varray. *)

  type 'a elt
  (** The type of elements stored in the varray. *)

  (** {1 Dynamic collection} *)

  val push_back : 'a t -> 'a elt -> unit
  (** [push_back t x] adds a new element [x] at the end of the varray [t].
      {b O(k)} amortized. *)

  val pop_back : 'a t -> 'a elt
  (** [pop_back t] removes and returns the rightmost element of the varray [t].
      {b O(k)} amortized. *)

  val push_front : 'a t -> 'a elt -> unit
  (** [push_front t x] inserts a new element [x] at position [0], on the left
      side of the varray [t]. Every previous element of [t] is shifted one to
      the right. {b O(k)} amortized. *)

  val pop_front : 'a t -> 'a elt
  (** [pop_front t] removes and returns the leftmost element at position [0] of
      the varray [t]. Every element of [t] is shifted one to the right.
      {b O(k)} amortized. *)

  val insert_at : 'a t -> int -> 'a elt -> unit
  (** [insert_at t i x] inserts the element [x] at position [i] in the varray
      [t]. Every element on the right of [i] is shifted by one.
      {b O(k² × {%html:<sup>k</sup>%}√N)}

      - [insert_at t 0 x] is the same as [push_front t x]
      - [insert_at t (length t) x] is the same as [push_back t x]

      @raise Invalid_argument if [i] is negative or larger than [length t].
  *)

  val pop_at : 'a t -> int -> 'a elt
  (** [pop_at t i] removes and returns the element [t.(i)]. Every element on
      the right of [i] is shifted by one to the left.
      {b O(k² × {%html:<sup>k</sup>%}√N)}

      - [pop_at t 0] is the same as [pop_front t]
      - [pop_at t (length t - 1)] is the same as [pop_back t]

      @raise Invalid_argument if [i] is negative or larger than [length t - 1].
  *)

  val delete_at : 'a t -> int -> unit
  (** [delete_at t i] removes the element [t.(i)]. Every element on the right
      of [i] is shifted by one to the left.
      {b O(k² × {%html:<sup>k</sup>%}√N)}

      @raise Invalid_argument if [i] is negative or larger than [length t - 1].
  *)

  (** {1 Freeze during traversals} *)

  (** The previous operations all fail when the varray is being traversed: *)

  val protect : 'a t -> (unit -> 'b) -> 'b
  (** [protect t fn] marks [t] as protected during the execution of [fn ()].
      All operations that would update the length of [t] by pushing or poping
      elements will raise a [Failure] indicating that the traversal is unsafe.
  *)

  (** {1 Array} *)

  val get : 'a t -> int -> 'a elt
  (** [get t i] returns the [i]th element of the varray. Indexing starts from
      [0] upto [length t - 1]. {b O(k)}

      @raise Invalid_argument if [i] is negative
      or larger than [length t - 1].
  *)

  val set : 'a t -> int -> 'a elt -> unit
  (** [set t i v] updates the value of the [i]th element to [x]. {b O(k)}

      @raise Invalid_argument if [i] is negative
      or larger than [length t - 1].
  *)

  val length : 'a t -> int
  (** [length t] returns the number of elements stored in [t]. {b O(1)} *)

  val make : int -> 'a elt -> 'a t
  (** [make n x] returns a new varray of length [n], where all the elements are
      initialized to the value [x].

      @raise Invalid_argument if [n] is negative.
  *)

  val init : int -> (int -> 'a elt) -> 'a t
  (** [init n f] returns a new array of length [n], where the element at
      position [i] is initialized to [f i].

      @raise Invalid_argument if [n] is negative.
  *)

  val empty : unit -> 'a t
  (** [empty ()] is a new varray of length [0]. *)

  val is_empty : 'a t -> bool
  (** [is_empty t] returns true when the varray [t] has length [0]. *)

  (** {1 Copying elements} *)

  val append : 'a t -> 'a t -> 'a t
  (** [append a b] returns a new varray by concatening the elements of [a] with
      those of [b]. *)

  val concat : 'a t list -> 'a t
  (** [concat ts] returns a new varray whose elements are in the same order as
      the values from the list of varrays [ts]. *)

  val sub : 'a t -> int -> int -> 'a t
  (** [sub t i n] returns a new varray of length [n], containing the elements
      from the range [i, i+n-1] of the varray [t].

      @raise Invalid_argument if the range [i, i + n - 1] is invalid for [t].
  *)

  val copy : 'a t -> 'a t
  (** [copy t] returns a new varray containing the same sequence of
      elements as [t]. *)

  val fill : 'a t -> int -> int -> 'a elt -> unit
  (** [fill t pos len x] modifies the varray [t] in place, by setting the value
      [x] in the range [pos, pos + len - 1].

      @raise Invalid_argument if the range [pos, pos + len -1] is invalid.
  *)

  val blit : 'a t -> int -> 'a t -> int -> int -> unit
  (** [blit src src_pos dst dst_pos len] updates the varray [dst] in place, by
      copying the range [src_pos, src_pos + len - 1] of values from [src] into
      the destination range [dst_pos, dst_pos + len - 1] of [dst].

      @raise Invalid_argument if the ranges are invalid for either varray.
  *)

  (** {1 Traversals} *)

  val iter : ('a elt -> unit) -> 'a t -> unit
  (** [iter f t] calls the function [f] on all elements of [t], from left to
      right. *)

  val iteri : (int -> 'a elt -> unit) -> 'a t -> unit
  (** [iteri f t] calls [f i t.(i)] on all the indexes [i] of [t],
      from left to right. *)

  val map : ('a elt -> 'b elt) -> 'a t -> 'b t
  (** [map f t] returns a new varray, whose elements are [f x] for each [x]
      from the varray [t]. *)

  val mapi : (int -> 'a elt -> 'b elt) -> 'a t -> 'b t
  (** [mapi f t] returns a new varray, whose elements are [f i t.(i)] for each
      index [i] of the varray [t]. *)

  val fold_left : ('a -> 'b elt -> 'a) -> 'a -> 'b t -> 'a
  (** [fold_left f z t] computes
      [f (... (f (f z t.(0)) t.(1)) ...) t.(length t - 1)]. *)

  val fold_right : ('a elt -> 'b -> 'b) -> 'a t -> 'b -> 'b
  (** [fold_right f t z] computes
      [f t.(0) (f t.(1) (... (f z t.(length t - 1))))]. *)

  val fold_left_map : ('a -> 'b elt -> 'a * 'c elt) -> 'a -> 'b t -> 'a * 'c t
  (** [fold_left_map] is a combination of [fold_left] and [map],
      that threads an accumulator. *)

  (** {1 Iterators on two varrays} *)

  val iter2 : ('a elt -> 'b elt -> unit) -> 'a t -> 'b t -> unit
  (** [iter2 f xs ys] calls [f xs.(i) ys.(i)] for each index [i] from left to
      right.

      @raise Invalid_argument if the two varrays have different lengths.
  *)

  val map2 : ('a elt -> 'b elt -> 'c elt) -> 'a t -> 'b t -> 'c t
  (** [map2 f xs ys] returns a new varray whose [i]th element is
      [f xs.(i) ys.(i)].

      @raise Invalid_argument if the two varrays have different lengths.
  *)

  (** {1 Predicates} *)

  val for_all : ('a elt -> bool) -> 'a t -> bool
  (** [for_all f t] holds when [f] is satisfied by all the elements of [t]. *)

  val for_all2 : ('a elt -> 'b elt -> bool) -> 'a t -> 'b t -> bool
  (** [for_all2 f xs ys] holds when [f xs.(i) ys.(i)] is satisfied by all
      indexes [i].

      @raise Invalid_argument if the two varrays have different lengths.
  *)

  val exists : ('a elt -> bool) -> 'a t -> bool
  (** [exists f t] holds when [f] is satisfied by one of the elements of
      [t]. *)

  val exists2 : ('a elt -> 'b elt -> bool) -> 'a t -> 'b t -> bool
  (** [exists2 f xs ys] holds when an index [i] exists such that
      [f xs.(i) ys.(i)] is satisfied.

      @raise Invalid_argument if the two varrays have different lengths.
  *)

  val find_opt : ('a elt -> bool) -> 'a t -> 'a elt option
  (** [find_opt f t] returns the leftmost element of [t] that satisfies [f]. *)

  val find_map : ('a elt -> 'b option) -> 'a t -> 'b option
  (** [find_map f t] returns the first result of [f] of the form [Some v]. *)

  val mem : 'a elt -> 'a t -> bool
  (** [mem x t] is true when [x] is equal [( = )] to an element of the varray
      [t]. *)

  val memq : 'a elt -> 'a t -> bool
  (** Same as [mem], but [memq x t] uses physical equality [( == )] for
      comparison. *)

  (** {1 Sort} *)

  val sort : ('a elt -> 'a elt -> int) -> 'a t -> unit
  (** [sort cmp t] updates [t] inplace by sorting the elements in increasing
      order according to [cmp]. *)

  val stable_sort : ('a elt -> 'a elt -> int) -> 'a t -> unit
  (** Same as [sort], but equal elements are kept in the same relative
      order. *)

  val fast_sort : ('a elt -> 'a elt -> int) -> 'a t -> unit
  (** Same as [sort]. *)

  (** {1 Conversions} *)

  type 'a array
  (** The array type used behind the scene as a backend by the varray. *)

  val of_array : 'a array -> 'a t
  (** [of_array arr] returns a new varray containing all the elements of the
      array [arr]. *)

  val to_array : 'a t -> 'a array
  (** [to_array t] returns a new array containing all the elements of the
      varray [t]. *)

  val of_list : 'a elt list -> 'a t
  (** [of_list xs] returns a new varray containing all the elements of the list
      [xs]. *)

  val to_list : 'a t -> 'a elt list
  (** [to_list t] returns a list of all the elements of [t]. *)
end
OCaml

Innovation. Community. Security.