remove_all_extents — Klasa
Tworzy typ inny niż tablica z typu tablicy.
template<class T>
struct remove_all_extents;
template<class T>
using remove_all_extents_t = typename remove_all_extents<T>::type;
Parametry
- T
Typ do modyfikacji.
Uwagi
Wystąpienie remove_all_extents<T> ma zmodyfikowany typ, który jest typem elementu typu tablicy T z usuniętymi wszystkimi wymiarami tablicy, lub T, jeśli T nie jest typem tablicy.
Przykład
#include <type_traits>
#include <iostream>
int main()
{
std::cout << "remove_all_extents<int> == "
<< typeid(std::remove_all_extents_t<int>).name()
<< std::endl;
std::cout << "remove_all_extents_t<int[5]> == "
<< typeid(std::remove_all_extents_t<int[5]>).name()
<< std::endl;
std::cout << "remove_all_extents_t<int[5][10]> == "
<< typeid(std::remove_all_extents_t<int[5][10]>).name()
<< std::endl;
return (0);
}
Wymagania
Nagłówek: <type_traits>
Przestrzeń nazw: std