Sha256: 380915c5278de0ffcdc405d988e0b1db6c8246a1cf7cf832530efe3e33bcfe5d

Contents?: true

Size: 325 Bytes

Versions: 98

Compression:

Stored size: 325 Bytes

Contents

(* Binary tree with leaves car­rying an integer. *)
type tree = Leaf of int | Node of tree * tree

let rec exists_leaf test tree =
  match tree with
  | Leaf v -> test v
  | Node (left, right) ->
      exists_leaf test left
      || exists_leaf test right

let has_even_leaf tree =
  exists_leaf (fun n -> n mod 2 = 0) tree

Version data entries

98 entries across 96 versions & 9 rubygems

Version Path
rouge-3.8.0 lib/rouge/demos/ocaml
rouge-3.7.0 lib/rouge/demos/ocaml
rouge-3.6.0 lib/rouge/demos/ocaml
rouge-3.5.1 lib/rouge/demos/ocaml
rouge-3.5.0 lib/rouge/demos/ocaml
rouge-3.4.1 lib/rouge/demos/ocaml
rouge-3.4.0 lib/rouge/demos/ocaml
rouge-alda-3.3.0 lib/rouge/demos/ocaml
rouge-3.3.0 lib/rouge/demos/ocaml
rouge-3.2.1 lib/rouge/demos/ocaml
rouge-3.2.0 lib/rouge/demos/ocaml
rouge-lines-3.2.3 lib/rouge-lines/demos/ocaml
rouge_ecl-1.0.0 lib/rouge/demos/ocaml
rouge_ecl-0.0.1 lib/rouge/demos/ocaml
rouge-3.1.1 lib/rouge/demos/ocaml
rouge-3.1.0 lib/rouge/demos/ocaml
rouge-3.0.0 lib/rouge/demos/ocaml
rouge-2.2.1 lib/rouge/demos/ocaml
rouge-2.2.0 lib/rouge/demos/ocaml
rougegal-2.1.2 lib/rouge/demos/ocaml