Horizon
Namespaces | Typedefs | Functions | Variables
merge.hpp File Reference
#include <tuple>
#include <range/v3/range_fwd.hpp>
#include <range/v3/algorithm/copy.hpp>
#include <range/v3/algorithm/result_types.hpp>
#include <range/v3/functional/comparisons.hpp>
#include <range/v3/functional/identity.hpp>
#include <range/v3/functional/invoke.hpp>
#include <range/v3/iterator/traits.hpp>
#include <range/v3/range/access.hpp>
#include <range/v3/range/concepts.hpp>
#include <range/v3/range/dangling.hpp>
#include <range/v3/range/traits.hpp>
#include <range/v3/utility/static_const.hpp>
#include <range/v3/detail/prologue.hpp>
#include <range/v3/detail/epilogue.hpp>

Go to the source code of this file.

Namespaces

 ranges::cpp20
 

Typedefs

template<typename I0 , typename I1 , typename O >
using ranges::merge_result = detail::in1_in2_out_result< I0, I1, O >
 

Functions

 ranges::template (typename I0, typename S0, typename I1, typename S1, typename O, typename C=less, typename P0=identity, typename P1=identity)(requires sentinel_for< S0
 function template merge
 
I0 AND sentinel_for< S1, I1 > AND constexpr mergeable< I0, I1, O, C, P0, P1 > merge_result< I0, I1, O > RANGES_FUNC() ranges::merge (I0 begin0, S0 end0, I1 begin1, S1 end1, O out, C pred=C{}, P0 proj0=P0{}, P1 proj1=P1{})
 
 ranges::template (typename Rng0, typename Rng1, typename O, typename C=less, typename P0=identity, typename P1=identity)(requires range< Rng0 > AND range< Rng1 > AND mergeable< iterator_t< Rng0 >
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
constexpr P1 merge_result< borrowed_iterator_t< Rng0 >, borrowed_iterator_t< Rng1 >, O > RANGES_FUNC() ranges::merge (Rng0 &&rng0, Rng1 &&rng1, O out, C pred=C{}, P0 proj0=P0{}, P1 proj1=P1{})
 

Variables

 ranges::O