MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/TriangleMeshDistance / map

Function map

tests/catch.hpp:3801–3805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3799
3800 template <typename T, typename U, typename Func>
3801 GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<U>&& generator) {
3802 return GeneratorWrapper<T>(
3803 pf::make_unique<MapGenerator<T, U, Func>>(std::forward<Func>(function), std::move(generator))
3804 );
3805 }
3806 template <typename T, typename Func>
3807 GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<T>&& generator) {
3808 return GeneratorWrapper<T>(

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected