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