Ignore:
File:
1 edited

Legend:

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

    r9018dcf red5023d1  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr  9 15:16:29 2025
    13 // Update Count     : 76
     12// Last Modified On : Sun Apr  6 07:35:44 2025
     13// Update Count     : 70
    1414//
    1515
     
    7070
    7171// Getters
    72 static inline size_t len( const string_res & s ) { return s.Handle.lnth; }
     72size_t len( const string_res & s);
    7373
    7474// Constructors, Assignment Operators, Destructor
     
    220220bool contains( const string_res & s, char ch); // single character
    221221
    222 int find$( const string_res & s, ssize_t start, ssize_t len, const string_res & key, ssize_t kstart, ssize_t klen );
    223 
    224222int find( const string_res & s, char search);
    225223int find( const string_res & s, const string_res & search);
     
    247245int exclude( const string_res & s, const charclass_res & mask);
    248246
     247// Modifiers
     248void padStart(string_res & s, size_t n);
     249void padStart(string_res & s, size_t n, char padding);
     250void padEnd(string_res & s, size_t n);
     251void padEnd(string_res &s, size_t n, char padding);
     252
Note: See TracChangeset for help on using the changeset viewer.