- File:
-
- 1 edited
-
libcfa/src/collections/string.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
r211def2 rf2898df 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Feb 7 21:17:06202413 // Update Count : 2 5912 // Last Modified On : Sun Jan 14 12:03:47 2024 13 // Update Count : 240 14 14 // 15 15 … … 210 210 } 211 211 212 ifstream & ?|?( ifstream & is, _Istream_Squoted f ) { 213 _Istream_Rquoted f2 = { { f.sstr.s.inner, (_Istream_str_base)f.sstr } }; 214 return is | f2; 215 } // ?|? 212 void ?|?( ifstream & in, string & s ) { 213 in | (*s.inner); 214 } 216 215 217 216 ifstream & ?|?( ifstream & is, _Istream_Sstr f ) { 218 // _Istream_Rstr f2 = {f.sstr.s.inner, (_Istream_str_base)f.sstr};219 217 _Istream_Rstr f2 = {f.s.inner, (_Istream_str_base)f}; 220 218 return is | f2; 221 219 } // ?|? 220 221 void ?|?( ifstream & in, _Istream_Sstr f ) { 222 (ifstream &)(in | f); 223 } 222 224 223 225 ////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.