OpenKalman
Public Types | List of all members
OpenKalman::internal::remove_rvalue_reference< T > Struct Template Reference

If T is an rvalue reference, remove the reference. More...

#include <global-definitions.hpp>

Public Types

using type = std::conditional_t< std::is_rvalue_reference_v< T >, std::remove_reference_t< T >, T >
 

Detailed Description

template<typename T>
struct OpenKalman::internal::remove_rvalue_reference< T >

If T is an rvalue reference, remove the reference.

Otherwise, the result is T.


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