-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoString.h
65 lines (60 loc) · 1.74 KB
/
toString.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#pragma once
#include <string>
#include <scl/macros.h>
#include <scl/tools/meta/enable_if.h>
#include <scl/tools/meta/void_t.h>
#include <scl/tools/meta/exists.h>
#include <scl/tools/meta/type_mod.h>
#include <scl/tools/meta/is_same.h>
#include <scl/tools/meta/defines_std_to_string.h>
namespace scl{
namespace utils{
/**
* Class used to convert a type to a std::string
* @tparam T being the type of objects to convert to string
* @warning must define the call operator
* @example std::string operator()(const int& i){ return std::to_string(i); }
*/
template <class T, class=void>
struct ToString;
/**
* Specialization for types convertible to string
* @tparam T being the type of objects to convert to string
*/
template <class T>
struct ToString<T, META::enable_if_t<
META::is_same<T, char>()
|| META::is_same<T, const char*>()
|| META::is_same<T, std::string>()
>>{
std::string operator()(const T& t) const{
return std::string{t};
}
};
/**
* Specialization for types that define std::to_string
* @tparam T being the type of objects to convert to string
*/
template <class T>
struct ToString<T, META::enable_if_t<
META::defines_std_to_string<T>()
>>{
std::string operator()(const T& t) const{
return std::to_string(t);
}
};
/**
* Free function that allows string conversion
* @tparam T the type of object to convert to string
* @returns the string representation of the object
*/
template <class T>
std::string toString(const T& obj){
static_assert(
META::exists<ToString<META::decay_t<T>>>(),
"ToString<T> has not been defined"
);
return ToString<META::decay_t<T>>{}(obj);
}
}
}