package ppx_catch

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

ppx_catch

ppx_catch is a PPX rewriter to catch exceptions. It acts as a catch-all and transforms expressions into options or results.

Usage

catch.o

The catch.o extension wraps an expression into an option.

[%catch.o
  let i = Option.get None in
  i + 1
]

gives None, while

[%catch.o
  let i = Option.get (Some 2)
  in i + 1
]

gives Some 3. [%catch.o expression] behaves exactly like:

try Some expression with _ -> None

catch.r

The catch.r extension wraps an expression into a result.

[%catch.r Some 10;
  let i = Option.get None in
  i + 1
]

gives Error (Some 10), while

[%catch.r Some 10;
  let i = Option.get (Some 2)
  in i + 1
]

gives Ok 3. [%catch.r err; expression] behaves exactly like:

try Ok expression with _ -> err
OCaml

Innovation. Community. Security.