4#ifndef TETL_TYPE_TRAITS_IS_REFERENCE_HPP 
    5#define TETL_TYPE_TRAITS_IS_REFERENCE_HPP 
    7#include <etl/_type_traits/bool_constant.hpp> 
   16struct is_reference : false_type { };
 
   19struct is_reference<T&> : true_type { };
 
   22struct is_reference<T&&> : true_type { };
 
Definition adjacent_find.hpp:9
 
constexpr bool is_reference_v
Definition is_reference.hpp:25