Changeset d672350 for libcfa/src/containers/string.hfa
- Timestamp:
- Mar 21, 2022, 1:44:06 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- a76202d
- Parents:
- ef3c383 (diff), dbe2533 (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
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/string.hfa
ref3c383 rd672350 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.