49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
/// \file
|
|
// Range v3 library
|
|
//
|
|
// Copyright Eric Niebler 2014
|
|
//
|
|
// Use, modification and distribution is subject to the
|
|
// Boost Software License, Version 1.0. (See accompanying
|
|
// file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// Project home: https://github.com/ericniebler/range-v3
|
|
//
|
|
|
|
#ifndef RANGES_V3_AT_HPP
|
|
#define RANGES_V3_AT_HPP
|
|
|
|
#include <range/v3/range_fwd.hpp>
|
|
#include <range/v3/begin_end.hpp>
|
|
#include <range/v3/range_traits.hpp>
|
|
#include <range/v3/range_concepts.hpp>
|
|
#include <range/v3/utility/iterator.hpp>
|
|
#include <range/v3/utility/static_const.hpp>
|
|
|
|
namespace ranges
|
|
{
|
|
inline namespace v3
|
|
{
|
|
/// \ingroup group-core
|
|
struct at_fn
|
|
{
|
|
/// \return `begin(rng)[n]`
|
|
template<typename Rng,
|
|
CONCEPT_REQUIRES_(RandomAccessRange<Rng>())>
|
|
RANGES_CXX14_CONSTEXPR
|
|
auto operator()(Rng &&rng, range_difference_type_t<Rng> n) const ->
|
|
decltype(begin(rng)[n])
|
|
{
|
|
return begin(rng)[n];
|
|
}
|
|
};
|
|
|
|
/// \ingroup group-core
|
|
/// \sa `at_fn`
|
|
RANGES_INLINE_VARIABLE(at_fn, at)
|
|
}
|
|
}
|
|
|
|
#endif
|