tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
declval.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_TYPE_TRAITS_DECLVAL_HPP
5#define TETL_TYPE_TRAITS_DECLVAL_HPP
6
7#include <etl/_type_traits/add_rvalue_reference.hpp>
8
9namespace etl {
10
11template <typename T>
12auto declval() noexcept -> add_rvalue_reference_t<T>;
13
14} // namespace etl
15
16#endif // TETL_TYPE_TRAITS_DECLVAL_HPP
Definition adjacent_find.hpp:9
auto declval() noexcept -> add_rvalue_reference_t< T >