Ignore:
File:
1 edited

Legend:

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

    rd32679d5 rbc9f84a  
    1010// Created On       : Fri Sep 03 11:00:00 2021
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Sat Aug 12 15:24:18 2023
    13 // Update Count     : 6
     12// Last Modified On : Mon Aug  7 10:07:26 2023
     13// Update Count     : 2
    1414//
    1515
     
    100100
    101101////////////////////////////////////////////////////////
    102 // Input-Output
    103 
    104 ofstream & ?|?( ofstream & out, const string & this ) {
    105     return out | (*this.inner); // print internal string_res
    106 }
    107 
    108 void ?|?( ofstream & out, const string & this ) {
    109     (ofstream &)(out | (*this.inner)); ends( out );
    110 }
    111 
    112 ifstream & ?|?(ifstream &in, string &this) {
    113     return in | (*this.inner); // read to internal string_res
    114 }
    115 
     102// Output
     103
     104ofstream & ?|?( ofstream & fs, const string & this ) {
     105    return fs | (*this.inner);
     106}
     107
     108void ?|?( ofstream & fs, const string & this ) {
     109    fs | (*this.inner);
     110}
    116111
    117112////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.