package ocamlformat-lib

  1. Overview
  2. Docs
Auto-formatter for OCaml code

Install

Dune Dependency

Authors

Maintainers

Sources

ocamlformat-0.26.0.tbz
sha256=031494ab770cef10a8f6aa1cbeb5660e46c3aa6c0cd457b110fec859a75e877d
sha512=35c0131f04c2c8ceb94f0f400e4b56690405ddebb482aec0c9962163001d9fd5b593455df08b508394949f2740ba28f1714dff9e1f17b618bdec62fd26fae281

doc/src/ocamlformat-lib.ocamlformat_stdlib/list_ext.ml.html

Source file list_ext.ml

1
2
3
4
5
6
7
8
9
10
11
12
include Base.List

let partition_map l ~f =
  let fst, snd =
    fold_left l
      ~f:(fun (fst, snd) x ->
        match f x with
        | Base.Either.First x' -> (x' :: fst, snd)
        | Base.Either.Second x' -> (fst, x' :: snd))
      ~init:([], [])
  in
  (rev fst, rev snd)
OCaml

Innovation. Community. Security.