Program Listing for File identity.hpp
↰ Return to documentation for file (rcppsw/mpl/identity.hpp)
#pragma once
/*******************************************************************************
 * Includes
 ******************************************************************************/
#include "rcppsw/rcppsw.hpp"
/*******************************************************************************
 * Namespaces/Decls
 ******************************************************************************/
namespace rcppsw::mpl {
/*******************************************************************************
 * Struct Definitions
 ******************************************************************************/
template <typename T>
struct identity {
  using type = T;
};
} /* namespace rcppsw::mpl */