package ppx_pipebang

  1. Overview
  2. Docs
A ppx rewriter that inlines reverse application operators `|>` and `|!`

Install

Dune Dependency

Authors

Maintainers

Sources

ppx_pipebang-v0.15.0.tar.gz
sha256=1e56554d86ab61830492cc922b02dab0110cdd7584e90ffef4832dc6335620a8

Description

Part of the Jane Street's PPX rewriters collection.

Published: 21 Mar 2022

README

ppx_pipebang

A ppx rewriter that inlines reverse application operators |> and |!.

ppx_pipebang rewrites x |> f and x |! f as f x, regardless of whether |> and |! have been redefined.

Do not use |! in new code, it is there only for backwards compatibility.

This inlining is mostly done for historical reasons but it also allows f to have optional arguments (like Option.value_exn).

Dependencies (3)

  1. ppxlib >= "0.23.0"
  2. dune >= "2.0.0"
  3. ocaml >= "4.08.0"

Dev Dependencies

None

Used by (1)

  1. ppx_jane = "v0.15.0"

Conflicts

None