Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
ppx_catchppx_catch is a PPX rewriter to catch exceptions. It acts as a catch-all and transforms expressions into options or results.
catch.oThe 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 _ -> Nonecatch.rThe 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