tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
remove_cv.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_TYPE_TRAITS_REMOVE_CV_HPP
4#define TETL_TYPE_TRAITS_REMOVE_CV_HPP
5
8
9namespace etl {
10
16template <typename T>
20
21template <typename T>
23
24} // namespace etl
25
26#endif // TETL_TYPE_TRAITS_REMOVE_CV_HPP
Definition adjacent_find.hpp:8
remove_const_t< remove_volatile_t< T > > remove_cv_t
Definition remove_cv.hpp:22
typename remove_const< T >::type remove_const_t
Definition remove_const.hpp:23
Provides the member typedef type which is the same as T, except that its topmost cv-qualifiers are re...
Definition remove_cv.hpp:17
remove_const_t< remove_volatile_t< T > > type
Definition remove_cv.hpp:18