private
compose
— function
compose(transforms...)
Compose tranformations. Use |>
as an alias.
Defaults to creating a Sequence
of transformations,
but smarter behavior can be implemented.
For example, MapElem(f) |> MapElem(g) == MapElem(g ∘ f)
.