Support Class Library
A set of tools providing classes and utility
include
scl
tools
meta
is_same.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <type_traits>
4
5
namespace
scl
{
6
namespace
tools{
7
namespace
meta{
11
template
<
class
Lhs,
class
Rhs>
12
inline
constexpr
bool
is_same
(){
13
return
std::is_same<Lhs, Rhs>::value;
14
}
15
}
16
}
17
}
scl
Global namespace of the SCL.
Definition:
alias.hpp:3
scl::tools::meta::is_same
constexpr bool is_same()
An handy function for the result of std::is_same.
Definition:
is_same.h:12
Generated by
1.8.13