Ignore:
File:
1 edited

Legend:

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

    r08ed947 rf450f2f  
    4141void ?=?(string &s, const string &other);
    4242void ?=?(string &s, char other);
    43 string & ?=?(string &s, string &other);  // surprising ret seems to help avoid calls to autogen
    44 //string ?=?( string &, string ) = void;
     43string ?=?(string &s, string other);  // string tolerates memcpys; still saw calls to autogen
     44
    4545void ^?{}(string &s);
    4646
     
    9393int find(const string &s, const char* search, size_t searchsize);
    9494
    95 int findFrom(const string &s, size_t fromPos, char search);
    96 int findFrom(const string &s, size_t fromPos, const string &search);
    97 int findFrom(const string &s, size_t fromPos, const char* search);
    98 int findFrom(const string &s, size_t fromPos, const char* search, size_t searchsize);
    99 
    10095bool includes(const string &s, const string &search);
    10196bool includes(const string &s, const char* search);
Note: See TracChangeset for help on using the changeset viewer.