package ppx_deriving_madcast

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

Source file extList.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

let foldi_left f x l =
  snd (
      List.fold_left
        (fun (i, x) e ->
          (i+1, f i x e))
        (0, x) l
    )

let foldi_right f l x =
  snd (
      List.fold_right
        (fun e (i, x) ->
          (i-1, f i e x))
        l
        (List.length l - 1, x)
    )

let rec bd = function
  | [] -> failwith "bd"
  | [_] -> []
  | h ::q -> h :: bd q

let rec ft = function
  | [] -> failwith "ft"
  | [e] -> e
  | _ :: q -> ft q
OCaml

Innovation. Community. Security.