Changeset a4da45e for libcfa/src/collections/string.cfa
- Timestamp:
- Feb 26, 2024, 3:53:42 AM (22 months ago)
- Branches:
- master
- Children:
- 3f9a8d0
- Parents:
- 0522ebe (diff), 022bce0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/collections/string.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/collections/string.cfa
r0522ebe ra4da45e 10 10 // Created On : Fri Sep 03 11:00:00 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Jan 14 12:03:47202413 // Update Count : 2 4012 // Last Modified On : Wed Feb 7 21:17:06 2024 13 // Update Count : 259 14 14 // 15 15 … … 210 210 } 211 211 212 void ?|?( ifstream & in, string & s ) { 213 in | (*s.inner); 214 } 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 } // ?|? 215 216 216 217 ifstream & ?|?( ifstream & is, _Istream_Sstr f ) { 218 // _Istream_Rstr f2 = {f.sstr.s.inner, (_Istream_str_base)f.sstr}; 217 219 _Istream_Rstr f2 = {f.s.inner, (_Istream_str_base)f}; 218 220 return is | f2; 219 221 } // ?|? 220 221 void ?|?( ifstream & in, _Istream_Sstr f ) {222 (ifstream &)(in | f);223 }224 222 225 223 ////////////////////////////////////////////////////////
Note:
See TracChangeset
for help on using the changeset viewer.