Horizon
Loading...
Searching...
No Matches
Namespaces | Typedefs | Functions | Variables
transform.hpp File Reference
#include <utility>
#include <meta/meta.hpp>
#include <range/v3/range_fwd.hpp>
#include <range/v3/algorithm/result_types.hpp>
#include <range/v3/functional/identity.hpp>
#include <range/v3/functional/invoke.hpp>
#include <range/v3/iterator/concepts.hpp>
#include <range/v3/iterator/traits.hpp>
#include <range/v3/iterator/unreachable_sentinel.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

namespace  ranges::cpp20
 

Typedefs

template<typename I , typename O >
using ranges::unary_transform_result = detail::in_out_result< I, O >
 
template<typename I1 , typename I2 , typename O >
using ranges::binary_transform_result = detail::in1_in2_out_result< I1, I2, O >
 

Functions

 ranges::template (typename I, typename S, typename O, typename F, typename P=identity)(AND sentinel_for< S
 function template copy_if
 
I AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O, indirect_result_t< F &, projected< I, P > > > constexpr unary_transform_result< I, O > RANGES_FUNC() ranges::transform (I first, S last, O out, F fun, P proj=P{})
 
 ranges::template (typename Rng, typename O, typename F, typename P=identity)(AND weakly_incrementable< O > AND indirect_unary_predicate< F
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
indirect_result_t< F &, projected< iterator_t< Rng >, P > > constexpr unary_transform_result< borrowed_iterator_t< Rng >, O > RANGES_FUNC() ranges::transform (Rng &&rng, O out, F fun, P proj=P{})
 
 ranges::template (typename I0, typename S0, typename I1, typename S1, typename O, typename F, typename P0=identity, typename P1=identity)(AND sentinel_for< S0
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
I0 AND input_iterator< I1 > AND sentinel_for< S1, I1 > AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O, indirect_result_t< F &, projected< I0, P0 >, projected< I1, P1 > > > constexpr binary_transform_result< I0, I1, O > RANGES_FUNC() ranges::transform (I0 begin0, S0 end0, I1 begin1, S1 end1, O out, F fun, P0 proj0=P0{}, P1 proj1=P1{})
 
 ranges::template (typename Rng0, typename Rng1, typename O, typename F, typename P0=identity, typename P1=identity)(AND input_range< Rng1 > AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
indirect_result_t< F &, projected< iterator_t< Rng0 >, P0 >, projected< iterator_t< Rng1 >, P1 > > constexpr binary_transform_result< borrowed_iterator_t< Rng0 >, borrowed_iterator_t< Rng1 >, O > RANGES_FUNC() ranges::transform (Rng0 &&rng0, Rng1 &&rng1, O out, F fun, P0 proj0=P0{}, P1 proj1=P1{})
 
 ranges::template (typename I0, typename S0, typename I1, typename O, typename F, typename P0=identity, typename P1=identity)(AND sentinel_for< S0
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
I0 AND input_iterator< I1 > AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O, indirect_result_t< F &, projected< I0, P0 >, projected< I1, P1 > > > ranges::RANGES_DEPRECATED ("Use the variant of ranges::transform that takes an upper bound " "for both input ranges") binary_transform_result< I0
 
I0 AND input_iterator< I1 > AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O, indirect_result_t< F &, projected< I0, P0 >, projected< I1, P1 > > > O RANGES_FUNC() ranges::transform (I0 begin0, S0 end0, I1 begin1, O out, F fun, P0 proj0=P0{}, P1 proj1=P1{})
 
 ranges::template (typename Rng0, typename I1Ref, typename O, typename F, typename P0=identity, typename P1=identity)(AND input_iterator< uncvref_t< I1Ref > > AND weakly_incrementable< O > AND copy_constructible< F > AND indirectly_writable< O
 This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
 
indirect_result_t< F &, projected< iterator_t< Rng0 >, P0 >, projected< uncvref_t< I1Ref >, P1 > > O RANGES_FUNC() ranges::transform (Rng0 &&rng0, I1Ref &&begin1, O out, F fun, P0 proj0=P0{}, P1 proj1=P1{})
 

Variables

indirect_result_t< F &, projected< iterator_t< Rng0 >, P0 >, projected< uncvref_t< I1Ref >, P1 > > ranges::uncvref_t< I1Ref >