package ppx_optional
Pattern matching on flat options
Install
Dune Dependency
Authors
Maintainers
Sources
ppx_optional-v0.10.0.tar.gz
sha256=9eb7f7f859a1b237c4ecea290bb077bdfe38eb519f0d15a073909cdaa04abfde
md5=ab4ec740974fe5019d049fb190385105
README.md.html
ppx_optional - match statements for zero-alloc options
A ppx rewriter that rewrites simple match statements with an if then else expression.
Syntax
ppx_optional
rewrites the extension match%optional
in expressions. It requires that a module Optional_syntax
is in scope, and that it has is_none
and unchecked_value
values.
For instance:
match%optional e with
| None -> none_expression
| Some x -> some_expression
becomes:
if Optional_syntax.is_none e then begin
none_expression
end else begin
let x = Optional_syntax.unchecked_value e in
some_expression
end
Usage
This is normally used to safely access an optional value while avoiding allocation for immediate values (e.g. Immediate.{Char,Bool,Int}.Option
, Fixed.Option
, Price.Fixed.Option
, etc...).
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>