MCPcopy Create free account
hub / github.com/Dobiasd/FunctionalPlus / compose

Function compose

include/fplus/composition.hpp:155–158  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

153// compose(f, g, h)(x, y, z) = h(g(f(x, y, z)))
154template <typename... Fs>
155auto compose(Fs&&... fs)
156{
157 return internal::compose_impl<Fs...>(std::forward<Fs>(fs)...);
158}
159
160// API search type: logical_not : (a -> Bool) -> (a -> Bool)
161// Converts a predicate p into a new one,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected