Changeset 92538ab for libcfa/src/containers/string.hfa
- Timestamp:
- Apr 10, 2022, 2:53:18 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- d8e2a09
- Parents:
- 4559b34 (diff), 6256891 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/containers/string.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/string.hfa
r4559b34 r92538ab 41 41 void ?=?(string &s, const string &other); 42 42 void ?=?(string &s, char other); 43 string ?=?(string &s, string other); // string tolerates memcpys; still saw calls to autogen44 43 string & ?=?(string &s, string &other); // surprising ret seems to help avoid calls to autogen 44 //string ?=?( string &, string ) = void; 45 45 void ^?{}(string &s); 46 46 … … 93 93 int find(const string &s, const char* search, size_t searchsize); 94 94 95 int findFrom(const string &s, size_t fromPos, char search); 96 int findFrom(const string &s, size_t fromPos, const string &search); 97 int findFrom(const string &s, size_t fromPos, const char* search); 98 int findFrom(const string &s, size_t fromPos, const char* search, size_t searchsize); 99 95 100 bool includes(const string &s, const string &search); 96 101 bool includes(const string &s, const char* search);
Note:
See TracChangeset
for help on using the changeset viewer.