Changeset d8d512e for libcfa/src/containers/string_res.hfa
- Timestamp:
- Sep 8, 2021, 4:40:08 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 5a40e4e
- Parents:
- f26923e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/containers/string_res.hfa
rf26923e rd8d512e 82 82 } 83 83 84 void ?=?(string_res &s, const char* other); // copy assignment from literal 84 void assign(string_res &s, const char* buffer, size_t bsize); // copy specific length from buffer 85 void ?=?(string_res &s, const char* other); // copy from string literal (NULL-terminated) 85 86 void ?=?(string_res &s, const string_res &other); 86 87 void ?=?(string_res &s, string_res &other); 87 void ?=?(string_res &s, char other); // Str tolerates memcpys; still saw calls to autogen88 void ?=?(string_res &s, char other); 88 89 89 90 void ^?{}(string_res &s); … … 96 97 void ?+=?(string_res &s, char other); // append a character 97 98 void ?+=?(string_res &s, const string_res &s2); // append-concatenate to first string 98 void ?+=?(string_res &s, const char* other); // append-concatenate to first string 99 void ?+=?(string_res &s, const char* other); 100 void append(string_res &s, const char* buffer, size_t bsize); 99 101 100 102 // Character access
Note: See TracChangeset
for help on using the changeset viewer.