Loading [MathJax]/extensions/MathZoom.js
 |
Cytopia
0.3
A city building simulation game
|
Go to the documentation of this file.
19 auto begin() const noexcept {
return std::make_reverse_iterator(std::end(
elem)); }
20 auto end() const noexcept {
return std::make_reverse_iterator(std::begin(
elem)); }
bool startsWith(const std::string &mainStr, const std::string &toMatch)
checks if a string starts with a certain substring
Reverse(T const &r) noexcept
bool endsWith(const std::string &mainStr, const std::string &toMatch)
checks if a string ends with a certain substring
auto ReverseIterator(T const &elem)
Helper function for Reverse template because c++11 does not support template deduction.
auto end() const noexcept
Reverse the given iterator - to be used with for range loops.
void removeSubString(std::string &string, const std::string &stringToRemove)
Erase first occurrence of given substring from main string.
auto begin() const noexcept