libstdc++
range_access.h File Reference

Go to the source code of this file.

Namespaces

 std
 

Functions

template<typename _Container >
constexpr auto std::begin (_Container &__cont) -> decltype(__cont.begin())
 
template<typename _Tp , size_t _Nm>
constexpr _Tp * std::begin (_Tp(&__arr)[_Nm]) noexcept
 
template<typename _Container >
constexpr auto std::begin (const _Container &__cont) -> decltype(__cont.begin())
 
template<class _Tp >
const _Tp * std::begin (const valarray< _Tp > &__va) noexcept
 
template<class _Tp >
_Tp * std::begin (valarray< _Tp > &__va) noexcept
 
template<typename _Container >
constexpr auto std::cbegin (const _Container &__cont) noexcept(noexcept(std::begin(__cont))) -> decltype(std::begin(__cont))
 
template<typename _Container >
constexpr auto std::cend (const _Container &__cont) noexcept(noexcept(std::end(__cont))) -> decltype(std::end(__cont))
 
template<typename _Container >
constexpr auto std::crbegin (const _Container &__cont) -> decltype(std::rbegin(__cont))
 
template<typename _Container >
constexpr auto std::crend (const _Container &__cont) -> decltype(std::rend(__cont))
 
template<typename _Container >
constexpr auto std::end (_Container &__cont) -> decltype(__cont.end())
 
template<typename _Tp , size_t _Nm>
constexpr _Tp * std::end (_Tp(&__arr)[_Nm]) noexcept
 
template<typename _Container >
constexpr auto std::end (const _Container &__cont) -> decltype(__cont.end())
 
template<class _Tp >
const _Tp * std::end (const valarray< _Tp > &__va) noexcept
 
template<class _Tp >
_Tp * std::end (valarray< _Tp > &__va) noexcept
 
template<typename _Container >
constexpr auto std::rbegin (_Container &__cont) -> decltype(__cont.rbegin())
 
template<typename _Tp , size_t _Nm>
constexpr reverse_iterator< _Tp * > std::rbegin (_Tp(&__arr)[_Nm]) noexcept
 
template<typename _Container >
constexpr auto std::rbegin (const _Container &__cont) -> decltype(__cont.rbegin())
 
template<typename _Tp >
constexpr reverse_iterator< const _Tp * > std::rbegin (initializer_list< _Tp > __il) noexcept
 
template<typename _Container >
constexpr auto std::rend (_Container &__cont) -> decltype(__cont.rend())
 
template<typename _Tp , size_t _Nm>
constexpr reverse_iterator< _Tp * > std::rend (_Tp(&__arr)[_Nm]) noexcept
 
template<typename _Container >
constexpr auto std::rend (const _Container &__cont) -> decltype(__cont.rend())
 
template<typename _Tp >
constexpr reverse_iterator< const _Tp * > std::rend (initializer_list< _Tp > __il) noexcept
 

Detailed Description

This is an internal header file, included by other library headers. Do not attempt to use it directly. Instead, include <iterator>.

Definition in file range_access.h.