Changeset b1b513d for libcfa/src/collections/string_res.hfa
- Timestamp:
- Apr 10, 2025, 5:27:36 PM (9 months ago)
- Branches:
- master
- Children:
- 234c432
- Parents:
- 6174ecc (diff), bb506e0 (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) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string_res.hfa
r6174ecc rb1b513d 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Apr 6 07:35:44202513 // Update Count : 7 012 // Last Modified On : Wed Apr 9 15:16:29 2025 13 // Update Count : 76 14 14 // 15 15 … … 70 70 71 71 // Getters 72 s ize_t len( const string_res & s);72 static inline size_t len( const string_res & s ) { return s.Handle.lnth; } 73 73 74 74 // Constructors, Assignment Operators, Destructor … … 220 220 bool contains( const string_res & s, char ch); // single character 221 221 222 int find$( const string_res & s, ssize_t start, ssize_t len, const string_res & key, ssize_t kstart, ssize_t klen ); 223 222 224 int find( const string_res & s, char search); 223 225 int find( const string_res & s, const string_res & search); … … 245 247 int exclude( const string_res & s, const charclass_res & mask); 246 248 247 // Modifiers248 void padStart(string_res & s, size_t n);249 void padStart(string_res & s, size_t n, char padding);250 void padEnd(string_res & s, size_t n);251 void padEnd(string_res &s, size_t n, char padding);252
Note:
See TracChangeset
for help on using the changeset viewer.