MCPcopy Create free account
hub / github.com/ada-url/ada / transform

Method transform

include/ada/expected.h:1438–1440  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1436 !defined(TL_EXPECTED_GCC54) && !defined(TL_EXPECTED_GCC55)
1437 template <class F>
1438 TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) & {
1439 return expected_map_impl(*this, std::forward<F>(f));
1440 }
1441 template <class F>
1442 TL_EXPECTED_11_CONSTEXPR auto transform(F &&f) && {
1443 return expected_map_impl(std::move(*this), std::forward<F>(f));

Callers

nothing calls this directly

Calls 1

expected_map_implFunction · 0.85

Tested by

no test coverage detected