FreeBSD Manual Pages
std::ends(3) C++ Standard Libary std::ends(3) NAME std::ends - std::ends Synopsis Defined in header <ostream> template< class CharT, class Traits > std::basic_ostream<CharT, Traits>& ends( std::basic_ostream<CharT, Traits>& os ); Inserts a null character into the output sequence os as if by call- ing os.put(CharT()). This is an output-only I/O manipulator, it may be called with an ex- pression such as out << std::ends for any out of type std::basic_ostream. Notes This manipulator is typically used with std::ostrstream, when the associated output buffer needs to be null-terminated to be processed as a C string. Unlike std::endl, this manipulator does not flush the stream. Parameters os - reference to output stream Return value os (reference to the stream after insertion of the null character) Example // Run this code #include <cstdio> #include <strstream> int main() { std::ostrstream oss; oss << "Sample text: " << 42 << std::ends; std::printf("%s\n", oss.str()); oss.freeze(false); // enable memory deallocation } Output: Sample text: 42 See also ostrstream implements character array output operations (deprecated in C++98) (class) http://cppreference.com 2022.07.31 std::ends(3)
NAME | Synopsis | Notes | Parameters | Return value | Example | Output: | See also
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::ends&sektion=3&manpath=FreeBSD+Ports+15.0>
