- File:
-
- 1 edited
-
libcfa/src/collections/string_res.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string_res.hfa
rf2898df re8b3717 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 );102 96 103 97 string_res & assign(string_res & s, const string_res & src, size_t maxlen); // copy specific length from other string … … 109 103 string_res & ?=?(string_res & s, string_res & c); 110 104 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 );118 105 119 106 void ^?{}(string_res & s);
Note:
See TracChangeset
for help on using the changeset viewer.