BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
string.h
Go to the documentation of this file.
1 /*
2  * string_extensions.h
3  *
4  * Created on: Nov 11, 2019
5  * Author: joseph
6  */
7 
8 #ifndef BLACKCAT_TENSORS_STRING_EXTENSIONS_H_
9 #define BLACKCAT_TENSORS_STRING_EXTENSIONS_H_
10 
11 #include <string>
12 #include <vector>
13 #include <algorithm>
14 
15 namespace bc {
16 
21 struct string:
22  std::string {
23 
24  using std::string::string;
25  string() = default;
26  string(const string&) = default;
27  string(string&&) = default;
28  string& operator =(const string&) = default;
29  string& operator =(string&&) = default;
30 
31  string(std::string s):
32  std::string(s) {}
33 
34  int count(char value) const {
35  return std::count(this->begin(), this->end(), value);
36  }
37 
38  bool startswith(const std::string& str) const {
39  return this->size() >= str.size() &&
40  this->substr(0, str.size()) == str;
41  }
42 
43  bool endswith(const bc::string& str) const {
44  if (this->size() < str.size())
45  return false;
46 
47  auto start_idx = this->size() - str.size();
48  return this->substr(start_idx, str.size()) == str;
49  }
50 
51  bool startswith(char c) const {
52  return this->size() && (*this)[0] == c;
53  }
54 
55  bool endswith(char c) const {
56  return this->size() && this->back() == c;
57  }
58 
59 
60  std::vector<bc::string> split(char delim) const {
61  std::vector<bc::string> splits;
62 
63  auto curr = this->begin();
64  auto end = this->end();
65 
66  while (curr < end) {
67  auto next = std::find(curr, end, delim);
68 
69  if (curr < end)
70  splits.push_back(bc::string(curr, next));
71 
72  curr = next + 1;
73  }
74 
75  return splits;
76  }
77 };
78 
79 
80 }
81 
82 
83 
84 #endif /* STRING_EXTENSIONS_H_ */
int count(char value) const
Definition: string.h:34
bool endswith(const bc::string &str) const
Definition: string.h:43
string(std::string s)
Definition: string.h:31
bool startswith(char c) const
Definition: string.h:51
std::vector< bc::string > split(char delim) const
Definition: string.h:60
class::::::Args static auto find(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:124
class::::::Args static auto count(bc::streams::Stream< bc::host_tag > stream, Begin begin, End end, Args... args)
Definition: algorithms.h:122
string()=default
Inherits from std::string.
Definition: string.h:21
bool endswith(char c) const
Definition: string.h:55
Definition: common.h:25
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
string & operator=(const string &)=default
bool startswith(const std::string &str) const
Definition: string.h:38