4#ifndef TETL_TYPE_TRAITS_IS_LVALUE_REFERENCE_HPP
5#define TETL_TYPE_TRAITS_IS_LVALUE_REFERENCE_HPP
7#include <etl/_type_traits/bool_constant.hpp>
15struct is_lvalue_reference : false_type { };
18struct is_lvalue_reference<T&> : true_type { };
Definition adjacent_find.hpp:9
constexpr bool is_lvalue_reference_v
Definition is_lvalue_reference.hpp:21