package server-reason-react

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file Belt_MutableStack.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
include (
  struct
    type 'a t = { mutable root : 'a opt_cell }
    and 'a opt_cell = 'a cell Js.null
    and 'a cell = { head : 'a; tail : 'a opt_cell }

    let t : root:'a opt_cell -> 'a t = fun ~root -> { root }
    let rootSet : 'a t -> 'a opt_cell -> unit = fun o v -> o.root <- v
    let root : 'a t -> 'a opt_cell = fun o -> o.root

    let cell : head:'a -> tail:'a opt_cell -> 'a cell =
     fun ~head ~tail -> { head; tail }

    let head : 'a cell -> 'a = fun o -> o.head
    let tail : 'a cell -> 'a opt_cell = fun o -> o.tail
  end :
    sig
      type 'a t
      and 'a opt_cell = 'a cell Js.null
      and 'a cell

      val t : root:'a opt_cell -> 'a t
      val rootSet : 'a t -> 'a opt_cell -> unit
      val root : 'a t -> 'a opt_cell
      val cell : head:'a -> tail:'a opt_cell -> 'a cell
      val head : 'a cell -> 'a
      val tail : 'a cell -> 'a opt_cell
    end)

let make () = t ~root:Js.null
let clear s = rootSet s Js.null
let copy (s : _ t) : _ t = t ~root:(root s)
let push s x = rootSet s (Js.Null.return @@ cell ~head:x ~tail:(root s))

let topUndefined (s : 'a t) =
  match Js.nullToOption (root s) with
  | None -> Js.undefined
  | Some x -> Js.Undefined.return (head x)

let top s =
  match Js.nullToOption (root s) with None -> None | Some x -> Some (head x)

let isEmpty s = root s = Js.null

let popUndefined s =
  match Js.nullToOption (root s) with
  | None -> Js.undefined
  | Some x ->
      rootSet s (tail x);
      Js.Undefined.return (head x)

let pop s =
  match Js.nullToOption (root s) with
  | None -> None
  | Some x ->
      rootSet s (tail x);
      Some (head x)

let rec lengthAux (x : _ cell) acc =
  match Js.nullToOption (tail x) with
  | None -> acc + 1
  | Some x -> lengthAux x (acc + 1)

let size s =
  match Js.nullToOption (root s) with None -> 0 | Some x -> lengthAux x 0

let rec iterAux (s : _ opt_cell) f =
  match Js.nullToOption s with
  | None -> ()
  | Some x ->
      f (head x);
      iterAux (tail x) f

let forEachU s f = iterAux (root s) f
let forEach s f = forEachU s (fun x -> f x)

let dynamicPopIterU s f =
  let cursor = ref (root s) in
  while !cursor != Js.null do
    let v = Js.Null.getUnsafe !cursor in
    rootSet s (tail v);
    f (head v);
    cursor := root s
  done

let dynamicPopIter s f = dynamicPopIterU s (fun x -> f x)
OCaml

Innovation. Community. Security.