File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 14219
14219
bool operator==(const directory_entry& rhs) const noexcept;
14220
14220
strong_ordering operator<=>(const directory_entry& rhs) const noexcept;
14221
14221
14222
+ // \ref {fs.dir.entry.io }, inserter
14223
+ template<class charT, class traits>
14224
+ friend basic_ostream<charT, traits>&
14225
+ operator<<(basic_ostream<charT, traits>& os, const directory_entry& d);
14226
+
14222
14227
private:
14223
14228
filesystem::path pathobject; // \expos
14224
14229
friend class directory_iterator; // \expos
14637
14642
\tcode {pathobject <=> rhs.pathobject}.
14638
14643
\end {itemdescr }
14639
14644
14645
+ \rSec 3[fs.dir.entry.io]{Inserter}
14646
+
14647
+ \indexlibrarymember {operator<<}{directory_entry}%
14648
+ \begin {itemdecl }
14649
+ template<class charT, class traits>
14650
+ friend basic_ostream<charT, traits>&
14651
+ operator<<(basic_ostream<charT, traits>& os, const directory_entry& d);
14652
+ \end {itemdecl }
14653
+
14654
+ \begin {itemdescr }
14655
+ \pnum
14656
+ \effects
14657
+ Equivalent to: \tcode {return os << d.path();}
14658
+ \end {itemdescr }
14659
+
14640
14660
\rSec 2[fs.class.directory.iterator]{Class \tcode {directory_iterator}}
14641
14661
14642
14662
\rSec 3[fs.class.directory.iterator.general]{General}
You can’t perform that action at this time.
0 commit comments