FastArduino v1.10
C++ library to build fast but small Arduino/AVR projects
Loading...
Searching...
No Matches
types_traits::remove_reference< T > Struct Template Reference

Remove a reference from the given type. More...

#include <fastarduino/types_traits.h>

Public Types

using type = T
 The type T without reference. More...
 

Detailed Description

template<typename T>
struct types_traits::remove_reference< T >

Remove a reference from the given type.

If T is a reference type (e.g. int& or int&&), then "remove_reference<T>::type" will be the type referred to by T (e.g. int).

Definition at line 111 of file types_traits.h.

Member Typedef Documentation

◆ type

template<typename T >
using types_traits::remove_reference< T >::type = T

The type T without reference.

Definition at line 114 of file types_traits.h.


The documentation for this struct was generated from the following file: