compose(f, g, h, ...) returns a generator function G(data) that yields all (f · g · h · ...)(data).
compose(f, g, h, ...)
G(data)
(f · g · h · ...)(data)
Used to compose multiple transforms into a pipeline.
pipeline
Rest
Generated using TypeDoc
compose(f, g, h, ...)
returns a generator functionG(data)
that yields all(f · g · h · ...)(data)
.Note
Used to compose multiple transforms into a
pipeline
.