Ignore:
Timestamp:
Apr 10, 2025, 5:27:36 PM (9 months ago)
Author:
Michael Brooks <mlbrooks@…>
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.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/collections/string_res.hfa

    r6174ecc rb1b513d  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sun Apr  6 07:35:44 2025
    13 // Update Count     : 70
     12// Last Modified On : Wed Apr  9 15:16:29 2025
     13// Update Count     : 76
    1414//
    1515
     
    7070
    7171// Getters
    72 size_t len( const string_res & s);
     72static inline size_t len( const string_res & s ) { return s.Handle.lnth; }
    7373
    7474// Constructors, Assignment Operators, Destructor
     
    220220bool contains( const string_res & s, char ch); // single character
    221221
     222int find$( const string_res & s, ssize_t start, ssize_t len, const string_res & key, ssize_t kstart, ssize_t klen );
     223
    222224int find( const string_res & s, char search);
    223225int find( const string_res & s, const string_res & search);
     
    245247int exclude( const string_res & s, const charclass_res & mask);
    246248
    247 // Modifiers
    248 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.