MCPcopy Create free account
hub / github.com/JDAI-CV/DNNLibrary / map

Method map

include/common/expected.hpp:1300–1302  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1298#if defined(TL_EXPECTED_CXX14) && !defined(TL_EXPECTED_GCC49) && \
1299 !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
1300 template <class F> TL_EXPECTED_11_CONSTEXPR auto map(F &&f) & {
1301 return expected_map_impl(*this, std::forward<F>(f));
1302 }
1303 template <class F> TL_EXPECTED_11_CONSTEXPR auto map(F &&f) && {
1304 return expected_map_impl(std::move(*this), std::forward<F>(f));
1305 }

Callers

nothing calls this directly

Calls 1

expected_map_implFunction · 0.85

Tested by

no test coverage detected