Template:cpp/io/ios base/dsc openmode
From cppreference.com
|- class="t-dsc"
|| stream open mode type
The following constants are also defined:
Constant | Explanation |
app | seek to the end of stream before each write |
binary | open in binary mode |
in | open for reading |
out | open for writing |
trunc | discard the contents of the stream when opening |
ate | seek to the end of stream immediately after open |
noreplace (C++23) | open in exclusive mode |
(typedef)
|-