This repository was archived by the owner on Apr 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring.hpp
155 lines (128 loc) · 2.79 KB
/
string.hpp
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
#pragma once
#include <cstddef>
#include <string>
#include <string_view>
namespace cexpr
{
template <typename CharT, std::size_t N>
class string
{
public:
using char_type = CharT;
constexpr string() : size_{ 0 }, string_{ 0 } {}
constexpr string(const CharT(&s)[N]) : string{}
{
for(; s[size_]; ++size_)
{
string_[size_] = s[size_];
}
}
constexpr string(cexpr::string<CharT, N> const& s) : string{}
{
for (; s[size_]; ++size_)
{
string_[size_] = s[size_];
}
}
constexpr string(std::basic_string_view<CharT> const& s) : string{}
{
for (; size_ < s.length(); ++size_)
{
string_[size_] = s[size_];
}
}
constexpr void fill(const CharT* begin, const CharT* end)
{
fill_from(begin, end, begin());
}
constexpr void fill_from(const CharT* begin, const CharT* end, CharT* start)
{
if (end - begin < N)
{
for (auto curr{ start }; begin != end; ++begin, ++curr)
{
*curr = *begin;
}
}
}
constexpr std::size_t capacity() const noexcept
{
return N - 1;
}
constexpr std::size_t size() const noexcept
{
return size_;
}
constexpr CharT* begin() noexcept
{
return string_;
}
constexpr const CharT* cbegin() const noexcept
{
return string_;
}
constexpr CharT* end() noexcept
{
return &string_[size_];
}
constexpr const CharT* cend() const noexcept
{
return &string_[size_];
}
constexpr CharT& operator[](std::size_t i) noexcept
{
return string_[i];
}
constexpr CharT const& operator[](std::size_t i) const noexcept
{
return string_[i];
}
template <typename OtherCharT, std::size_t OtherN>
constexpr bool operator==(string<OtherCharT, OtherN> const& other) const
{
if constexpr (N != OtherN)
{
return false;
}
std::size_t i{};
for (; i < N && string_[i] == other[i]; ++i);
return i == N;
}
template <typename OtherCharT, std::size_t OtherN>
constexpr bool operator==(const OtherCharT(&other)[OtherN]) const
{
if constexpr (N != OtherN)
{
return false;
}
std::size_t i{};
for (; i < N && string_[i] == other[i]; ++i);
return i == N;
}
template <typename OtherCharT>
bool operator==(std::basic_string<OtherCharT> const& other) const
{
return other == string_;
}
template <typename OtherCharT>
bool operator!=(std::basic_string<OtherCharT> const& other) const
{
return !(other == string_);
}
private:
CharT string_[N];
std::size_t size_;
};
template <typename CharT, std::size_t N>
string(const CharT[N]) -> string<CharT, N>;
template <typename CharT, std::size_t N>
bool operator==(std::basic_string<CharT> const& str, string<CharT, N> const& cstr)
{
return cstr == str;
}
template <typename CharT, std::size_t N>
bool operator!=(std::basic_string<CharT> const& str, string<CharT, N> const& cstr)
{
return cstr != str;
}
} // namespace cexpr