package ppx_deriving_yojson

  1. Overview
  2. Docs
JSON codec generator for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

ppx_deriving_yojson-3.8.0.tbz
sha256=fdcbc548be418f061828664a1012ccba6cfba6a35578ea9cbf75fed498e0c2a1
sha512=2ce0aed3b1e7b444d368a4f7142da07aff328effcc017435ccd9d45cb518659c69a48b6c8699c800bdee02d65fcea9227f863b2340f7a4c1a5b579b8c5ba2a19

doc/src/ppx_deriving_yojson.runtime/ppx_deriving_yojson_runtime.ml.html

Source file ppx_deriving_yojson_runtime.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
include Ppx_deriving_runtime

let (>>=) x f =
  match x with Ok x -> f x | (Error _) as x -> x

let (>|=) x f =
  x >>= fun x -> Ok (f x)

let rec map_bind f acc xs =
  match xs with
  | x :: xs ->
    (* equivalent to [f x >>= fun x -> map_bind f (x :: acc) xs],
       but do not use [(>>=)] to keep [map_bind] tail-recursive
       under js-of-ocaml *)
    (match f x with
     | ((Error _) as err) -> err
     | Ok x -> map_bind f (x :: acc) xs)
  | [] -> Ok (List.rev acc)

type 'a error_or = ('a, string) result

(** [safe_map f l] returns the same value as [List.map f l], but
    computes it tail-recursively so that large list lengths don't
    cause a stack overflow *)
let safe_map f l = List.rev (List.rev_map f l)
OCaml

Innovation. Community. Security.