Ignore:
File:
1 edited

Legend:

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

    rf2898df re8b3717  
    9494    ?{}( s, src, mode, 0, (size(src) > maxlen)?maxlen:size(src) );
    9595}
    96 void ?{}( string_res & s, ssize_t rhs );
    97 void ?{}( string_res & s, size_t rhs );
    98 void ?{}( string_res & s, double rhs );
    99 void ?{}( string_res & s, long double rhs );
    100 void ?{}( string_res & s, double _Complex rhs );
    101 void ?{}( string_res & s, long double _Complex rhs );
    10296
    10397string_res & assign(string_res & s, const string_res & src, size_t maxlen); // copy specific length from other string
     
    109103string_res & ?=?(string_res & s, string_res & c);
    110104string_res & ?=?(string_res & s, char c);
    111 
    112 string_res & ?=?( string_res & s, ssize_t rhs );
    113 string_res & ?=?( string_res & s, size_t rhs );
    114 string_res & ?=?( string_res & s, double rhs );
    115 string_res & ?=?( string_res & s, long double rhs );
    116 string_res & ?=?( string_res & s, double _Complex rhs );
    117 string_res & ?=?( string_res & s, long double _Complex rhs );
    118105
    119106void ^?{}(string_res & s);
Note: See TracChangeset for help on using the changeset viewer.