Logo ROOT   6.12/07
Reference Guide
Classes | Namespaces | Macros | Typedefs | Functions | Variables
rhysd_array_view.hxx File Reference
#include <cstddef>
#include <iterator>
#include <array>
#include <vector>
#include <stdexcept>
#include <memory>
#include <type_traits>
#include <initializer_list>
Include dependency graph for rhysd_array_view.hxx:
This graph shows which files directly or indirectly include this file:

Classes

class  std::__ROOT::array_view< T >
 
struct  std::__ROOT::check_bound_t
 
struct  std::__ROOT::detail::indices< Indices >
 
struct  std::__ROOT::detail::is_array_class< Array >
 
struct  std::__ROOT::detail::is_array_class< std::array< T, N > >
 
struct  std::__ROOT::detail::is_array_class< std::initializer_list< T > >
 
struct  std::__ROOT::detail::is_array_class< std::vector< T > >
 
struct  std::__ROOT::detail::make_indices_< First, Last, Step >
 
struct  std::__ROOT::detail::make_indices_impl< First, Step, N, class >
 
struct  std::__ROOT::detail::make_indices_impl< First, Step, N, typename std::enable_if<(N==0)>::type >
 
struct  std::__ROOT::detail::make_indices_impl< First, Step, N, typename std::enable_if<(N==1)>::type >
 
struct  std::__ROOT::detail::make_indices_next< IndicesType, Next >
 
struct  std::__ROOT::detail::make_indices_next2< IndicesType, Next, Tail >
 
struct  std::__ROOT::detail::make_indices_next2< indices< Indices... >, Next, Tail >
 
struct  std::__ROOT::detail::make_indices_next< indices< Indices... >, Next >
 
struct  std::__ROOT::detail::make_indices_impl< First, Step, N, class >::type >
 
struct  std::__ROOT::detail::make_indices_impl< First, Step, N, class >::type >
 

Namespaces

 std::__ROOT
 
 std::__ROOT::detail
 

Macros

#define R__CONSTEXPR_IF_CXX14
 

Typedefs

template<size_t Start, size_t Last, size_t Step = 1>
using std::__ROOT::detail::make_indices = typename make_indices_< Start, Last, Step >::type
 

Functions

template<class Array , class = typename std::enable_if< detail::is_array_class<Array>::value >::type>
constexpr auto std::__ROOT::make_view (Array const &a) -> array_view< typename Array::value_type >
 
template<class T , size_t N>
constexpr array_view< T > std::__ROOT::make_view (T const (&a)[N])
 
template<class T >
constexpr array_view< T > std::__ROOT::make_view (T const *p, typename array_view< T >::size_type const n)
 
template<class InputIterator , class Result = array_view<typename std::iterator_traits<InputIterator>::value_type>>
constexpr Result std::__ROOT::make_view (InputIterator begin, InputIterator end)
 
template<class T >
constexpr array_view< T > std::__ROOT::make_view (std::initializer_list< T > const &l)
 
template<class T , class Array , class = typename std::enable_if< is_array<Array>::value >::type>
constexpr bool std::__ROOT::operator!= (array_view< T > const &lhs, Array const &rhs)
 
template<class Array , class T , class = typename std::enable_if< is_array<Array>::value, Array >::type>
constexpr bool std::__ROOT::operator!= (Array const &lhs, array_view< T > const &rhs)
 
template<class T1 , class T2 >
constexpr bool std::__ROOT::operator== (array_view< T1 > const &lhs, array_view< T2 > const &rhs)
 
template<class T , class Array , class = typename std::enable_if< detail::is_array_class<Array>::value >::type>
constexpr bool std::__ROOT::operator== (array_view< T > const &lhs, Array const &rhs)
 
template<class T1 , class T2 , size_t N>
constexpr bool std::__ROOT::operator== (array_view< T1 > const &lhs, T2 const (&rhs)[N])
 
template<class Array , class T , class = typename std::enable_if< is_array<Array>::value >::type>
constexpr bool std::__ROOT::operator== (Array const &lhs, array_view< T > const &rhs)
 
template<class ArrayL , class ArrayR >
R__CONSTEXPR_IF_CXX14 bool std::__ROOT::detail::operator_equal_impl (ArrayL const &lhs, size_t const lhs_size, ArrayR const &rhs, size_t const rhs_size)
 

Variables

static constexpr check_bound_t std::__ROOT::check_bound {}
 

Macro Definition Documentation

◆ R__CONSTEXPR_IF_CXX14

#define R__CONSTEXPR_IF_CXX14

Definition at line 21 of file rhysd_array_view.hxx.