MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / __reverse

Function __reverse

system/lib/libcxx/include/__algorithm/reverse.h:47–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45
46template <class _AlgPolicy, class _BidirectionalIterator, class _Sentinel>
47_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __reverse(_BidirectionalIterator __first, _Sentinel __last) {
48 using _IterCategory = typename _IterOps<_AlgPolicy>::template __iterator_category<_BidirectionalIterator>;
49 std::__reverse_impl<_AlgPolicy>(std::move(__first), std::move(__last), _IterCategory());
50}
51
52template <class _BidirectionalIterator>
53inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void

Callers

nothing calls this directly

Calls 1

moveFunction · 0.85

Tested by

no test coverage detected