Changeset 71b5aad5 for libcfa/src/collections/string_res.hfa
- Timestamp:
- Jan 24, 2024, 6:05:54 AM (2 years ago)
- Branches:
- master
- Children:
- 16afb2a, 221c542e, 8a33777
- Parents:
- 544deb9 (diff), 61e362f (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/collections/string_res.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string_res.hfa
r544deb9 r71b5aad5 94 94 ?{}( s, src, mode, 0, (size(src) > maxlen)?maxlen:size(src) ); 95 95 } 96 void ?{}( string_res & s, ssize_t rhs ); 97 void ?{}( string_res & s, size_t rhs ); 98 void ?{}( string_res & s, double rhs ); 99 void ?{}( string_res & s, long double rhs ); 100 void ?{}( string_res & s, double _Complex rhs ); 101 void ?{}( string_res & s, long double _Complex rhs ); 96 102 97 103 string_res & assign(string_res & s, const string_res & src, size_t maxlen); // copy specific length from other string … … 103 109 string_res & ?=?(string_res & s, string_res & c); 104 110 string_res & ?=?(string_res & s, char c); 111 112 string_res & ?=?( string_res & s, ssize_t rhs ); 113 string_res & ?=?( string_res & s, size_t rhs ); 114 string_res & ?=?( string_res & s, double rhs ); 115 string_res & ?=?( string_res & s, long double rhs ); 116 string_res & ?=?( string_res & s, double _Complex rhs ); 117 string_res & ?=?( string_res & s, long double _Complex rhs ); 105 118 106 119 void ^?{}(string_res & s);
Note:
See TracChangeset
for help on using the changeset viewer.