Ignore:
Timestamp:
Apr 11, 2025, 8:52:08 AM (9 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
c4f8c4bf
Parents:
d03a386
Message:

small cleanups

File:
1 edited

Legend:

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

    rd03a386 rdab6e39  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Wed Apr  9 22:27:41 2025
    13 // Update Count     : 259
     12// Last Modified On : Fri Apr 11 08:28:27 2025
     13// Update Count     : 260
    1414//
    1515
     
    100100        _Ostream_Manip(string) & nobase( _Ostream_Manip(string) & fmt ) { fmt.flags.nobsdp = true; return fmt; }
    101101} // distribution
     102
    102103forall( ostype & | basic_ostream( ostype ) ) {
    103104        ostype & ?|?( ostype & os, _Ostream_Manip(string) f );
     
    150151        _Istream_Sstr & ignore( _Istream_Sstr & f ) { f.flags.ignore = true; return (_Istream_Sstr &)f; }
    151152} // distribution
     153
    152154forall( istype & | basic_istream( istype ) ) {
    153155        istype & ?|?( istype & is, _Istream_Squoted f );
     
    238240size_t find( const string & s, size_t start, const char * key );
    239241size_t find( const string & s, size_t start, const char * key, size_t keysize );
    240 static inline ?^?( const string & key, const string & s ) { return find( s, key ); }
    241 static inline ?^?( const char * key, const string & s ) { return find( s, key ); }
    242242
    243243bool includes( const string & s, const string & mask );
Note: See TracChangeset for help on using the changeset viewer.